Added: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html?rev=1534748&view=auto
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html
 (added)
+++ 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html
 Tue Oct 22 19:33:34 2013
@@ -0,0 +1,47 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+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.
+-->
+
+#if($TABNAME == 'Metadata')
+
+<table class="displaytable">
+  <tr><td class="separator" colspan="2"><hr/></td></tr>
+  <tr>
+    <td class="description"><nobr>Include:</nobr></td>
+    <td class="value">
+
+
+    #foreach($metadataattribute in $METADATAATTRIBUTES)
+      #if($METADATASELECTIONS.contains($metadataattribute))
+      <input type="checkbox" name="metadata" 
value="$Encoder.attributeEscape($metadataattribute)"
+        checked="true"/>
+      #else
+      <input type="checkbox" name="metadata" 
value="$Encoder.attributeEscape($metadataattribute)"/>
+      #end
+      $Encoder.bodyEscape($metadataattribute)<br/>
+    #end
+    </td>
+
+  </tr>
+</table>
+
+#else
+
+  #foreach($metadataselection in $METADATASELECTIONS)
+<input type="hidden" name="metadata" 
value="$Encoder.attributeEscape($metadataselection)"/>
+  #end
+  
+#end

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationMetadata.html
------------------------------------------------------------------------------
    svn:keywords = Id

Added: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html?rev=1534748&view=auto
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html
 (added)
+++ 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html
 Tue Oct 22 19:33:34 2013
@@ -0,0 +1,68 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+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.
+-->
+
+<table class="displaytable">
+  <tr>
+    <td class="description"><nobr>Matches:</nobr></td>
+    <td class="boxcell">
+      <table class="formtable">
+        <tr class="formheaderrow">
+          <td class="formcolumnheader"><nobr>Attribute name</nobr></td>
+          <td class="formcolumnheader"><nobr>Value</nobr></td>
+        </tr>
+
+#set($k = 0)
+#foreach($match in $MATCHES)
+  #if(($k % 2) == 0)
+        <tr class="evenformrow">
+  #else
+        <tr class="oddformrow">
+  #end
+          <td class="formcolumncell">
+            <nobr>
+              $Encoder.bodyEscape($match.get('name'))
+            </nobr>
+          </td>
+          <td class="formcolumncell">
+            <nobr>
+              $Encoder.bodyEscape($match.get('value'))
+            </nobr>
+          </td>
+        </tr>
+  #set($k = $k + 1)
+#end
+    
+      </table>
+    </td>
+  </tr>
+
+  <tr>
+    <td class="description"><nobr>Included:</nobr></td>
+    <td class="value">
+
+#set($seendata = false)
+#foreach($metadataselection in $METADATASELECTIONS)
+  #if($seendata)
+      ,
+  #end
+  #set($seendata = true)
+        $Encoder.bodyEscape($metadataselection)
+#end
+
+    </td>
+  </tr>
+</table>

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/SpecificationView.html
------------------------------------------------------------------------------
    svn:keywords = Id

Added: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html?rev=1534748&view=auto
==============================================================================
--- 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html
 (added)
+++ 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html
 Tue Oct 22 19:33:34 2013
@@ -0,0 +1,56 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+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.
+-->
+
+<table class="displaytable">
+  <tr>
+    <td class="description" colspan="1">
+      <nobr>
+        Parameters:
+      </nobr>
+    </td>
+    <td class="value" colspan="3">
+      <nobr>
+        Username: $Encoder.bodyEscape($USERNAME)
+      </nobr>
+      <br />
+      <nobr>
+        Password: ********
+      </nobr>
+      <br />
+      <nobr>
+        Protocol: $Encoder.bodyEscape($PROTOCOL)
+      </nobr>
+      <br />
+      <nobr>
+        Server: $Encoder.bodyEscape($SERVER)
+      </nobr>
+      <br />
+      <nobr>
+        Port: $Encoder.bodyEscape($PORT)
+      </nobr>
+      <br />
+        #foreach( $property in $PROPERTIES )
+        <nobr>
+            $Encoder.bodyEscape($property.get('name')) : 
$Encoder.bodyEscape($property.get('value'))
+        </nobr>
+        <br />
+        #end
+
+    </td>
+  </tr>
+</table>
+

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
manifoldcf/branches/CONNECTORS-553/connectors/email/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/email/viewConfiguration.html
------------------------------------------------------------------------------
    svn:keywords = Id


Reply via email to