Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPluginPath (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                        CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile());
                    }
                } catch (final Exception e) {
                    throw new PluginException("Failed to install the artifact " + artifact.getName(), e);
                }
            } else {
                try (final InputStream in = new FileInputStream(url)) {
                    CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            } catch (final IOException e) {
                logger.warn("Failed to delete {}", dir, e);
            }
        }
    
        protected Path getJarFile(final Artifact artifact) {
            final Path jarPath = ResourceUtil.getPluginPath(artifact.getFileName());
            if (!Files.exists(jarPath)) {
                throw new ThemeException(artifact.getFileName() + " does not exist.");
            }
            return jarPath;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "thumbnails", names);
        }
    
        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
        }
    
        public static Path getPluginPath(final String... names) {
            return getPath("WEB-INF/", "plugin", names);
        }
    
        public static Path getProjectPropertiesFile() {
            return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top