Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCssPath (0.04 sec)

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

                        } else if ("css".equals(names[0])) {
                            names[0] = themeName;
                            final Path path = ResourceUtil.getCssPath(names);
                            Files.createDirectories(path.getParent());
                            Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING);
                        } else if ("js".equals(names[0])) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         * Gets the path to CSS files directory.
         *
         * @param names the path components to append to the CSS directory
         * @return the Path object pointing to the CSS directory
         */
        public static Path getCssPath(final String... names) {
            return getPath(StringUtil.EMPTY, "css", names);
        }
    
        /**
         * Gets the path to JavaScript files directory.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top