Index: samples/site/HOWTO =================================================================== --- samples/site/HOWTO (revision 0) +++ samples/site/HOWTO (revision 0) @@ -0,0 +1,31 @@ +HOWTO for Podling Site +====================== + +How do I change the site content and generate ? +--------------------------------------------- + +1) Make your modifications to the source xml file in xdocs/ +2) Run the default ant target to generate new html + + $ ant + +3) If errors, fix and repeat step 2 + +4) If all ok - you can verify by looking at the site locally + with your browser, do a svn commit to ensure that all changes + both .xml in the xdocs directory and the .html in the docs + directory get committed. + +How do I deploy site to the internet? +------------------------------------- + +1) Once all changes are committed to subversion, ssh into + people.apache.org + +2) cd /www/incubator.apache.org/podling + +3) `cat UPDATE` + +That should bring all the changed content from SVN. You must then +wait for up to 4 hours for the sync to take place to the real website. + Index: samples/site/xdocs/license.xml =================================================================== --- samples/site/xdocs/license.xml (revision 0) +++ samples/site/xdocs/license.xml (revision 0) @@ -0,0 +1,225 @@ + + + + +License + + Podling Documentation Team + + + +
+ + + +
+ +
+ Index: samples/site/xdocs/get-involved.xml =================================================================== --- samples/site/xdocs/get-involved.xml (revision 0) +++ samples/site/xdocs/get-involved.xml (revision 0) @@ -0,0 +1,92 @@ + + + + + +Get Involved + + Podling Documentation Team + + + + +
+ +

+The Apache Podling project really needs and appreciates any contributions, +including documentation help, source code and feedback. Suggested +changes should come in the form of source code and/or very detailed +and constructive feedback. +

+ + + +
+ +
+

If you're interested in committing to the project:

+ + +
+ + +
Index: samples/site/xdocs/dependencies.xml =================================================================== --- samples/site/xdocs/dependencies.xml (revision 0) +++ samples/site/xdocs/dependencies.xml (revision 0) @@ -0,0 +1,48 @@ + + + + + + +Project Dependencies + + Podling Documentation Team + + + +
+ +

+Apache Podling is a project currently incubating in Apache. +

+The common external dependencies of Podling include the tools used to build +and test it: +

+ + + +

+
+ + +
+ Index: samples/site/xdocs/images/apache-incubator-logo.png =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/xdocs/images/apache-incubator-logo.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/xdocs/svn.xml =================================================================== --- samples/site/xdocs/svn.xml (revision 0) +++ samples/site/xdocs/svn.xml (revision 0) @@ -0,0 +1,283 @@ + + + + + + + +Source Code + + Podling Documentation Team + + + + +
+ +

Apache Podling uses + +Subversion to manage its source code. +If you're new to Subversion, you can check out the +online book about Subversion. +Note that we are currently using Subversion 1.1.x (there are separate +versions of the book covering 1.0 and 1.1). +

+

+To receive notice of commits to the repository subscribe to + +Podling-commits@incubator.apache.org by sending email to + +Podling-commits-subscribe@incubator.apache.org. +

+ +
+ +
+ +

+If you just want to browse the source code, you can use the + +ViewCVS web interface to Subversion. This is current at all times. +

+ +
+ +
+ +

Anyone can check code out of Subversion. You only need to specify a +username and password to update the Subversion repository, and only +Podling committers can do that. +If you are a committer, are working from behind a firewall, or are +connected to the internet through a proxy server, please see the sections +below for more information. +

+ + +

Use a command like:

+
% svn checkout http://svn.apache.org/repos/asf/incubator/Podling 
+

Once you have Apache Podling checked out you can update the source +by executing the following command from within the Podling directory.

+
+% svn update
+
+
+ + +

For those users who are stuck behind a corporate firewall which is +blocking http access to the Subversion repository, you can try to access it +via HTTPS:

+
+% svn checkout https://svn.apache.org/repos/asf/incubator/Podling
+
+ +
+ + +

The Subversion client can go through a proxy, if you configure it +to do so. First, edit your "servers" configuration file to indicate which +proxy to use. The files location depends on your operating system. +On Linux or Unix it is located in the directory "~/.subversion". +On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", +note this is a hidden directory.)

+

There are comments in the file explaining what to do. If you don't have +that file, get the latest Subversion client and run any command; this will +cause the configuration directory and template files to be created. +

+

Example : Edit the 'servers' file and add something like : +

+
+[global]
+http-proxy-host = your.proxy.name
+http-proxy-port = 3128
+
+ +
+ + + +

Everyone can access the Apache Podling Subversion repository via HTTPS, +but Apache Podling Committers must checkout the Subversion repository +via HTTPS. +

+
+% svn checkout https://svn.apache.org/repos/asf/incubator/Podling
+
+
+
+ +
+ + +

If you make changes to Apache Podling, and would like to contribute +it to the project, you should open a JIRA issue and discuss the merits +of the proposal with the developer community. If there is agreement, +create a patch and attach it to the JIRA issue. +

+

+To create a patch, execute the svn diff command. This creates a patch that +can easily be uploaded to a JIRA issue. A good name for the patch includes +the JIRA issue name, e.g. PODLING-104.patch. If there are several patches +for the same JIRA issue, you might include your initials, e.g. +PODLING-104.clr.patch +

+
+% svn diff > PODLING-104.clr.patch
+
+
+ + +

+To commit changes to the subversion repository, you must be an Apache +Podling committer. See get involved +for information on how to become a committer and how to set up your +password once you become a committer. +

+ +

+Once your password is set, you can use a command like this to commit: +

+
+$> svn commit --username your-username
+Authentication realm: <https://svn.apache.org:443> ASF Committers
+Password for 'your-username': your-password
+
+

You can also pass your password on the command line directly, but +this is a security problem on multiuser unix computers (the command line +arguments are available via the ps command). Here is the command if you +are Windows or a single user unix computer: +

+
+$> svn commit --username your-username --password your-password
+
+

Remember to replace 'your-username' and 'your-password' with +your actual username and password on svn.apache.org. +

+ +
+
+ +
+

+Refer to the Wiki +page for details. Note that the Podling project is subdivided into several +smaller projects, and each project is built separately. +

+ +
+ +
+ +

If you use Subversion on Windows under cygwin, you may find that the +Subversion client automatically assigns the executable property to +non-executable files. In that case, you would see this at the bottom of +an svn diff of the file: +

+
+Property changes on: test/sql/derby/datastoreidentity/schema1.sql
+___________________________________________________________________
+Name: svn:executable
+   + *
+
+

This section explains the source of the problem and suggests some +actions to avoid it. +

+ + + +

Subversion carries executable information in the built-in property +called svn:executable. This property, unlike others, may be present +or absent, but it has no value. You can add it or delete it, but you +cannot change its value. +

+

In theory, Subversion ignores Windows file permissions and by default +does not set svn:executable. However, cygwin svn acts like Unix svn and +determines the svn:executable property based on file permissions. +

+

If you create a file from the cygwin command line, by default it is +executable only if the filename ends with .bat, .com or .exe, or if its +content starts with #!. [This is what the doc says, but you may see -x +for all files.] If you create a file using a Windows tool, by default +its Windows permissions are executable by all. Cygwin interprets the +Unix-style permissions this way as well. If the file is executable by all, +cygwin svn sets the svn:executable property on the file when you invoke +svn add. +

+
+ + +

You can use svn propdel to remove the svn:executable property from your +working copy. +

+
+    svn propdel -R svn:executable .
+
+

will recursively remove the svn:executable property from all of the +files below the current directory. You can use this and commit the +files to clean the repository if necessary. +

+ +
+ + +

Windows/cygwin users who don't want to have to think about using svn +propdel or chmod on each added file can use a non-cygwin +version of svn. The Subversion 1.2.3 Win32 binaries, downloadable from the +link at the bottom of +http://subversion.tigris.org/project_packages.html, appear to work +well. After installation add the svn.exe location to your Windows PATH +variable. If you are switching from cygwin svn to Win32 svn

+
    +
  1. +

    Remove the subversion component from your cygwin installation +because when svn is invoked from a cygwin window, the cygwin version is +found even if your cygwin/bin directory is later on the path. (In the +Select Packages window of the setup wizard, navigate to the subversion +package in the Devel. category. Click on the status icon until Uninstall +is displayed. Click next and continue through the wizard until installation +is complete.) +

    +
  2. +
  3. +

    Copy the servers file and the auth folder from the sygwin ~/.subversion +directory to C:\Documents and +Settings\<user>\Application Data\Subversion used by Win32 +subversion. +

    +
  4. +
+

Note that windows svn uses backslash as the path separator when +displaying file names. You cannot just copy and paste this file name +to another svn command when running from within a cygwin shell. +You need to enclose the file name into double quotes. +

+

Alternatively, Windows users can set file permissions in Windows +Explorer. (Right-click on the top-level folder & select Properties. +Select the Security tab. Click Advanced. Remove all instances of +Read & Execute from the Permission Entries. Click "Reset permissions +on all child objects and enable propogations of inheritable permissions". +Click Apply. OK. OK.) You will have to do this again when you do a clean +checkout to a new directory. +

+ +
+
+ +
Index: samples/site/xdocs/faq.xml =================================================================== --- samples/site/xdocs/faq.xml (revision 0) +++ samples/site/xdocs/faq.xml (revision 0) @@ -0,0 +1,58 @@ + + + + + + +Frequently Asked Questions + + Podling Documentation Team + + + +
+ +

+What is Podling? +

+Podling is an open source implementation. +
+

+ +

+Where is the mailing list, and how can I subscribe? + +

+Please see mail-lists for details. +
+

+ +

+Does this project use a wiki? +

+It does - the +Podling wiki +complements the work taking place on the mailing list and provides +additional information on the project. +
+

+
+ + +
+ Index: samples/site/xdocs/index.xml =================================================================== --- samples/site/xdocs/index.xml (revision 0) +++ samples/site/xdocs/index.xml (revision 0) @@ -0,0 +1,53 @@ + + + + + +Home + + Podling Documentation Team + + + + +
+ +

+Welcome to Apache Podling, a project of the +Apache incubator. Our goal is a +thriving community of users and developers. +

+

Podling is an Apache-licensed open source implementation. +

+ +

+The Apache Podling project is focused on building the Podling api +and a robust, high performance, scalable implementation. +

+
+ +
+ +

+Podling has been accepted into the Apache Incubator. +

+ +
+ +
+

+Users! +

+We'd love to have you involved. Check out the Wiki. +
+

+ +
+ + +
+ + + + + Index: samples/site/xdocs/javadoc.xml =================================================================== --- samples/site/xdocs/javadoc.xml (revision 0) +++ samples/site/xdocs/javadoc.xml (revision 0) @@ -0,0 +1,36 @@ + + + + + +Podling Javadoc + + Podling Documentation Team + + + + +
+ +

+Podling Javadoc is available in two formats. You can browse the +javadoc online, or you can download it as a .zip file and +unzip it to a local directory. +

+ +
+ +
+Coming soon! + +
+ + +
Index: samples/site/xdocs/documentation.xml =================================================================== --- samples/site/xdocs/documentation.xml (revision 0) +++ samples/site/xdocs/documentation.xml (revision 0) @@ -0,0 +1,73 @@ + + + + + + + + +Documentation + + Podling Documentation Team + + + +
+ +

+There is not yet a full manual or similar official documentation. However, +the resources below will help new users and developers get up to speed with +Podling. +

+ + + +
    +
  • The Podling Wiki has +information on running Podling, as well as checking out and +building from source, and many other things.
  • +
+ +
+ + + +

+A number of books covering Podling are planned or in production. +

+ +

Books About Podling

+ +
+ + + + + + +
+ + + +
+ Index: samples/site/xdocs/downloads.xml =================================================================== --- samples/site/xdocs/downloads.xml (revision 0) +++ samples/site/xdocs/downloads.xml (revision 0) @@ -0,0 +1,51 @@ + + + + + +Downloads + + Podling Documentation Team + + + + +
+

+A release of Podling includes the First artifact +and the Second artifact. The release is distributed as +source code and as jar files that can be accessed +via maven repository search. +

+

+

+All are available for download as source and binary. +

+

+If downloading multiple source packages, extract them all +into the same directory. This will preserve the source +dependencies among the projects. +

+ +

+No official releases are available. +

+
+ + +

+No previous official releases are available. +

+
+ +
+ +
+ Index: samples/site/xdocs/stylesheets/project.xml =================================================================== --- samples/site/xdocs/stylesheets/project.xml (revision 0) +++ samples/site/xdocs/stylesheets/project.xml (revision 0) @@ -0,0 +1,35 @@ + + + + Apache Podling + Apache Podling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: samples/site/xdocs/stylesheets/site.vsl =================================================================== --- samples/site/xdocs/stylesheets/site.vsl (revision 0) +++ samples/site/xdocs/stylesheets/site.vsl (revision 0) @@ -0,0 +1,317 @@ + + + + + + + + ## Defined variables + #set ($bodybg = "#ffffff") + #set ($bodyfg = "#000000") + #set ($bodylink = "#525D76") + #set ($bannerbg = "#525D76") + #set ($bannerfg = "#ffffff") + #set ($subbannerbg = "#828DA6") + #set ($subbannerfg = "#ffffff") + #set ($tablethbg = "#039acc") + #set ($tabletdbg = "#a0ddf0") + + +#document() + + +## This is where the macro's live + +#macro ( table $table) + + #foreach ( $items in $table.getChildren() ) + #if ($items.getName().equals("tr")) + #tr ($items) + #end + #end +
+#end + +#macro ( tr $tr) + + #foreach ( $items in $tr.getChildren() ) + #if ($items.getName().equals("td")) + #td ($items) + #elseif ($items.getName().equals("th")) + #th ($items) + #end + #end + +#end + +#macro ( td $value) +#if ($value.getAttributeValue("colspan")) +#set ($colspan = $value.getAttributeValue("colspan")) +#end +#if ($value.getAttributeValue("rowspan")) +#set ($rowspan = $value.getAttributeValue("rowspan")) +#end + + + #if ($value.getText().length() != 0 || $value.hasChildren()) + $value.getContent() + #else +   + #end + + +#end + +#macro ( th $value) +#if ($value.getAttributeValue("colspan")) +#set ($colspan = $value.getAttributeValue("colspan")) +#end +#if ($value.getAttributeValue("rowspan")) +#set ($rowspan = $value.getAttributeValue("rowspan")) +#end + + + #if ($value.getText().length() != 0 || $value.hasChildren()) + $value.getContent() + #else +   + #end + + +#end + +#macro ( projectanchor $name $value ) +#if ($value.startsWith("http://")) + $name +#elseif ($value.startsWith("/site")) + $name +#else + $name +#end +#end + +#macro ( metaauthor $author $email ) + + +#end + +#macro ( image $value ) +#if ($value.getAttributeValue("width")) +#set ($width=$value.getAttributeValue("width")) +#end +#if ($value.getAttributeValue("height")) +#set ($height=$value.getAttributeValue("height")) +#end +#if ($value.getAttributeValue("align")) +#set ($align=$value.getAttributeValue("align")) +#end + +#end + +#macro ( source $value) +
+ + + + + + + + + + + + + + + + +
$escape.getText($value.getText())
+
+#end + +#macro ( subsection $subsection) + + + + +
+ + $subsection.getAttributeValue("name") + +
+
+ #foreach ( $items in $subsection.getChildren() ) + #if ($items.getName().equals("img")) + #image ($items) + #elseif ($items.getName().equals("source")) + #source ($items) + #elseif ($items.getName().equals("table")) + #table ($items) + #else + $items + #end + #end +
+

+#end + +#macro ( section $section) + + + + +
+ + $section.getAttributeValue("name") + +
+
+ #foreach ( $items in $section.getChildren() ) + #if ($items.getName().equals("img")) + #image ($items) + #elseif ($items.getName().equals("source")) + #source ($items) + #elseif ($items.getName().equals("table")) + #table ($items) + #elseif ($items.getName().equals("subsection")) + #subsection ($items) + #else + $items + #end + #end +
+

+

+#end + +#macro ( makeProject ) + + + + #set ($menus = $project.getChild("body").getChildren("menu")) + #foreach ( $menu in $menus ) +

$menu.getAttributeValue("name")

+ + #end +#end + +#macro (getProjectImage) +#if ($project.getChild("logo")) +#set ( $logoString = $project.getChild("logo").getAttributeValue("href") ) + +#if ( $logoString.startsWith("/") ) +$project.getChild( +#else +$project.getChild( +#end + +#end +#end + +#macro (printMeta $metaElement) + +#end + +#macro (document) + + + + + + + + + #set ($authors = $root.getChild("properties").getChildren("author")) + #foreach ( $au in $authors ) + #metaauthor ( $au.getText() $au.getAttributeValue("email") ) + #end + + #set ($metas = $root.getChildren("meta")) + + ## Parse meta directives such as + ## + #foreach ($meta in $metas) #printMeta($meta) #end + + ## Support for tags. + #if ($root.getChild("properties").getChild("base")) + #set ($url = $root.getChild("properties").getChild("base").getAttributeValue("href")) + + #end + + $project.getChild("title").getText() - $root.getChild("properties").getChild("title").getText() + + + + + + + + +
+ #getProjectImage() +
+ + + + + + + + + + + + +
+
+
+ + + + + + #makeProject() + + #set ($allSections = $root.getChild("body").getChildren("section")) + #foreach ( $section in $allSections ) + #section ($section) + #end +
+
+
+
+ Copyright © 2006, The Apache Software Foundation +
+
+ + +#end + + + + + Index: samples/site/xdocs/stylesheets/site_printable.vsl =================================================================== --- samples/site/xdocs/stylesheets/site_printable.vsl (revision 0) +++ samples/site/xdocs/stylesheets/site_printable.vsl (revision 0) @@ -0,0 +1,260 @@ + + + + + ## Defined variables + #set ($bodybg = "#ffffff") + #set ($bodyfg = "#000000") + #set ($bodylink = "#525D76") + #set ($bannerbg = "#525D76") + #set ($bannerfg = "#ffffff") + #set ($subbannerbg = "#828DA6") + #set ($subbannerfg = "#ffffff") + #set ($tablethbg = "#039acc") + #set ($tabletdbg = "#a0ddf0") + + +#document() + + +## This is where the macro's live + +#macro ( table $table) + + #foreach ( $items in $table.getChildren() ) + #if ($items.getName().equals("tr")) + #tr ($items) + #end + #end +
+#end + +#macro ( tr $tr) + + #foreach ( $items in $tr.getChildren() ) + #if ($items.getName().equals("td")) + #td ($items) + #elseif ($items.getName().equals("th")) + #th ($items) + #end + #end + +#end + +#macro ( td $value) +#if ($value.getAttributeValue("colspan")) +#set ($colspan = $value.getAttributeValue("colspan")) +#end +#if ($value.getAttributeValue("rowspan")) +#set ($rowspan = $value.getAttributeValue("rowspan")) +#end + + + #if ($value.getText().length() != 0 || $value.hasChildren()) + $value.getContent() + #else +   + #end + + +#end + +#macro ( th $value) +#if ($value.getAttributeValue("colspan")) +#set ($colspan = $value.getAttributeValue("colspan")) +#end +#if ($value.getAttributeValue("rowspan")) +#set ($rowspan = $value.getAttributeValue("rowspan")) +#end + + + #if ($value.getText().length() != 0 || $value.hasChildren()) + $value.getContent() + #else +   + #end + + +#end + +#macro ( projectanchor $name $value ) +#if ($value.startsWith("http://")) + • $name +#elseif ($value.startsWith("/site")) + • $name +#else + • $name +#end +#end + +#macro ( metaauthor $author $email ) + + +#end + +#macro ( image $value ) +#if ($value.getAttributeValue("width")) +#set ($width=$value.getAttributeValue("width")) +#end +#if ($value.getAttributeValue("height")) +#set ($height=$value.getAttributeValue("height")) +#end +#if ($value.getAttributeValue("align")) +#set ($align=$value.getAttributeValue("align")) +#end + +#end + +#macro ( source $value) +
+
$escape.getText($value.getText())
+
+#end + +#macro ( subsection $subsection) + + + + + +
+ + $subsection.getAttributeValue("name") + +

+
+ #foreach ( $items in $subsection.getChildren() ) + #if ($items.getName().equals("img")) + #image ($items) + #elseif ($items.getName().equals("source")) + #source ($items) + #elseif ($items.getName().equals("table")) + #table ($items) + #else + $items + #end + #end +
+

+#end + +#macro ( section $section) + + + + + +
+ + $section.getAttributeValue("name") + +

+ + #foreach ( $items in $section.getChildren() ) + #if ($items.getName().equals("img")) + #image ($items) + #elseif ($items.getName().equals("source")) + #source ($items) + #elseif ($items.getName().equals("table")) + #table ($items) + #elseif ($items.getName().equals("subsection")) + #subsection ($items) + #else + $items + #end + #end + +

+

+#end + +#macro (getProjectImage) +#if ($project.getChild("logo")) + + + +#set ( $logoString = $project.getChild("logo").getAttributeValue("href") ) +#if ( $logoString.startsWith("/") ) +$project.getChild( +#else +$project.getChild( +#end + +#else + + + +#end +#end + +#macro ( makeHorizontalProject ) + #set ($menus = $project.getChild("body").getChildren("menu")) + + #foreach ( $menu in $menus ) + + + #end +
+ $menu.getAttributeValue("name") + + #foreach ( $item in $menu.getChildren() ) + #set ($name = $item.getAttributeValue("name")) + #projectanchor($name $item.getAttributeValue("href"))  + #end +
+#end + +#macro (document) + + + + + + + + #set ($authors = $root.getChild("properties").getChildren("author")) + #foreach ( $au in $authors ) + #metaauthor ( $au.getText() $au.getAttributeValue("email") ) + #end + + $project.getChild("title").getText() - $root.getChild("properties").getChild("title").getText() + + + + + + + #getProjectImage() + +
+ + + + + + + + +
+
+
+ #set ($allSections = $root.getChild("body").getChildren("section")) + #foreach ( $section in $allSections ) + #section ($section) + #end +
+
+
+ + #makeHorizontalProject () + +
+
+
+
+ Copyright © 2006, Apache Software Foundation +
+
+ + +#end Index: samples/site/xdocs/stylesheets/site.xsl =================================================================== --- samples/site/xdocs/stylesheets/site.xsl (revision 0) +++ samples/site/xdocs/stylesheets/site.xsl (revision 0) @@ -0,0 +1,277 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="$project/title"/> - <xsl:value-of select="properties/title"/> + + + + + + + + + + + + + + + + + PAGE HEADER + + + HEADER SEPARATOR + + + + + + + LEFT SIDE NAVIGATION + + + RIGHT SIDE MAIN BODY + + + + + FOOTER SEPARATOR + + + + + PAGE FOOTER + + +
+ + JAKARTA LOGO + + The Jakarta Project + + + + + + + + + + + + + PROJECT LOGO + + {$alt} + + + +
+
+
+ + + +
+
+
+
+ Copyright © 2006, Apache Software Foundation +
+
+ + + +
+ + + + +

+
    + +
+
+ + + + + + + + + + + http://jakarta.apache.org + + + + + + +
  • +
    + + + + + + + + + + + + +
    + + + +
    + +
    +
    + + + + + + + + + + + + +
    + + + +
    + +
    +
    + + + + +
    + + + + + + + + + + + + + + + + +
    + + + + + +
    + +
    +            
    +          
    + +
    + + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Index: samples/site/xdocs/mail-lists.xml =================================================================== --- samples/site/xdocs/mail-lists.xml (revision 0) +++ samples/site/xdocs/mail-lists.xml (revision 0) @@ -0,0 +1,119 @@ + + + + + + + +Mailing Lists + + Podling Documentation Team + + + +
    + +

    +There are currently two publicly available mailing lists for Podling. +

    +

    +The commits list is for notification of commits to the Podling repository. +

    +

    +The dev list is for internal discussion among the Podling developers. It is +open to the public if you are interested in seeing how the sausage is made. +

    + + + + + + + + + + + + + + + +
    +

    Commits List : + +Podling-commits@incubator.apache.org

    +
    +

    +Subscribe

    +
    +

    +Unsubscribe

    +
    +

    + +Archive +

    +
    +

    Developer List : + +Podling-dev@incubator.apache.org

    +
    +

    +Subscribe

    +
    +

    +Unsubscribe

    +
    +

    + +Archive +

    +
    + +
    + +
    + Index: samples/site/xdocs/team-list.xml =================================================================== --- samples/site/xdocs/team-list.xml (revision 0) +++ samples/site/xdocs/team-list.xml (revision 0) @@ -0,0 +1,40 @@ + + + + + +Project Team + + Podling Documentation Team + + + + +
    + +

    +The people listed below have made significant contributions to Podling by +working long and hard to make quality software for the rest of the world to +use. +

    + +

    +If you would like to contribute to Podling, please see the +wiki + to find areas where you can contribute. +If there is nothing in there that suits your interest, but you still have +ideas, please feel free to suggest them on the mailing list. +

    +

    +If you would like to become a committer, please see +Get Involved. +

    + + + + +
    NameOrganization
    Atila the HunHun4U
    +
    + + +
    Index: samples/site/lib/logkit-1.0.1.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/lib/logkit-1.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/lib/commons-collections.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/lib/commons-collections.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/lib/velocity-1.5-dev.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/lib/velocity-1.5-dev.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/lib/jdom-b10-rc1.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/lib/jdom-b10-rc1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/lib/oro.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: samples/site/lib/oro.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Index: samples/site/build.xml =================================================================== --- samples/site/build.xml (revision 0) +++ samples/site/build.xml (revision 0) @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ####################################################### + # + # Now using Anakia to transform our XML documentation + # to HTML. + # + ####################################################### + + + + + + + + + + + + + + + + + + +