Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

<plugin>
<class>org.jivesoftware.openfire.plugin.SearchPlugin</class>
<name>Search</name>
<description>Provides support for Jabber Search (XEP-0055)</description>
<author>Ryan Graham</author>
<name>${project.name}</name>
<description>${project.description}</description>
<author>${project.developers[0].name}</author>
<licenseType>apache</licenseType>
Comment thread
guusdk marked this conversation as resolved.
<version>${project.version}</version>
<date>2025-06-25</date>
<minServerVersion>4.4.0</minServerVersion>
Expand Down
27 changes: 26 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@
<artifactId>search</artifactId>
<version>1.7.6-SNAPSHOT</version>
<name>Search</name>
<description>Provides support for Jabber Search (XEP-0055)</description>
<issueManagement>
<system>github</system>
<url>https://github.com/igniterealtime/openfire-search-plugin/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/igniterealtime/openfire-search-plugin.git</connection>
<developerConnection>scm:git:git@github.com:igniterealtime/openfire-search-plugin.git</developerConnection>
<url>https://github.com/igniterealtime/openfire-search-plugin</url>
</scm>
<developers>
<developer>
<name>Ryan Graham</name>
</developer>
</developers>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<repositories>
<!-- Where we obtain dependencies. -->
Expand All @@ -22,7 +43,11 @@
</snapshots>
</repository>
</repositories>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Use static build timestamp for reproducible builds -->
<project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
</properties>
<build>
<sourceDirectory>src/java</sourceDirectory>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions src/web/advance-user-search.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
<th nowrap><fmt:message key="advance.user.search.name"/></th>
<th nowrap><fmt:message key="advance.user.search.created"/></th>
<th nowrap><fmt:message key="advance.user.search.last-logout"/></th>
<!-- Don't allow editing or deleting if users are read-only. -->
<%-- Don't allow editing or deleting if users are read-only. --%>
<c:if test="${not readOnly}">
<th nowrap><fmt:message key="advance.user.search.edit"/></th>
<th nowrap><fmt:message key="advance.user.search.delete"/></th>
Expand Down Expand Up @@ -241,7 +241,7 @@
<%-- </c:otherwise>--%>
<%-- </c:choose>--%>
<%-- </td>--%>
<!-- Don't allow editing or deleting if users are read-only. -->
<%-- Don't allow editing or deleting if users are read-only. --%>
<c:if test="${not readOnly}">
<td width="1%" align="center">
<a href="../../user-edit-form.jsp?username=${admin:urlEncode(user.username)}" title="<fmt:message key="global.click_edit" />"><img src="images/edit-16x16.gif" width="17" height="17" border="0"></a>
Expand Down