mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2028 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
252 lines
9.0 KiB
Plaintext
252 lines
9.0 KiB
Plaintext
<%--
|
|
Copyright (C) 2005 Alfresco, Inc.
|
|
|
|
Licensed under the Mozilla Public License version 1.1
|
|
with a permitted attribution clause. You may obtain a
|
|
copy of the License at
|
|
|
|
http://www.alfresco.org/legal/license.txt
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, 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.
|
|
--%>
|
|
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
|
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
|
|
|
<%@ page buffer="32kb" contentType="text/html;charset=UTF-8" %>
|
|
<%@ page isELIgnored="false" %>
|
|
<%@ page import="org.alfresco.web.ui.common.PanelGenerator" %>
|
|
|
|
<r:page titleId="title_admin_node_browser">
|
|
|
|
<f:view>
|
|
|
|
<%-- load a bundle of properties with I18N strings --%>
|
|
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
|
|
|
|
<%@ include file="admin-title.jsp" %>
|
|
|
|
<h:commandLink id="selectStores" action="#{AdminNodeBrowseBean.selectStores}">
|
|
<h:outputText styleClass="mainSubText" value="Stores"/>
|
|
</h:commandLink>
|
|
<br>
|
|
<br>
|
|
|
|
<h:outputText styleClass="mainTitle" value="Search"/>
|
|
|
|
<h:form id="searchForm">
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<h:selectOneMenu id="queryLanguage" value="#{AdminNodeBrowseBean.queryLanguage}">
|
|
<f:selectItems value="#{AdminNodeBrowseBean.queryLanguages}"/>
|
|
</h:selectOneMenu>
|
|
</td>
|
|
<td>
|
|
<h:inputText id="query" size="100" value="#{AdminNodeBrowseBean.query}"/>
|
|
</td>
|
|
<td>
|
|
<h:commandButton id="submitSearch" action="#{AdminNodeBrowseBean.submitSearch}" value="Search"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<h:message styleClass="errorMessage" id="queryError" for="query"/>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</h:form>
|
|
|
|
<h:outputText styleClass="mainTitle" value="Node Identifier"/>
|
|
|
|
<table>
|
|
<tr>
|
|
<td><nobr><b>Primary Path:</b></nobr></td><td>
|
|
<nobr>
|
|
<h:commandLink id="selectPrimaryPath" action="#{AdminNodeBrowseBean.selectPrimaryPath}">
|
|
<h:outputText id="primaryPath" value="#{AdminNodeBrowseBean.primaryPath}"/>
|
|
</h:commandLink>
|
|
</nobr>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Reference:</b></td><td><h:outputText id="nodeRef" value="#{AdminNodeBrowseBean.nodeRef}"/></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Type:</b></td><td><h:outputText id="nodeType" value="#{AdminNodeBrowseBean.nodeType}"/></td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Parent:</b></td>
|
|
<td>
|
|
<h:commandLink id="selectPrimaryParent" action="#{AdminNodeBrowseBean.selectPrimaryParent}">
|
|
<h:outputText id="primaryParent" value="#{AdminNodeBrowseBean.primaryParent}"/>
|
|
</h:commandLink>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br>
|
|
<h:outputText styleClass="mainTitle" value="Propertes"/>
|
|
|
|
<h:dataTable id="properties" border="1" value="#{AdminNodeBrowseBean.properties}" var="property">
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Name"/>
|
|
</f:facet>
|
|
<h:outputText value="#{property.name}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Value"/>
|
|
</f:facet>
|
|
<h:outputText styleClass="errorMessage" value="--collection--" rendered="#{property.collection == true}"/>
|
|
<h:dataTable id="values" border="0" cellspacing="0" value="#{property.values}" var="value" rendered="#{property.values.rowCount > 0}">
|
|
<h:column>
|
|
<h:outputLink value="#{value.url}" target="_blank" rendered="#{value.content}">
|
|
<h:outputText value="#{value.value}" />
|
|
</h:outputLink>
|
|
<h:commandLink id="selectNodeProperty" action="#{AdminNodeBrowseBean.selectNodeProperty}" rendered="#{value.nodeRef}">
|
|
<h:outputText value="#{value.value}"/>
|
|
</h:commandLink>
|
|
<h:outputText value="#{value.value}" rendered="#{value.content == false && value.nodeRef == false && value.nullValue == false}"/>
|
|
<h:outputText styleClass="errorMessage" value="--null--" rendered="#{value.nullValue}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Property Type"/>
|
|
</f:facet>
|
|
<h:outputText value="#{property.dataType}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Value Type"/>
|
|
</f:facet>
|
|
<h:dataTable id="valueTypes" border="0" cellspacing="0" value="#{property.values}" var="value">
|
|
<h:column>
|
|
<h:outputText value="#{value.dataType}" rendered="#{property.dataType == null || property.any}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Residual"/>
|
|
</f:facet>
|
|
<h:outputText value="#{property.residual}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<br>
|
|
<h:outputText styleClass="mainTitle" value="Aspects"/>
|
|
|
|
<h:dataTable id="aspects" value="#{AdminNodeBrowseBean.aspects}" var="aspect">
|
|
<h:column>
|
|
<h:outputText value="#{aspect}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<br>
|
|
<h:outputText styleClass="mainTitle" value="Children"/>
|
|
|
|
<h:dataTable id="children" border="1" value="#{AdminNodeBrowseBean.children}" var="child">
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Child Name"/>
|
|
</f:facet>
|
|
<h:outputText value="#{child.QName}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Child Node"/>
|
|
</f:facet>
|
|
<h:commandLink id="selectChild" action="#{AdminNodeBrowseBean.selectChild}">
|
|
<h:outputText value="#{child.childRef}"/>
|
|
</h:commandLink>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Primary"/>
|
|
</f:facet>
|
|
<h:outputText value="#{child.primary}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Association Type"/>
|
|
</f:facet>
|
|
<h:outputText value="#{child.typeQName}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Index"/>
|
|
</f:facet>
|
|
<h:outputText value="#{child.nthSibling}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<br>
|
|
<h:outputText styleClass="mainTitle" value="Associations"/>
|
|
|
|
<h:dataTable id="assocs" border="1" value="#{AdminNodeBrowseBean.assocs}" var="assoc">
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="To Node"/>
|
|
</f:facet>
|
|
<h:commandLink id="selectToNode" action="#{AdminNodeBrowseBean.selectToNode}">
|
|
<h:outputText value="#{assoc.targetRef}"/>
|
|
</h:commandLink>
|
|
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Association Type"/>
|
|
</f:facet>
|
|
<h:outputText value="#{assoc.typeQName}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<br>
|
|
<h:outputText styleClass="mainTitle" value="Parents"/>
|
|
|
|
<h:dataTable id="parents" border="1" value="#{AdminNodeBrowseBean.parents}" var="parent">
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Child Name"/>
|
|
</f:facet>
|
|
<h:outputText value="#{parent.QName}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Parent Node"/>
|
|
</f:facet>
|
|
<h:commandLink id="selectParent" action="#{AdminNodeBrowseBean.selectParent}">
|
|
<h:outputText value="#{parent.parentRef}"/>
|
|
</h:commandLink>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Primary"/>
|
|
</f:facet>
|
|
<h:outputText value="#{parent.primary}"/>
|
|
</h:column>
|
|
<h:column>
|
|
<f:facet name="header">
|
|
<h:outputText value="Association Type"/>
|
|
</f:facet>
|
|
<h:outputText value="#{parent.typeQName}"/>
|
|
</h:column>
|
|
</h:dataTable>
|
|
|
|
<br>
|
|
</f:view>
|
|
|
|
</r:page>
|