Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for boostdoc (0.34 sec)

  1. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc.jsp

                                <div class="collapse <c:if test="${!empty urlExpr || !empty boostExpr}">show</c:if>" id="listSearchForm">
                                    <la:form action="/admin/boostdoc/">
                                        <div class="form-group row">
                                            <label for="urlExpr" class="col-sm-2 text-sm-right col-form-label"><la:message
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 7.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_details.jsp

                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/boostdoc/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2 || crudMode==3 || crudMode==4}">
                        <la:hidden property="id"/>
                        <la:hidden property="versionNo"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 4.5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_edit.jsp

                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/boostdoc/">
                    <la:hidden property="crudMode"/>
                    <c:if test="${crudMode==2}">
                        <la:hidden property="id"/>
                        <la:hidden property="versionNo"/>
                    </c:if>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java

            });
            return asJson(new ApiUpdateResponse().id(boostDoc.getId()).created(true).status(Status.OK).result());
        }
    
        // POST /api/admin/boostdoc/setting
        @Execute
        public JsonResponse<ApiResult> post$setting(final EditBody body) {
            validateApi(body, messages -> {});
            body.crudMode = CrudMode.EDIT;
            final BoostDocumentRule boostDoc = getBoostDocumentRule(body).map(entity -> {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.boostdoc;
    
    import org.codelibs.fess.app.web.admin.boostdoc.EditForm;
    
    public class EditBody extends EditForm {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 779 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/CreateBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.boostdoc;
    
    import org.codelibs.fess.app.web.admin.boostdoc.CreateForm;
    
    public class CreateBody extends CreateForm {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 785 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/SearchBody.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.api.admin.boostdoc;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
    
        public String urlExpr;
    
        public String boostExpr;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 846 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/boostdoc/admin_boostdoc.jsp */
        HtmlNext path_AdminBoostdoc_AdminBoostdocJsp = new HtmlNext("/admin/boostdoc/admin_boostdoc.jsp");
    
        /** The path of the HTML: /admin/boostdoc/admin_boostdoc_details.jsp */
        HtmlNext path_AdminBoostdoc_AdminBoostdocDetailsJsp = new HtmlNext("/admin/boostdoc/admin_boostdoc_details.jsp");
    
        /** The path of the HTML: /admin/boostdoc/admin_boostdoc_edit.jsp */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  9. src/test/java/org/codelibs/fess/it/admin/BoostDocTests.java

    import org.junit.jupiter.api.Test;
    
    @Tag("it")
    public class BoostDocTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "boostDocTest_";
        private static final String API_PATH = "/api/admin/boostdoc";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "url_expr";
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.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.boostdoc;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
Back to top