- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 134 for images (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
&& checkFileType(uploadedFileName, fessConfig.getSupportedUploadedMediaExtentionsAsArray())) { uploadFile = new File(getServletContext().getRealPath("/images/" + fileName)); } else if (checkFileType(fileName, fessConfig.getSupportedUploadedCssExtentionsAsArray()) && checkFileType(uploadedFileName, fessConfig.getSupportedUploadedCssExtentionsAsArray())) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
Files.createDirectories(path.getParent()); Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING); } else if ("images".equals(names[0])) { names[0] = themeName; final Path path = ResourceUtil.getImagePath(names); Files.createDirectories(path.getParent());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
public class SitemapVideo implements Serializable { private static final long serialVersionUID = 1L; /** * A URL pointing to the video thumbnail image file. * Images must be at least 160x90 pixels and at most 1920x1080 pixels. */ private String thumbnailLoc; /** * The title of the video. * Maximum 100 characters. */ private String title; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
README.md
### Docker We provide Docker images on [ghcr.io](https://github.com/orgs/codelibs/packages). We also provide a Docker Compose (YAML) file in [this repository](https://github.com/codelibs/docker-fess/tree/master/compose). ### Browser UI - Search UI: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/resources/fess_config.properties
searchlog.process.batch_size=100 # Minimum width for HTML images in thumbnails. thumbnail.html.image.min.width=100 # Minimum height for HTML images in thumbnails. thumbnail.html.image.min.height=100 # Maximum aspect ratio for HTML images in thumbnails. thumbnail.html.image.max.aspect.ratio=3.0 # Width of generated thumbnail images. thumbnail.html.image.thumbnail.width=100 # Height of generated thumbnail images.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
docs/fr/README.md
### Docker Nous fournissons des images Docker sur [ghcr.io](https://github.com/orgs/codelibs/packages). Nous fournissons également un fichier Docker Compose (YAML) dans [ce dépôt](https://github.com/codelibs/docker-fess/tree/master/compose). ### Interface Web - Interface de recherche : http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.9K bytes - Viewed (0) -
CLAUDE.md
- **SMB/CIFS**: Windows shares (SMB1/SMB2+) - **Storage**: MinIO/S3-compatible ### Content Formats Office (Word, Excel, PowerPoint), PDF, Archives (ZIP, TAR, GZ), HTML, XML, JSON, Media (audio/video metadata), Images (EXIF/IPTC/XMP) --- ## Architecture ### Module Structure ``` fess-crawler-parent/ ├── fess-crawler/ # Core framework ├── fess-crawler-lasta/ # LastaFlute DI integration
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
} return switch (mimeType) { case "image/gif" -> ".gif"; case "image/tiff" -> ".tiff"; case "image/svg+xml" -> ".svg"; case "image/jpeg" -> ".jpg"; case "image/png" -> ".png"; case "image/bmp", "image/x-windows-bmp", "image/x-ms-bmp" -> ".bmp"; case "image/vnd.adobe.photoshop", "image/photoshop", "application/x-photoshop", "application/photoshop" -> ".psd";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 04 08:02:36 UTC 2025 - 16K bytes - Viewed (0) -
docs/de/README.md
### Docker Wir bieten Docker-Images auf [ghcr.io](https://github.com/orgs/codelibs/packages) an. Wir stellen auch eine Docker Compose (YAML)-Datei in [diesem Repository](https://github.com/codelibs/docker-fess/tree/master/compose) bereit. ### Browser-Benutzeroberfläche - Suchoberfläche: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
// But exclude images and admin section urlFilter.addExclude(".*\\.(jpg|png|gif)$"); urlFilter.addExclude(".*/admin/.*"); assertTrue(urlFilter.match("https://example.com/page.html")); assertTrue(urlFilter.match("https://example.com/document.pdf")); assertFalse(urlFilter.match("https://example.com/image.jpg"));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0)