Changeset 746
- Timestamp:
- 07/11/06 14:59:09
- Files:
-
- trunk/calendar3/bldfiles/buildwar.xml (modified) (2 diffs)
- trunk/calendar3/bldfiles/defjars.properties (modified) (1 diff)
- trunk/calendar3/bldfiles/globalDefs.xml (modified) (1 diff)
- trunk/calendar3/calFacade/src/org/bedework/calfacade/BwDateTime.java (modified) (2 diffs)
- trunk/calendar3/caldavClientApi/src/org/bedework/caldav/client/api/CaldavReq.java (added)
- trunk/calendar3/caldavDomino (added)
- trunk/calendar3/caldavDomino/build.xml (added)
- trunk/calendar3/caldavDomino/src (added)
- trunk/calendar3/caldavDomino/src/edu (added)
- trunk/calendar3/caldavDomino/src/edu/rpi (added)
- trunk/calendar3/caldavDomino/src/edu/rpi/cct (added)
- trunk/calendar3/caldavDomino/src/edu/rpi/cct/bedework (added)
- trunk/calendar3/caldavDomino/src/edu/rpi/cct/bedework/caldav (added)
- trunk/calendar3/caldavDomino/src/edu/rpi/cct/bedework/caldav/DominoSysIntfImpl.java (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/bldfiles/buildwar.xml
r741 r746 271 271 <antcall target="jboss-stuff" inheritRefs="true" /> 272 272 <antcall target="google-stuff" inheritRefs="true" /> 273 <antcall target="domino-stuff" inheritRefs="true" /> 273 274 274 275 <!-- =============================================================== … … 374 375 </target> 375 376 377 <target name="domino-stuff" if="org.bedework.build.caldav.domino"> 378 <copy todir="${app.dest.lib}" file="${org.bedework.caldavdomino.jar}" /> 379 </target> 380 376 381 <!-- ================================================================= 377 382 If this is a struts app the following gets executed. trunk/calendar3/bldfiles/defjars.properties
r741 r746 157 157 org.bedework.caldavClientApi.jar=${org.bedework.temp.jars}/${org.bedework.caldavClientApi.jar.name} 158 158 159 org.bedework.caldavdomino.jar.name=bwcaldavdomino-${product.version}.jar 160 org.bedework.caldavdomino.jar=${org.bedework.temp.jars}/${org.bedework.caldavdomino.jar.name} 161 159 162 org.bedework.caldavgoogle.jar.name=bwcaldavgoogle-${product.version}.jar 160 163 org.bedework.caldavgoogle.jar=${org.bedework.temp.jars}/${org.bedework.caldavgoogle.jar.name} trunk/calendar3/bldfiles/globalDefs.xml
r724 r746 76 76 <property name="org.bedework.caldavgoogle.base" 77 77 location="${org.bedework.calendar.dir}/caldavGoogle" /> 78 <property name="org.bedework.caldavdomino.base" 79 location="${org.bedework.calendar.dir}/caldavDomino" /> 78 80 <property name="org.bedework.caldavClientApi.base" 79 81 location="${org.bedework.calendar.dir}/caldavClientApi" /> trunk/calendar3/calFacade/src/org/bedework/calfacade/BwDateTime.java
r678 r746 162 162 /** Set the date as a datetime value for comparisons. 163 163 * 164 * <p>This is a UTC datetime value to make searching easier. There are a number of 165 * complications to dates, the end date is specified as non-inclusive 166 * but there are a number of boundary problems to watch out for. 167 * 168 * <p>For date only values this field has a zero time appended so that simple 169 * string comparisons will work. 170 * 164 171 * @param val 165 172 */ … … 168 175 } 169 176 170 /** Return the date 177 /** This is a UTC datetime value to make searching easier. There are a number of 178 * complications to dates, the end date is specified as non-inclusive 179 * but there are a number of boundary problems to watch out for. 180 * 181 * <p>For date only values this field has a zero time appended so that simple 182 * string comparisons will work. 171 183 * 172 184 * @return String date
