- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for Install (0.1 sec)
-
plugin.xml
<property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> <target name="install.plugins"> <mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="plugin.groupId" value="org/codelibs/opensearch" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.5K bytes - Viewed (0) -
README.md
[discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) ## Getting Started There are 2 ways to try Fess. The first is to download and install yourself. The second is to use [Docker](https://www.docker.com/products/docker-engine). ### Download and Install/Run Fess 15.0 is now available and can be downloaded on the [Releases page](https://github.com/codelibs/fess/releases "download"). Downloads come in 3 flavors: deb, rpm, zip.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
module.xml
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
public ThemeHelper() { // Default constructor } /** * Installs a theme from the given artifact. * Extracts theme files from the JAR and deploys them to appropriate directories. * * @param artifact the theme artifact to install * @throws ThemeException if installation fails */ public void install(final Artifact artifact) { final Path jarPath = getJarFile(artifact);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
return redirect(getClass()); } /** * Installs a plugin from either an uploaded JAR file or from the available artifacts. * * @param form the install form containing plugin installation details * @return HTML response redirecting to the plugin list */ @Execute @Secured({ ROLE }) public HtmlResponse install(final InstallForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
maven-tests/mvnw
clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } trap clean HUP INT TERM EXIT else die "cannot create temp dir" fi mkdir -p -- "${MAVEN_HOME%/*}" # Download and Install Apache Maven verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." verbose "Downloading from: $distributionUrl" verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" # select .zip or .tar.gz
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
mockThemeHelper.install(artifact); // Some environments may handle invalid zip gracefully assertTrue(true); } catch (Exception e) { // Should throw ThemeException or ZipException assertTrue(e instanceof ThemeException || e.getMessage().contains("zip") || e.getMessage().contains("install") || e.getMessage().contains("format"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java
*/ public class InstallBody { /** Name of the plugin to install (required, max 100 characters) */ @Required @Size(max = 100) public String name; /** * Default constructor. */ public InstallBody() { // Default constructor } /** Version of the plugin to install (required, max 100 characters) */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Installs an artifact based on its type. * * @param artifact the artifact to install */ public void installArtifact(final Artifact artifact) { switch (artifact.getType()) { case THEME: install(artifact); ComponentUtil.getThemeHelper().install(artifact); break; default:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.plugin_type=Type labels.plugin_name=Name labels.plugin_version=Version labels.plugin_delete=Delete labels.plugin_install=Install labels.plugin_install_title=Install Plugin labels.plugin_jar_file=Jar File labels.plugin_local_install=Local labels.plugin_remote_install=Remote labels.crud_button_install=Install labels.storage_configuration=Storage labels.storage_name=Name labels.storage_size=Size
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)