Skip to content

Commit

Permalink
Merge branch 'develop' into 9748-fix-ExternalToolsIT
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmiller committed Jan 30, 2024
2 parents 91287b3 + f16c4a1 commit c539bfd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/sphinx-guides/source/api/search.rst
Expand Up @@ -25,7 +25,7 @@ Parameters
Name Type Description
=============== ======= ===========
q string The search term or terms. Using "title:data" will search only the "title" field. "*" can be used as a wildcard either alone or adjacent to a term (i.e. "bird*"). For example, https://demo.dataverse.org/api/search?q=title:data . For a list of fields to search, please see https://github.com/IQSS/dataverse/issues/2558 (for now).
type string Can be either "Dataverse", "dataset", or "file". Multiple "type" parameters can be used to include multiple types (i.e. ``type=dataset&type=file``). If omitted, all types will be returned. For example, https://demo.dataverse.org/api/search?q=*&type=dataset
type string Can be either "dataverse", "dataset", or "file". Multiple "type" parameters can be used to include multiple types (i.e. ``type=dataset&type=file``). If omitted, all types will be returned. For example, https://demo.dataverse.org/api/search?q=*&type=dataset
subtree string The identifier of the Dataverse collection to which the search should be narrowed. The subtree of this Dataverse collection and all its children will be searched. Multiple "subtree" parameters can be used to include multiple Dataverse collections. For example, https://demo.dataverse.org/api/search?q=data&subtree=birds&subtree=cats .
sort string The sort field. Supported values include "name" and "date". See example under "order".
order string The order in which to sort. Can either be "asc" or "desc". For example, https://demo.dataverse.org/api/search?q=data&sort=name&order=asc
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -466,7 +466,7 @@
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>common</artifactId>
<version>7.1.1</version>
<version>8.0.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand All @@ -481,7 +481,7 @@
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>storeclient</artifactId>
<version>7.1.1</version>
<version>8.0.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -650,7 +650,7 @@
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>3.2.0</version>
<version>3.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Expand Up @@ -68,7 +68,8 @@
@NamedQuery( name="AuthenticatedUser.filter",
query="select au from AuthenticatedUser au WHERE ("
+ "LOWER(au.userIdentifier) like LOWER(:query) OR "
+ "lower(concat(au.firstName,' ',au.lastName)) like lower(:query))"),
+ "lower(concat(au.firstName,' ',au.lastName)) like lower(:query) or "
+ "lower(au.email) like lower(:query))"),
@NamedQuery( name="AuthenticatedUser.findAdminUser",
query="select au from AuthenticatedUser au WHERE "
+ "au.superuser = true "
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/roles-assign.xhtml
Expand Up @@ -31,7 +31,7 @@
styleClass="DropdownPopup" panelStyleClass="DropdownPopupPanel"
var="roleAssignee" itemLabel="#{roleAssignee.displayInfo.title}" itemValue="#{roleAssignee}" converter="roleAssigneeConverter">
<p:column>
<h:outputText value="#{roleAssignee.displayInfo.title}"/>
<h:outputText value="#{roleAssignee.displayInfo.title}"/>
<h:outputText value=" (#{roleAssignee.displayInfo.affiliation})" rendered="#{!empty roleAssignee.displayInfo.affiliation}"/>
</p:column>
<p:column>
Expand Down

0 comments on commit c539bfd

Please sign in to comment.