- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for webapp (0.03 seconds)
-
.gitignore
/target/ /work/ /bin/ /mydbflute/ /solr/data/ /src/main/webapp/WEB-INF/classes/ /src/main/webapp/WEB-INF/lib/ /src/main/webapp/WEB-INF/site/ /src/main/webapp/WEB-INF/plugin/* !/src/main/webapp/WEB-INF/plugin/.keep /src/main/webapp/WEB-INF/env/crawler/lib/ /src/main/webapp/WEB-INF/env/suggest/lib/ /src/main/webapp/WEB-INF/env/thumbnail/lib/ /src/main/webapp/WEB-INF/thumbnails/ /src/main/webapp/jar/ /dbflute_fess/extlib/* /dbflute_fess/log/*.log
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Aug 31 08:19:00 GMT 2025 - 1K bytes - Click Count (0) -
deps.xml
<property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" /> <property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" /> <property name="site.dir" value="${basedir}/src/main/webapp/WEB-INF/site" />
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 12 06:33:24 GMT 2026 - 2.7K bytes - Click Count (0) -
CLAUDE.md
├── fess_label_*.properties # UI labels (i18n) ├── fess_message_*.properties # Validation messages (i18n) └── fess_indices/ # OpenSearch index mappings src/main/webapp/WEB-INF/view/ # JSP templates src/test/java/.../it/ # Integration tests (*Tests.java) ``` ## Architecture Patterns ### Action (Controller)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/webapp/WebXmlTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.webapp; import java.io.InputStream; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 09:08:35 GMT 2026 - 3.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/FessBoot.java
final String varPath = System.getProperty(FESS_VAR_PATH); if (varPath != null) { tomcatBoot.atBaseDir(new File(varPath, "webapp").getAbsolutePath()); } else if (tempPath != null) { tomcatBoot.atBaseDir(new File(tempPath, "webapp").getAbsolutePath()); } final String tomcatConfigPath = getTomcatConfigPath(); if (tomcatConfigPath != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
webappDir = Files.createDirectories(tempDir.resolve("webapp")); confDir = Files.createDirectories(tempDir.resolve("conf")); } @Override protected void tearDown(TestInfo testInfo) throws Exception { System.clearProperty("fess.var.path"); System.clearProperty("fess.webapp.path"); System.clearProperty("fess.conf.path"); if (tempDir != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
Artifact scriptArtifact = new Artifact("fess-script-test", "1.0.0"); assertEquals(ArtifactType.SCRIPT, scriptArtifact.getType()); Artifact webappArtifact = new Artifact("fess-webapp-test", "1.0.0"); assertEquals(ArtifactType.WEBAPP, webappArtifact.getType()); Artifact thumbnailArtifact = new Artifact("fess-thumbnail-test", "1.0.0"); assertEquals(ArtifactType.THUMBNAIL, thumbnailArtifact.getType());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
@Override public String getRealPath(String path) { if (tempDir != null) { return new File(tempDir, path).getAbsolutePath(); } return new File("/test/webapp", path).getAbsolutePath(); } // Other methods return null or default values @Override public Object getAttribute(String name) { return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
@Override public String getOutput() { return output; } } private static class TestServletContext implements ServletContext { File parentFile = new File("/test/webapp"); @Override public String getRealPath(String path) { if (path != null && path.contains("WEB-INF")) { return new File(parentFile, "WEB-INF").getAbsolutePath();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.2K bytes - Click Count (0)