You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by al...@apache.org on 2014/01/02 02:28:29 UTC

svn commit: r1554715 - in /juddi/cms-site/trunk: content/ lib/ templates/

Author: alexoree
Date: Thu Jan  2 01:28:28 2014
New Revision: 1554715

URL: http://svn.apache.org/r1554715
Log:
JUDDI-750 adding more content

Added:
    juddi/cms-site/trunk/content/committers.mdtext
    juddi/cms-site/trunk/content/dependencies.mdtext
    juddi/cms-site/trunk/content/docs.mdtext
    juddi/cms-site/trunk/content/legal.mdtext
    juddi/cms-site/trunk/content/library.mdtext
    juddi/cms-site/trunk/content/license.mdtext
    juddi/cms-site/trunk/content/project-summary.mdtext
    juddi/cms-site/trunk/content/team-list.mdtext
    juddi/cms-site/trunk/content/thanks.mdtext
    juddi/cms-site/trunk/content/who.mdtext
    juddi/cms-site/trunk/templates/navbar.html
Modified:
    juddi/cms-site/trunk/content/releases.mdtext
    juddi/cms-site/trunk/lib/path.pm
    juddi/cms-site/trunk/templates/skeleton.html
    juddi/cms-site/trunk/templates/skeletonHome.html

Added: juddi/cms-site/trunk/content/committers.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/committers.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/committers.mdtext (added)
+++ juddi/cms-site/trunk/content/committers.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,36 @@
+# Updating the jUDDI Web Site
+
+The site source is located under our source tree at juddi/src/site. To build the site, simply invoke mvn site in juddi/site. The built sources will be located at juddi/target/site. You should get a clean build, and no broken links. There aren't any known issues with the site.
+
+You must test your builds locally by running mvn site on your local box. You can do this by invoking 'mvn site' in the juddi root directory.
+
+The commit process is a bit complicated. The live site is hosted under the site source tree, -not- the juddi src tree. The juddi/target/site directory hierarchy maps to the ws-site/targets/juddi directory hierarchy. Once you've built the site copy the latter hierarchy to the former, and then commit the changes. The live site is updated about every 6 hours from cvs.
+
+You must -also- commit the changes you've made under juddi/src/site to persist the changes for the next committer to be able to reproduce your modifications.
+
+To fully clean any site build you've created, you can safely delete everything under juddi/target.
+
+# Release Process
+
+## Release Manager
+
+One committer will be elected or hopefully volunteer to assemble the binary releases and label the source tree.
+
+## Digitally Signing Releases
+
+Apache policy requires binary releases be digitaly signed. The Apache process has not been formalized, but a general discussion about creating digital signatures and signing releases is available at http://nagoya.apache.org/wiki/apachewiki.cgi?SigningReleases. This covers some basics about using GnuPG to create key pairs and sign releases. Our goal here is to discuss jUDDI signing requirements, and provide some useful examples to release managers, not discuss digital signatures or encryption technology. Our discussion uses GnuPG, but any compliant software could be used. The examples below come from the GnuPG manual. This discussion is not a subsitute for reading that manual.
+
+Creating a key pair is pretty simple using gpg. Simply invoke gpg and take all the defaults when prompted. You will have to provide a passphrase. Be sure to remember the passphrase since you'll need it anytime you use the key pair. The passphrase should itself be sufficiently secure; it shouldn't simply be a word in a dictionary, should include a mix of digits and alphanumeric characters, etc.
+
+    gpg --gen-key
+        
+You should also generate a revocation certificate. This allows you to declare the key pair invalid publically, if you ever lose your private key, or it becomes compromised.
+
+    gpg --output revoke.as --gen-revoke mykey
+        
+The release manager is responsible for signing the binaries. The release manager must have a public key listed in the 'KEYS' file at the root of our source tree. The release manager must create a detached signature for each binary. This detached signature must be posted along with our binaries, and allow our users to verify the binary's integrity.
+
+    gpg --output jUDDI.tar.gzip.asc --detach-sig jUDDI.tar.gzip
+        
+All jUDDI committers are encouraged to create public/ private key pairs and place the public half into our 'KEYS' file at the root of our source tree. jUDDI committers are also encouraged to verify one another's keys and sign them, to help create a web of trust. Verifying a signature and a binary guarantees (in any real sense) the binary was assembled by the person that signed it. However, it does not prove the person signing it can be trusted. A web of trust can be created by signing one another's keys. This allows users and developers to 'trust' the person who created the document-signature pair to provide a secure, safe binary.
+

Added: juddi/cms-site/trunk/content/dependencies.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/dependencies.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/dependencies.mdtext (added)
+++ juddi/cms-site/trunk/content/dependencies.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,25 @@
+# Project Dependencies
+
+## compile
+
+The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
+
+
+## test
+
+The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
+
+
+No transitive dependencies are required for this project.
+
+## Project Dependency Graph
+
+### Dependency Tree
+
+
+## Licenses
+
+Common Public License Version 1.0: JUnit
+
+The Apache Software License, Version 2.0: Logging, jUDDI_v3 Parent
+

Added: juddi/cms-site/trunk/content/docs.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/docs.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/docs.mdtext (added)
+++ juddi/cms-site/trunk/content/docs.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,6 @@
+# Guides
+
+|Name	|Date	|Description|
+|3.x| User Guide	|May 20, 2013	|HTML, HTML-SINGLE, PDF |
+|3.x| Developer Guide	|Jul 10, 2011	|HTML, HTML-SINGLE, PDF| 
+|2.x| User Guide	|Jun 1, 2005	|HTML|
\ No newline at end of file

Added: juddi/cms-site/trunk/content/legal.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/legal.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/legal.mdtext (added)
+++ juddi/cms-site/trunk/content/legal.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,5 @@
+# jUDDI - Legal Stuff
+
+All material on this website is Copyright © 1999-2014, The Apache Software Foundation.
+
+Sun, Sun Microsystems, Solaris, Java, JavaServer Web Development Kit, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. UNIX is a registered trademark in the United States and other countries, exclusively licensed through X/Open Company, Ltd. Windows, WindowsNT, and Win32 are registered trademarks of Microsoft Corp. All other product names mentioned herein and throughout the entire web site are trademarks of their respective owners.
\ No newline at end of file

Added: juddi/cms-site/trunk/content/library.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/library.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/library.mdtext (added)
+++ juddi/cms-site/trunk/content/library.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,92 @@
+# Introduction
+
+The jUDDI Project lives or fails based on its human resources. Users and contributors alike help the project with ideas and brainpower. A common foundation of knowledge is required to effectively participate in this virtual community. The following is a list of documents that we have found helpful for us and may be helpful to you.
+
+# UDDI Specifications
+
+[UDDI.org](http://uddi.xml.org/)
+[UDDI Version 1.0 Specification](http://www.oasis-open.org/committees/uddi-spec/doc/contribs.htm#uddiv1)
+[UDDI Version 2.0 Specification](http://www.oasis-open.org/committees/uddi-spec/doc/contribs.htm#uddiv2)
+[UDDI Version 3.0 Specification](http://www.oasis-open.org/committees/uddi-spec/doc/contribs.htm#uddiv3)
+
+UDDI Taxonomies
+
+[North American Industry Classification System (NAICS)](http://www.census.gov/epcd/www/naics.html)
+U.S. Census Bureau
+
+[United Nations Standard Products and Services Code System (UNSPSC) Version 3.1](http://www.unspsc.org/Defaults.asp)
+U.S. Census Bureau
+
+# Articles, Tutorials and Best Practices
+
+[O'Reilly Java WebServices Chapter 6: "UDDI: Universal Description, Discovery, and Integration"](http://oreilly.com/catalog/javawebserv/chapter/ch06.html)
+Tyler Jewell and David Chappell
+
+[Best practices for Web services versioning](http://www-106.ibm.com/developerworks/webservices/library/ws-version/)
+Keep your Web services current with WSDL and UDDI
+Kyle Brown and Michael Ellis, IBM developerWorks
+January 2004
+
+[Using WSDL in a UDDI Registry](http://www.oasis-open.org/committees/uddi-spec/doc/tn/uddi-spec-tc-tn-wsdl-v2.htm)
+John Colgrave and Karsten Januszewski, UDDI.org
+November 2003
+
+[Registration and Discovery of Web Services Using JAXR with XML Registries such as UDDI and ebXML](http://java.sun.com/developer/technicalArticles/WebServices/jaxrws/)
+The why and what of the new approach
+Qusay H. Mahmoud, Sun Microsystems
+June 2002
+
+[A New Approach to UDDI and WSDL Part 1](http://www-106.ibm.com/developerworks/webservices/library/ws-udmod1/)
+The why and what of the new approach
+John Colgrave, IBM developerWorks
+August 2003
+
+[A New Approach to UDDI and WSDL Part 2](http://www-106.ibm.com/developerworks/webservices/library/ws-udmod2/)
+Usage scenarios in publishing and finding WSDL service descriptions
+John Colgrave, IBM developerWorks
+September 2003
+
+[Understanding WSDL in a UDDI Registry Part 1](http://www.ibm.com/developerworks/webservices/library/ws-wsdl/)
+How to publish and find WSDL service descriptions
+Peter Brittenham, Francisco Cubera, Dave Ehnebuske, Steve Graham, IBM developerWorks
+September 2001 (updated September 2002)
+
+[Understanding WSDL in a UDDI Registry Part 2](http://www.ibm.com/developerworks/webservices/library/ws-wsdl2/)
+How to publish and find WSDL service descriptions
+Peter Brittenham, Francisco Cubera, Dave Ehnebuske, Steve Graham, IBM developerWorks
+September 2001 (updated September 2002)
+
+[Understanding WSDL in a UDDI Registry Part 3](http://www.ibm.com/developerworks/webservices/library/ws-wsdl3/)
+How to publish and find WSDL service descriptions
+Peter Brittenham, IBM developerWorks
+November 2001
+
+[Providing a Taxonomy for Use in UDDI Version 2](http://www.uddi.org/pubs/TN-taxonomy-provider-V1.00-Final-20010717.pdf)
+UDDI.org
+July 2001
+
+[The Role of Taxonomies in UDDI: tModels Demystified](http://www.developer.com/services/article.php/1367781)
+Ravi Trivedi, Developer.com
+
+[Versioning of Web Services: An UDDI Subscription-Based Approach](http://www.developer.com/services/article.php/3374631)
+Aravilli Srinivasa Rao, Developer.com
+
+# Related Specifications
+
+[SOAP W3C Specification](http://www.w3.org/TR/SOAP/)
+
+[Web Services Description Language (WSDL) 1.1](http://www.w3c.org/TR/wsdl.html)
+
+[Java API for XML Registries (JAXR)](http://java.sun.com/xml/jaxr/)
+
+# Other Resources
+
+[The Java Language Specification](http://java.sun.com/docs/books/jls/index.html)
+Written by the creators of the Java Programming Language, this online book is considered by many to be the bible for programming in Java. A must read.
+
+[Javadoc](http://java.sun.com/products/jdk/javadoc/index.html)
+Javadoc is the automatic software documentation generator used by Java since it was first released. All code written for this project must be documented using Javadoc conventions.
+
+[The Java Code Conventions](http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html)
+This Sun document specifies the de-facto standard way of formatting Java code. All code written for this project must follow these conventions.
+

Added: juddi/cms-site/trunk/content/license.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/license.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/license.mdtext (added)
+++ juddi/cms-site/trunk/content/license.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,209 @@
+# Overview
+
+Typically the licenses listed for the project are that of the project itself, and not of dependencies.
+
+# Project License
+
+    The Apache Software License, Version 2.0
+     
+                                            Apache License
+                                    Version 2.0, January 2004
+                                http://www.apache.org/licenses/
+     
+    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+    
+    1. Definitions.
+    
+        "License" shall mean the terms and conditions for use, reproduction,
+        and distribution as defined by Sections 1 through 9 of this document.
+    
+        "Licensor" shall mean the copyright owner or entity authorized by
+        the copyright owner that is granting the License.
+    
+        "Legal Entity" shall mean the union of the acting entity and all
+        other entities that control, are controlled by, or are under common
+        control with that entity. For the purposes of this definition,
+        "control" means (i) the power, direct or indirect, to cause the
+        direction or management of such entity, whether by contract or
+        otherwise, or (ii) ownership of fifty percent (50%) or more of the
+        outstanding shares, or (iii) beneficial ownership of such entity.
+    
+        "You" (or "Your") shall mean an individual or Legal Entity
+        exercising permissions granted by this License.
+    
+        "Source" form shall mean the preferred form for making modifications,
+        including but not limited to software source code, documentation
+        source, and configuration files.
+    
+        "Object" form shall mean any form resulting from mechanical
+        transformation or translation of a Source form, including but
+        not limited to compiled object code, generated documentation,
+        and conversions to other media types.
+    
+        "Work" shall mean the work of authorship, whether in Source or
+        Object form, made available under the License, as indicated by a
+        copyright notice that is included in or attached to the work
+        (an example is provided in the Appendix below).
+    
+        "Derivative Works" shall mean any work, whether in Source or Object
+        form, that is based on (or derived from) the Work and for which the
+        editorial revisions, annotations, elaborations, or other modifications
+        represent, as a whole, an original work of authorship. For the purposes
+        of this License, Derivative Works shall not include works that remain
+        separable from, or merely link (or bind by name) to the interfaces of,
+        the Work and Derivative Works thereof.
+    
+        "Contribution" shall mean any work of authorship, including
+        the original version of the Work and any modifications or additions
+        to that Work or Derivative Works thereof, that is intentionally
+        submitted to Licensor for inclusion in the Work by the copyright owner
+        or by an individual or Legal Entity authorized to submit on behalf of
+        the copyright owner. For the purposes of this definition, "submitted"
+        means any form of electronic, verbal, or written communication sent
+        to the Licensor or its representatives, including but not limited to
+        communication on electronic mailing lists, source code control systems,
+        and issue tracking systems that are managed by, or on behalf of, the
+        Licensor for the purpose of discussing and improving the Work, but
+        excluding communication that is conspicuously marked or otherwise
+        designated in writing by the copyright owner as "Not a Contribution."
+    
+        "Contributor" shall mean Licensor and any individual or Legal Entity
+        on behalf of whom a Contribution has been received by Licensor and
+        subsequently incorporated within the Work.
+    
+    2. Grant of Copyright License. Subject to the terms and conditions of
+        this License, each Contributor hereby grants to You a perpetual,
+        worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+        copyright license to reproduce, prepare Derivative Works of,
+        publicly display, publicly perform, sublicense, and distribute the
+        Work and such Derivative Works in Source or Object form.
+    
+    3. Grant of Patent License. Subject to the terms and conditions of
+        this License, each Contributor hereby grants to You a perpetual,
+        worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+        (except as stated in this section) patent license to make, have made,
+        use, offer to sell, sell, import, and otherwise transfer the Work,
+        where such license applies only to those patent claims licensable
+        by such Contributor that are necessarily infringed by their
+        Contribution(s) alone or by combination of their Contribution(s)
+        with the Work to which such Contribution(s) was submitted. If You
+        institute patent litigation against any entity (including a
+        cross-claim or counterclaim in a lawsuit) alleging that the Work
+        or a Contribution incorporated within the Work constitutes direct
+        or contributory patent infringement, then any patent licenses
+        granted to You under this License for that Work shall terminate
+        as of the date such litigation is filed.
+    
+    4. Redistribution. You may reproduce and distribute copies of the
+        Work or Derivative Works thereof in any medium, with or without
+        modifications, and in Source or Object form, provided that You
+        meet the following conditions:
+    
+        (a) You must give any other recipients of the Work or
+             Derivative Works a copy of this License; and
+    
+        (b) You must cause any modified files to carry prominent notices
+             stating that You changed the files; and
+    
+        (c) You must retain, in the Source form of any Derivative Works
+             that You distribute, all copyright, patent, trademark, and
+             attribution notices from the Source form of the Work,
+             excluding those notices that do not pertain to any part of
+             the Derivative Works; and
+    
+        (d) If the Work includes a "NOTICE" text file as part of its
+             distribution, then any Derivative Works that You distribute must
+             include a readable copy of the attribution notices contained
+             within such NOTICE file, excluding those notices that do not
+             pertain to any part of the Derivative Works, in at least one
+             of the following places: within a NOTICE text file distributed
+             as part of the Derivative Works; within the Source form or
+             documentation, if provided along with the Derivative Works; or,
+             within a display generated by the Derivative Works, if and
+             wherever such third-party notices normally appear. The contents
+             of the NOTICE file are for informational purposes only and
+             do not modify the License. You may add Your own attribution
+             notices within Derivative Works that You distribute, alongside
+             or as an addendum to the NOTICE text from the Work, provided
+             that such additional attribution notices cannot be construed
+             as modifying the License.
+    
+        You may add Your own copyright statement to Your modifications and
+        may provide additional or different license terms and conditions
+        for use, reproduction, or distribution of Your modifications, or
+        for any such Derivative Works as a whole, provided Your use,
+        reproduction, and distribution of the Work otherwise complies with
+        the conditions stated in this License.
+    
+    5. Submission of Contributions. Unless You explicitly state otherwise,
+        any Contribution intentionally submitted for inclusion in the Work
+        by You to the Licensor shall be under the terms and conditions of
+        this License, without any additional terms or conditions.
+        Notwithstanding the above, nothing herein shall supersede or modify
+        the terms of any separate license agreement you may have executed
+        with Licensor regarding such Contributions.
+    
+    6. Trademarks. This License does not grant permission to use the trade
+        names, trademarks, service marks, or product names of the Licensor,
+        except as required for reasonable and customary use in describing the
+        origin of the Work and reproducing the content of the NOTICE file.
+    
+    7. Disclaimer of Warranty. Unless required by applicable law or
+        agreed to in writing, Licensor provides the Work (and each
+        Contributor provides its Contributions) on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+        implied, including, without limitation, any warranties or conditions
+        of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+        PARTICULAR PURPOSE. You are solely responsible for determining the
+        appropriateness of using or redistributing the Work and assume any
+        risks associated with Your exercise of permissions under this License.
+    
+    8. Limitation of Liability. In no event and under no legal theory,
+        whether in tort (including negligence), contract, or otherwise,
+        unless required by applicable law (such as deliberate and grossly
+        negligent acts) or agreed to in writing, shall any Contributor be
+        liable to You for damages, including any direct, indirect, special,
+        incidental, or consequential damages of any character arising as a
+        result of this License or out of the use or inability to use the
+        Work (including but not limited to damages for loss of goodwill,
+        work stoppage, computer failure or malfunction, or any and all
+        other commercial damages or losses), even if such Contributor
+        has been advised of the possibility of such damages.
+    
+    9. Accepting Warranty or Additional Liability. While redistributing
+        the Work or Derivative Works thereof, You may choose to offer,
+        and charge a fee for, acceptance of support, warranty, indemnity,
+        or other liability obligations and/or rights consistent with this
+        License. However, in accepting such obligations, You may act only
+        on Your own behalf and on Your sole responsibility, not on behalf
+        of any other Contributor, and only if You agree to indemnify,
+        defend, and hold each Contributor harmless for any liability
+        incurred by, or claims asserted against, such Contributor by reason
+        of your accepting any such warranty or additional liability.
+    
+    END OF TERMS AND CONDITIONS
+    
+    APPENDIX: How to apply the Apache License to your work.
+    
+        To apply the Apache License to your work, attach the following
+        boilerplate notice, with the fields enclosed by brackets "[]"
+        replaced with your own identifying information. (Don't include
+        the brackets!)  The text should be enclosed in the appropriate
+        comment syntax for the file format. We also recommend that a
+        file or class name and description of purpose be included on the
+        same "printed page" as the copyright notice for easier
+        identification within third-party archives.
+    
+    Copyright [yyyy] [name of copyright owner]
+    
+    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.
\ No newline at end of file

Added: juddi/cms-site/trunk/content/project-summary.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/project-summary.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/project-summary.mdtext (added)
+++ juddi/cms-site/trunk/content/project-summary.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,22 @@
+# Project Summary
+
+## Project Information
+
+|Field	|Value |
+|Name	|jUDDI_v3 |Parent|
+|Description	|jUDDI (pronounced "Judy") is an open source Java implementation of the Universal Description, Discovery, and Integration (UDDI) specification for Web Services.|
+|Homepage	|http://juddi.apache.org/|
+
+##Project Organization
+
+|Field	|Value|
+|Name	|The Apache Software Foundation|
+|URL	|http://www.apache.org/|
+
+## Build Information
+
+|Field	|Value|
+|GroupId	|org.apache.juddi|
+|ArtifactId	|juddi-parent|
+|Version	|3.1.5|
+|Type	|pom|

Modified: juddi/cms-site/trunk/content/releases.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/releases.mdtext?rev=1554715&r1=1554714&r2=1554715&view=diff
==============================================================================
--- juddi/cms-site/trunk/content/releases.mdtext (original)
+++ juddi/cms-site/trunk/content/releases.mdtext Thu Jan  2 01:28:28 2014
@@ -1,4 +1,5 @@
 # Official Releases
+
 | Name  | Date  | Description  |
 |---|---|---|
 | 3.1.5  | May 20, 2013  | Stable 3.1.5 Release  |

Added: juddi/cms-site/trunk/content/team-list.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/team-list.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/team-list.mdtext (added)
+++ juddi/cms-site/trunk/content/team-list.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,26 @@
+# The Team
+
+A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.
+
+The team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.
+
+# Members
+
+The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.
+
+|Id	|Name	|Email	|URL	|Organization|
+|kstam	|Kurt Stam	|kstam AT apache.org	|-	|ASF|
+|jfaath	|Jeffrey Faath	|jfaath AT apache.org	|http://www.esigma.com	|ESigma|
+|tcunning	|Tom Cunningham	|tcunning AT apache.org	|http://www.jboss.org/jbossesb	|JBoss/Red Hat|
+|sviens	|Steve Viens	|steve AT viens.net	|http://www.viens.net	|ASF|
+|anil	|Anil Saldhana	|anil AT apache.org	|http://www.jboss.org	|JBoss/Red Hat|
+|djencks	|David Jencks	|djencks AT apache.org	|http://www.apache.org	|ASF|
+|alex	|Alex O'Ree	|alexoree AT apache.org	|http://www.apache.org	|ASF|
+
+# Contributors
+
+The following additional people have contributed to this project through the way of suggestions, patches or documentation.
+
+|Name	|URL	|Organization|
+|Ken Wilson	|http://www.dynamicsitedesign.com	|Dynamic Site Design|
+|Jeremi Thebeau	|http://www.xceptance.com	|Xceptance Software Technologies|

Added: juddi/cms-site/trunk/content/thanks.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/thanks.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/thanks.mdtext (added)
+++ juddi/cms-site/trunk/content/thanks.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,16 @@
+# Donated Software Licenses
+
+The jUDDI Project uses a few commercial products in the development process. We are grateful for the community licenses which were provided to the project at no costs.
+
+# JIRA
+
+Bug and issue tracker [http://www.atlassian.com/software/jira/](Jira by Atlassion.)
+
+# JProfiler
+
+Java profiler [JProfiler by ej-technologies.](http://www.ej-technologies.com/products/jprofiler/overview.html)
+
+# XLT
+
+Xceptance LoadTest (XLT) for both regression as well as load tests by [Global Quality Partners, LLC](http://www.gqpartners.com/) and [Xceptance Software Technologies, Inc](http://www.xceptance.com/). Load and performance tests were created and executed by our sponsors using Xceptance LoadTest (XLT) from Xceptance Software Technologies, Inc., of which Global Quality Partners, LLC is the exclusive North American distributor. To enable the Apache jUDDI project to continue and extend these tests, Xceptance has provided an unlimited XLT license and donated the source code of the test suite to the Apache jUDDI project. XLT is built and scripted in pure Java, providing a highly scalable and easily adaptable technology that can be used across development, quality assurance, and consulting teams.
+Copyright © 2004-2013 The Apache Software Foun
\ No newline at end of file

Added: juddi/cms-site/trunk/content/who.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/who.mdtext?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/who.mdtext (added)
+++ juddi/cms-site/trunk/content/who.mdtext Thu Jan  2 01:28:28 2014
@@ -0,0 +1,6 @@
+# Who We Are
+
+The jUDDI Project operates on a meritocracy: the more you do, the more responsibility you will obtain. This page lists all of the people who have gone the extra mile and are Committers. If you would like to get involved, the first step is to join the mailing lists.
+
+We ask that you please do not send us emails privately asking for support. We are non-paid volunteers who help out with the project and we do not necessarily have the time or energy to help people on an individual basis. Instead, we have setup mailing lists which often contain hundreds of individuals who will help answer detailed requests for help. The benefit of using mailing lists over private communication is that it is a shared resource where others can also learn from common mistakes and as a community we all grow together.
+

Modified: juddi/cms-site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/lib/path.pm?rev=1554715&r1=1554714&r2=1554715&view=diff
==============================================================================
--- juddi/cms-site/trunk/lib/path.pm (original)
+++ juddi/cms-site/trunk/lib/path.pm Thu Jan  2 01:28:28 2014
@@ -4,8 +4,9 @@ use ASF::Value;
 # taken from django's url.py
 
 our @patterns = (
-	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
 	[qr!\index.mdtext$!, skeletonHome => { template => "skeletonHome.html" }],
+	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
+	
 
 #	[qr!^/stanbol/sitemap\.html$!, sitemap => { headers => { title => "Stanbol Sitemap" }} ],
 

Added: juddi/cms-site/trunk/templates/navbar.html
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/templates/navbar.html?rev=1554715&view=auto
==============================================================================
--- juddi/cms-site/trunk/templates/navbar.html (added)
+++ juddi/cms-site/trunk/templates/navbar.html Thu Jan  2 01:28:28 2014
@@ -0,0 +1,33 @@
+			<div class="span2" id="verticalNavBar">
+				<ul class="nav nav-list">
+					<li><a href="#">Welcome</li>
+					<li class="nav-header">Downloads</li>
+						<li><a href="releases.html">Releases</a></li>
+						<li><a href="source.html">Source Code</a></li>
+					<li class="nav-header"><a href="participation.html">Participation</a></li>
+					<li class="nav-header">Documentation</li>
+						<li><a href="docs.html">jUDDI Docs</a></li>
+						<li><a href="http://wiki.apache.org/juddi/">Wiki</a></li>
+						<li><a href="library.html">UDDI Library</a></li>
+						<li><a href="#">Javadocs v2</a></li>
+						<li><a href="#">Javadocs v3</a></li>
+						<li><a href="#">XRef v3</a></li>
+					<li class="nav-header">Project Information</li>
+						<li><a href="project-info.html">Project Information</a></li>
+						<li><a href="mailing-list.html">Mailing Lists & IRC</a></li>
+						<li><a href="http://apachejuddi.blogspot.com/">jUDDI Blog</a></li>
+						<li><a href="http://issues.apache.org/jira/browse/JUDDI">Issue Tracking</a></li>
+						<li><a href="dependencies.html">Dependencies</a></li>
+						<li><a href="team-list.html">Project Team</a></li>
+						<li><a href="project-summary.html">Project Summary</a></li>
+					<li class="nav-header">Subprojects</li>
+						<li><a href="http://projects.apache.org/projects/scout.html">Apache Scout</a></li>
+					<li class="nav-header">Misc</li>
+						<li><a href="#">Who We Are</a></li>
+						<li><a href="#">Committer Notes</a></li>
+						<li><a href="#">Sponsors</a></li>
+						<li><a href="#">Legal</a></li>
+						<li><a href="#">License</a></li>
+				</ul>
+			</div>
+			
\ No newline at end of file

Modified: juddi/cms-site/trunk/templates/skeleton.html
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/templates/skeleton.html?rev=1554715&r1=1554714&r2=1554715&view=diff
==============================================================================
--- juddi/cms-site/trunk/templates/skeleton.html (original)
+++ juddi/cms-site/trunk/templates/skeleton.html Thu Jan  2 01:28:28 2014
@@ -118,38 +118,7 @@
 		</div>
 		 
 		<div class="row">
-			<div class="span2" id="verticalNavBar">
-				<ul class="nav nav-list">
-					<li><a href="#">Welcome</li>
-					<li class="nav-header">Downloads</li>
-						<li><a href="#">Releases</a></li>
-						<li><a href="#">Source Code</a></li>
-					<li class="nav-header">Participation</li>
-					<li class="nav-header">Documentation</li>
-						<li><a href="#">jUDDI Docs</a></li>
-						<li><a href="#">Wiki</a></li>
-						<li><a href="#">UDDI Library</a></li>
-						<li><a href="#">Javadocs v2</a></li>
-						<li><a href="#">Javadocs v3</a></li>
-						<li><a href="#">XRef v3</a></li>
-					<li class="nav-header">Project Information</li>
-						<li><a href="#">Project Information</a></li>
-						<li><a href="#">Mailing Lists & IRC</a></li>
-						<li><a href="#">jUDDI Blog</a></li>
-						<li><a href="#">Issue Tracking</a></li>
-						<li><a href="#">Dependencies</a></li>
-						<li><a href="#">Project Team</a></li>
-						<li><a href="#">Project Summary</a></li>
-					<li class="nav-header">Subprojects</li>
-						<li><a href="#">Apache Scout</a></li>
-					<li class="nav-header">Misc</li>
-						<li><a href="#">Who We Are</a></li>
-						<li><a href="#">Committer Notes</a></li>
-						<li><a href="#">Sponsors</a></li>
-						<li><a href="#">Legal</a></li>
-						<li><a href="#">License</a></li>
-				</ul>
-			</div>
+			{% extends "navbar.html" %}
 			<div class="span10" >
 		{% block content %}{{ content|markdown }}{% endblock %}
 			</div>

Modified: juddi/cms-site/trunk/templates/skeletonHome.html
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/templates/skeletonHome.html?rev=1554715&r1=1554714&r2=1554715&view=diff
==============================================================================
--- juddi/cms-site/trunk/templates/skeletonHome.html (original)
+++ juddi/cms-site/trunk/templates/skeletonHome.html Thu Jan  2 01:28:28 2014
@@ -118,39 +118,10 @@
 			</div>
 		</div>
 		 
+		 
+
 		<div class="row">
-			<div class="span2" id="verticalNavBar">
-				<ul class="nav nav-list">
-					<li><a href="#">Welcome</li>
-					<li class="nav-header">Downloads</li>
-						<li><a href="#">Releases</a></li>
-						<li><a href="#">Source Code</a></li>
-					<li class="nav-header">Participation</li>
-					<li class="nav-header">Documentation</li>
-						<li><a href="#">jUDDI Docs</a></li>
-						<li><a href="#">Wiki</a></li>
-						<li><a href="#">UDDI Library</a></li>
-						<li><a href="#">Javadocs v2</a></li>
-						<li><a href="#">Javadocs v3</a></li>
-						<li><a href="#">XRef v3</a></li>
-					<li class="nav-header">Project Information</li>
-						<li><a href="#">Project Information</a></li>
-						<li><a href="#">Mailing Lists & IRC</a></li>
-						<li><a href="#">jUDDI Blog</a></li>
-						<li><a href="#">Issue Tracking</a></li>
-						<li><a href="#">Dependencies</a></li>
-						<li><a href="#">Project Team</a></li>
-						<li><a href="#">Project Summary</a></li>
-					<li class="nav-header">Subprojects</li>
-						<li><a href="#">Apache Scout</a></li>
-					<li class="nav-header">Misc</li>
-						<li><a href="#">Who We Are</a></li>
-						<li><a href="#">Committer Notes</a></li>
-						<li><a href="#">Sponsors</a></li>
-						<li><a href="#">Legal</a></li>
-						<li><a href="#">License</a></li>
-				</ul>
-			</div>
+			{% extends "navbar.html" %}
 			<div class="span10" >
 			{% block title %}{{ headers.title }}{% endblock %}
 		{% block content %}{{ content|markdown }}{% endblock %}



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@juddi.apache.org
For additional commands, e-mail: commits-help@juddi.apache.org