Changeset 28449
- Timestamp:
- 01/02/08 20:19:25 (1 year ago)
- Files:
-
- org.nuxeo.ecm.core/trunk/nuxeo-core-query/src/test/java/org/nuxeo/ecm/core/query/sql/TestQueryParser2.java (modified) (1 diff)
- org.nuxeo.ecm.platform/trunk/nuxeo-platform-search-compass-plugin/src/main/java/org/nuxeo/ecm/core/search/backend/compass/QueryConverter.java (modified) (3 diffs)
- org.nuxeo.ecm.platform/trunk/nuxeo-platform-webapp/src/main/resources/nuxeo.war/WEB-INF/classes/messages.properties (modified) (1 diff)
- org.nuxeo.ecm.platform/trunk/nuxeo-platform-webapp/src/main/resources/nuxeo.war/WEB-INF/classes/messages_en.properties (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
org.nuxeo.ecm.core/trunk/nuxeo-core-query/src/test/java/org/nuxeo/ecm/core/query/sql/TestQueryParser2.java
r24982 r28449 151 151 "SELECT * FROM document WHERE ecm:id = relation.subject " + 152 152 " AND dc:title='foo'", 153 154 // Reported bogus 155 "SELECT * FROM Document WHERE NOT ecm:path STARTSWITH '/some/path'", 153 156 }; 154 157 org.nuxeo.ecm.platform/trunk/nuxeo-platform-search-compass-plugin/src/main/java/org/nuxeo/ecm/core/search/backend/compass/QueryConverter.java
r24434 r28449 101 101 } 102 102 103 ArrayList<CompassQuery> subQueries = new ArrayList<CompassQuery>();103 List<CompassQuery> subQueries = new ArrayList<CompassQuery>(); 104 104 addIfNotNull(subQueries, fromClause(query.getFromClause())); 105 105 addIfNotNull(subQueries, whereClause(query.getWhereClause())); … … 200 200 201 201 /** 202 * Make a security query for the given principal, on the default security202 * Makes a security query for the given principal, on the default security 203 203 * indexing field with the default list of relevant permissions. 204 204 * … … 213 213 214 214 /** 215 * Build a query for given principal, to check the given list of perms in215 * Builds a query for given principal, to check the given list of perms in 216 216 * given indexing field. 217 * 217 * <p> 218 218 * This is translated in a {@Link MatchBeforeQuery} to require a positive 219 219 * occurence of one of the principal's security tokens (name or group), 220 220 * paired with one of the relevant permissions before any negative one. 221 * 221 * <p> 222 222 * Of course the field has to have been constructed accordingly. 223 223 * org.nuxeo.ecm.platform/trunk/nuxeo-platform-webapp/src/main/resources/nuxeo.war/WEB-INF/classes/messages.properties
r27902 r28449 64 64 command.manageThemes=Themes management 65 65 66 command.document.unpublish=Un Publish66 command.document.unpublish=Unpublish 67 67 68 68 #User form org.nuxeo.ecm.platform/trunk/nuxeo-platform-webapp/src/main/resources/nuxeo.war/WEB-INF/classes/messages_en.properties
r28351 r28449 221 221 label.content.header.modified=Last modification date 222 222 label.content.header.author=Author 223 label.content.header.currentLifecycleState= Life cycle223 label.content.header.currentLifecycleState=State 224 224 label.content.header.location=Location 225 225 label.content.header.size=Size … … 884 884 label.username=Username 885 885 label.version=Version 886 label.lifecycle= Life cycle886 label.lifecycle=State 887 887 888 888 lifecycle_transition_event=Document life cycle update
