Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for dashboard (0.2 sec)

  1. src/main/webapp/WEB-INF/view/admin/dashboard/admin_dashboard.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="dashboard"/>
            <jsp:param name="menuType" value="dashboard"/>
        </jsp:include>
    
        <div class="content-wrapper position-relative">
            <iframe class="w-100 h-100 position-absolute" frameborder="0"
                    src="<%=request.getContextPath()%>${serverPath}<%= response.encodeURL("/_plugin/kopf/") %>"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 12:21:50 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.base;
    
    import org.codelibs.fess.app.web.admin.AdminAction;
    import org.codelibs.fess.app.web.admin.dashboard.AdminDashboardAction;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.lastaflute.web.response.HtmlResponse;
    
    public abstract class FessLoginAction extends FessSearchAction {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/fe.tld

        <name>permission</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>boolean hasActionRole(java.lang.String)</function-signature>
        <example>${fe:permission("admin-dashboard")}</example>
      </function>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ja.properties

    labels.newPassword=新しいパスワード
    labels.confirmNewPassword=新しいパスワード(確認)
    
    labels.menu_system=システム
    labels.menu_wizard=ウィザード
    labels.menu_crawl_config=全般
    labels.menu_scheduler_config=スケジューラ
    labels.menu_dashboard_config=ダッシュボード
    labels.menu_design=ページのデザイン
    labels.menu_dict=辞書
    labels.menu_data=バックアップ/復元
    labels.menu_crawl=クローラー
    labels.menu_web=ウェブ
    labels.menu_file_system=ファイルシステム
    labels.menu_data_store=データストア
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  5. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			<c:if test="${fe:permission('admin-dashboard-view')}">
    				<li class="nav-item">
    					<a class="nav-link <c:if test="${param.menuCategoryType=='dashboard'}">active</c:if>"
    					   href="${fe:url('/admin/dashboard/')}">
    						<em class="nav-icon fa fa-tachometer-alt">
    						<p><la:message key="labels.menu_dashboard_config" /></p>
    					</a>
    				</li>
    			</c:if>
    				
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 15 20:55:28 GMT 2021
    - 17.8K bytes
    - Viewed (0)
  6. src/main/assemblies/extension/kibana/README.md

    1. Set "requestedAt" to the **Time Filter field name**.
    1. Click **Create index pattern**.
    1. Click **Saved Objects**.
    1. Click **Import** and select "fess\_log.ndjson" to import example settings.
    1. Click **Dashboard**.
    1. Select "fess\_log" dashboard.
    1. (Change the period from upper right if you want to do.)
    ## FAQ
    
    #### Q. Kibana can't connect Elasticsearch.
    
    A. Please check `${KIBANA_HOME}/config/kibana.yml` and set correct Elasticsearch URL.
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Aug 12 01:26:21 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.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.dashboard;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.api.engine.SearchEngineApiManager;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_de.properties

    labels.confirmNewPassword=Neues Passwort (bestätigen)
    
    labels.menu_system=System
    labels.menu_wizard=Assistent
    labels.menu_crawl_config=Allgemein
    labels.menu_scheduler_config=Zeitplan
    labels.menu_dashboard_config=Dashboard
    labels.menu_design=Seitendesign
    labels.menu_dict=Wörterbuch
    labels.menu_data=Sicherung/Wiederherstellung
    labels.menu_crawl=Crawler
    labels.menu_web=Web
    labels.menu_file_system=Dateisystem
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  9. README.md

    ![Search UI](https://fess.codelibs.org/_images/fess_search_result1.png)
    
    - Admin UI: http://localhost:8080/admin/ (default username/password is admin/admin)
    
    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    You can register crawling targets in the Admin UI on the (Web, File, Data Store) crawler configuration pages, and then start the Crawler manually on the [Scheduler page](https://fess.codelibs.org/14.12/admin/scheduler-guide.html).
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_AdminCrawlinginfo_AdminCrawlinginfoDetailsJsp = new HtmlNext("/admin/crawlinginfo/admin_crawlinginfo_details.jsp");
    
        /** The path of the HTML: /admin/dashboard/admin_dashboard.jsp */
        HtmlNext path_AdminDashboard_AdminDashboardJsp = new HtmlNext("/admin/dashboard/admin_dashboard.jsp");
    
        /** The path of the HTML: /admin/dataconfig/admin_dataconfig.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 (0)
Back to top