Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for propData (1.3 sec)

  1. src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp

                                    <la:message key="labels.system_info_prop_title"/>
                                </h3>
                            </div>
                            <div class="card-body">
    								<textarea id="propData" class="systemInfoData form-control"
                                              readonly>
    <c:forEach var="item" items="${propItems}">${f:h(item.label)}=${f:h(item.value)}
    </c:forEach>
    								</textarea>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /**
         * Parses project properties from the given path.
         *
         * @param propPath The path to the project properties file.
         * @throws FessSystemException if the properties file cannot be parsed.
         */
        protected void parseProjectProperties(final Path propPath) {
            try (final InputStream in = Files.newInputStream(propPath)) {
                final Properties prop = new Properties();
                prop.load(in);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top