Author: crossley Date: Sun Apr 23 00:51:11 2006 New Revision: 396240 URL: http://svn.apache.org/viewcvs?rev=396240&view=rev Log: Add initial citations plugin. Thanks to Ross Gardler who contributed the code against an early version of Forrest, and to Gavin McDonald who prepared it as a new input plugin. Issue: FOR-756 Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/favicon.ico (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group-logo.gif (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/icon.png (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project-logo.gif (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/usemap.gif (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt (with props) forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml (with props) Modified: forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/build.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties Sun Apr 23 00:51:11 2006 @@ -0,0 +1,26 @@ +# Copyright 2002-2005 The Apache Software Foundation or its licensors, +# as applicable. +# +# Licensed 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. + +############## +# This is a minimal properties file. +# These are defaults, un-comment them only if you need to change them. +# See the full set of default properties in a 'forrest seed-sample' site. +# Copy properties from there as needed. +############## + +# FIXME: FOR-785 +forrest.validate.skinconf=false + +project.required.plugins=org.apache.forrest.plugin.input.citations,org.apache.forrest.plugin.input.projectInfo Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/forrest.properties ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap Sun Apr 23 00:51:11 2006 @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/input.xmap ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt Sun Apr 23 00:51:11 2006 @@ -0,0 +1 @@ +Place any libraries required by your plugin in this directory. \ No newline at end of file Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/lib/readme.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/locationmap.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat Sun Apr 23 00:51:11 2006 @@ -0,0 +1,29 @@ + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/catalog.xcat ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd Sun Apr 23 00:51:11 2006 @@ -0,0 +1,69 @@ + + + + + + + + +%document; + + + + + + +%common-charents; + + + + + + +%references; + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.dtd ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod Sun Apr 23 00:51:11 2006 @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/schema/citations-v10.mod ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl Sun Apr 23 00:51:11 2006 @@ -0,0 +1,29 @@ + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/copyover.xsl ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl Sun Apr 23 00:51:11 2006 @@ -0,0 +1,56 @@ + + + + + + + + +
+ References +
+ + + +
+
+ + +
+ + <xsl:value-of select="title"/> + + + + + + +
CitationDetails
+
+
+ + + + + + + [] + + + + + + + + + + + + + + + + +
Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/resources/stylesheets/reference-to-document.xsl ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/favicon.ico URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/favicon.ico?rev=396240&view=auto ============================================================================== Binary file - no diff available. Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/favicon.ico ------------------------------------------------------------------------------ svn:mime-type = image/x-icon Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group-logo.gif URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group-logo.gif?rev=396240&view=auto ============================================================================== Binary file - no diff available. Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group-logo.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg Sun Apr 23 00:51:11 2006 @@ -0,0 +1,82 @@ + + + + + + + + Anteater logo + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/group.svg ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/icon.png URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/icon.png?rev=396240&view=auto ============================================================================== Binary file - no diff available. Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/icon.png ------------------------------------------------------------------------------ svn:mime-type = image/png Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project-logo.gif URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project-logo.gif?rev=396240&view=auto ============================================================================== Binary file - no diff available. Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project-logo.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg Sun Apr 23 00:51:11 2006 @@ -0,0 +1,82 @@ + + + + + + + + Anteater logo + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/project.svg ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/usemap.gif URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/usemap.gif?rev=396240&view=auto ============================================================================== Binary file - no diff available. Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/images/usemap.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,45 @@ + + + + +
+ Welcome to the org.apache.forrest.plugin.input.citations Plugin +
+ +
+ Apache Forrest - org.apache.forrest.plugin.input.citations Plugin +

A Central Location For Citations.

+
+ +
+ Samples +

This section includes links to a number of samples using this plugin. The + plugin is intended to be self documenting through these samples. If you + require further help please ask on the user mailing list.

+ + + + The more samples included here the easier it is for users to + understand this plugin. If you can provide additional samples please + do so. +
+ +
Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/index.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,243 @@ + + + + + + A + + + Apache Software Foundations HTTPD Server (Web Server). http://httpd.apache.org + + + + Writing Applets Trail. + + + + + + B + + + Tim Berners-Lee. Information Management: A proposal, May 1990 + + + + + C + + + CGI101 (Six chapters available online) + + + + David D. Clark. The Design Philosophy of the DARPA Intyernet Protocols. In Proceedings of ACM SIGCOMM, pages 106-114, August 1988.
+ http://www.acm.org/sigs/sigcomm/ccr/archive/1995/jan95/ccr-9501-clark.html +
+ + + Rob Coronel. Database Systems: Design, Implementation and Management. Course Technology. 2003. ISBN 0-7600-1090-0. + +
+ + + D + + + Document Object Model + + + + Dietel, Dietel and Nieto. The Complete Interenet and World Wide Web Programming Training Course. Pearson PTR. 2002 + + + + + + E + + + + + + F + + + + + G + + + The GIMP. http://www.gimp.org + + + + + + H + + + K. L. Heninger, Specifying Software Requirements for complex systems. + New technologies and their applications. IEEE Trans. on Software + Engineering, SE-6 (1), 2-13 [68, 124] + + + Christian huitema. IPv6: The New Internet Protocol. Prentice Hall, second edition, January 2000. ISBN 0130226475. + + + + + I + + + + + J + + + Getting started with Java. + + + + Netscape JavaScript Guide. + (download) + + + + Netscape JavaScript Reference. + (download) + + + + + + K + + + + + L + + + Laudon & Laudon. Management Information Systems: Managing the Digital Firm. 7th Edition + Prentice Hall - 2002. + + + + + M + + + + + N + + + Anne Nelson and William H. M. Nelson III. Building Electronic Commerce with Web Database Constructions. + Addison Wesley, 2002. + + + + T.H. Nelson. Getting it Out of Our Systems. In G. Schechter, editor, + Critique of Information Retrieval, pages 191-210. Thompson Books, 1967. + + + + Netcraft Web Server Survey. http://news.netcraft.com/ + + + + + + O + + + OASIS + + + + + + P + + + + + Q + + + + + R + + + REpresentational State Transfer (REST) Wiki + + + + + S + + + Simple Object Access protocol (SOAP) + + + + I. Summerville, Software Engineering. Fifth Edition. Addison-Wesley. 1995 + + + + Writing Swing Applets + + + + + T + + + + + U + + + Universal Description, Discovery and Integration (UDDI) + + + + + V + + + + + W + + + Web Services Description Language (WSDL) + + + + W3C Web Services Architecture + + + + W3C Web Services Requirements + + + + XHTML Validator http://validator.w3.org + + + + Web history http://www.isoc.org/internet/history/ + + + + + XYZ + + + SGML Entities. http://www.w3.org/TR/REC-html40/sgml/entities.html + + +
Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/references.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,43 @@ + + + + + + + + + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/content/xdocs/tabs.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,30 @@ + + + + +]> + + + &skinconf-common; + + Plugin: org.apache.forrest.plugin.input.citations + org.apache.forrest.plugin.input.citations plugin for Apache Forrest + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/documentation/skinconf.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt Sun Apr 23 00:51:11 2006 @@ -0,0 +1 @@ +Place any java source code that your plugin requires in this directory. \ No newline at end of file Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/src/java/readme.txt ------------------------------------------------------------------------------ svn:eol-style = native Added: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml?rev=396240&view=auto ============================================================================== --- forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml (added) +++ forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml Sun Apr 23 00:51:11 2006 @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + Initial plugin code. + + + + + + + + Customize this template plugin with your plugin's details. This + TODO list is generated from 'status.xml'. + + + Create the documentation with lots of examples and samples. + XML content goes in + src/documentation/content/xdocs. + + + + + Propchange: forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.input.citations/status.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml URL: http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml?rev=396240&r1=396239&r2=396240&view=diff ============================================================================== --- forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml (original) +++ forrest/trunk/whiteboard/plugins/whiteboard-plugins.xml Sun Apr 23 00:51:11 2006 @@ -37,6 +37,18 @@ + + + List of citations. + + 0.8 + +