Changeset 2967
- Timestamp:
- Nov 28, 2006, 12:40:02 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/set_classpath.bat
r2966 r2967 46 46 SET CP=%CP%;%WEBINF%/lib/commons-logging-1.0.4.jar 47 47 SET CP=%CP%;%WEBINF%/lib/dom4j-1.6.1.jar 48 SET CP=%CP%;%WEBINF%/lib/ehcache-1.2. jar48 SET CP=%CP%;%WEBINF%/lib/ehcache-1.2.3.jar 49 49 SET CP=%CP%;%WEBINF%/lib/jta.jar 50 50 SET CP=%CP%;%WEBINF%/lib/antlr-2.7.6.jar -
trunk/bin/set_classpath.sh
r2966 r2967 45 45 CP=$CP:$WEBINF/lib/commons-logging-1.0.4.jar 46 46 CP=$CP:$WEBINF/lib/dom4j-1.6.1.jar 47 CP=$CP:$WEBINF/lib/ehcache-1.2. jar47 CP=$CP:$WEBINF/lib/ehcache-1.2.3.jar 48 48 CP=$CP:$WEBINF/lib/jta.jar 49 49 CP=$CP:$WEBINF/lib/antlr-2.7.6.jar -
trunk/doc/3rd-party-components.txt
r2966 r2967 180 180 181 181 182 SvnAnt 183 ------ 184 An 'ant' task implementation for accessing subversion from the ant buildfile. 182 185 186 More info : http://subclipse.tigris.org/svnant.html 187 Version : 1.0.0 188 License : Apache Software License 1.1 (apache.license.txt) 189 Jar files : svnant.jar, javasvn.jar, svnClientAdapter.jar, svnjavahl.jar 190 ganymed.jar 183 191 184 185 -
trunk/src/core/net/sf/basedb/core/AbstractSqlQuery.java
r2669 r2967 267 267 if ((hasLimit || hasOffset) && supportsLimit) 268 268 { 269 sql = dialect.getLimitString(sql, hasOffset && supportsOffset);269 sql = dialect.getLimitString(sql, getFirstResult(), getMaxResults()); 270 270 int insertIndex = dialect.bindLimitParametersFirst() ? 0 : parameterOrder.size(); 271 271 parameterOrder.add(insertIndex, "_limit_"); -
trunk/src/core/net/sf/basedb/core/AnnotationSet.java
r2898 r2967 384 384 if (annotationType == null) throw new InvalidUseOfNullException("annotationType"); 385 385 DbControl dc = getDbControl(); 386 Annotation a = dc.getItem(Annotation.class, getData().getAnnotations().remove(annotationType.getData())); 387 if (a != null) 388 { 389 dc.deleteItem(a); 386 if (getData().getAnnotations().containsKey(annotationType.getData())) 387 { 388 AnnotationData ad = getData().getAnnotations().remove(annotationType.getData()); 389 if (ad != null) 390 { 391 Annotation a = dc.getItem(Annotation.class, ad); 392 dc.deleteItem(a); 393 } 390 394 } 391 395 } -
trunk/src/core/net/sf/basedb/core/ReporterList.java
r2785 r2967 208 208 checkPermission(Permission.WRITE); 209 209 if (reporter == null) throw new InvalidUseOfNullException("reporter"); 210 ReporterListScoreData rlScore = getData().getReporterListScores().remove(reporter.getId()); 211 if (rlScore != null) 210 if (getData().getReporterListScores().containsKey(reporter.getId())) 212 211 { 213 getDbControl().getHibernateSession().delete(rlScore); 212 ReporterListScoreData rlScore = getData().getReporterListScores().remove(reporter.getId()); 213 if (rlScore != null) 214 { 215 getDbControl().getHibernateSession().delete(rlScore); 216 } 214 217 } 215 218 } -
trunk/src/test/set_classpath.bat
r2966 r2967 44 44 SET CP=%CP%;../../lib/dist/commons-logging-1.0.4.jar 45 45 SET CP=%CP%;../../lib/dist/dom4j-1.6.1.jar 46 SET CP=%CP%;../../lib/dist/ehcache-1.2. jar46 SET CP=%CP%;../../lib/dist/ehcache-1.2.3.jar 47 47 SET CP=%CP%;../../lib/dist/jta.jar 48 48 SET CP=%CP%;../../lib/dist/antlr-2.7.6.jar -
trunk/src/test/set_classpath.sh
r2966 r2967 45 45 CP=$CP:$LIB/commons-logging-1.0.4.jar 46 46 CP=$CP:$LIB/dom4j-1.6.1.jar 47 CP=$CP:$LIB/ehcache-1.2. jar47 CP=$CP:$LIB/ehcache-1.2.3.jar 48 48 CP=$CP:$LIB/jta.jar 49 49 CP=$CP:$LIB/antlr-2.7.6.jar
Note: See TracChangeset
for help on using the changeset viewer.