- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 112 for design (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.design; import org.lastaflute.web.validation.Required; /** * Form class for file access operations in the admin design interface. * This form handles file name validation for accessing design files. */ public class FileAccessForm { /** The name of the file to access (required) */ @Required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java
public EditForm() { // Default constructor } /** * The name of the design file being edited. * This specifies which template or design file to modify. */ public String fileName; /** * The content of the design file. * This contains the actual template code, CSS, or other design content * that will be saved to the specified file. */ public String content;
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/app/web/admin/design/DesignForm.java
*/ package org.codelibs.fess.app.web.admin.design; import org.lastaflute.web.ruts.multipart.MultipartFormFile; /** * Form class for design file management in the admin interface. * Handles upload and management of design templates and CSS files. */ public class DesignForm { /** * Creates a new instance of DesignForm. * This constructor initializes the form for design file management
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java
*/ package org.codelibs.fess.app.web.admin.design; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Pattern; /** * Form for uploading design files to customize the appearance of the Fess search interface. * This form is used in the admin interface to upload CSS, JSP, and other design-related files
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.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.app.web.admin.design; import java.io.File; import java.io.FileInputStream; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.util.ArrayList; import java.util.List; import java.util.Locale;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Adds a design JSP file name to the map. * * @param key The key for the JSP file. * @param value The file name. */ public void addDesignJspFileName(final String key, final String value) { designJspFileNameMap.put(key, value); } /** * Gets the design JSP file name for a given key. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.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.app.web.admin.design; import org.codelibs.fess.unit.UnitFessTestCase; public class AdminDesignActionTest extends UnitFessTestCase { public void test_decodeJsp() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.1K bytes - Viewed (0) -
samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt
} } @Suppress("UNUSED_PARAMETER") private fun expectedFailure( className: String, cause: Throwable, ): Boolean = when (className) { "okhttp3.recipes.CheckHandshake" -> true // by design "okhttp3.recipes.RequestBodyCompression" -> true // expired token else -> false }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/design/admin_design.jsp */ HtmlNext path_AdminDesign_AdminDesignJsp = new HtmlNext("/admin/design/admin_design.jsp"); /** The path of the HTML: /admin/design/admin_design_edit.jsp */ HtmlNext path_AdminDesign_AdminDesignEditJsp = new HtmlNext("/admin/design/admin_design_edit.jsp"); /** The path of the HTML: /admin/dict/admin_dict.jsp */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
README.md
} catch (ClassNotFoundRuntimeException e) { // Handle the wrapped exception logger.error("Class not found: " + className, e); } ``` ## 🏗️ Architecture & Design Patterns ### Core Design Principles CoreLib follows a **utility-class pattern** where most functionality is exposed through static methods:
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0)