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 01:41:28 UTC

svn commit: r1554713 - in /juddi/cms-site/trunk: content/participation.mdtext content/releases.mdtext content/source.mdtext lib/path.pm templates/sidenav.mdtext templates/skeleton.html templates/skeletonHome.html

Author: alexoree
Date: Thu Jan  2 00:41:27 2014
New Revision: 1554713

URL: http://svn.apache.org/r1554713
Log:
JUDDI-750 adding some content

Added:
    juddi/cms-site/trunk/content/participation.mdtext
    juddi/cms-site/trunk/content/releases.mdtext
    juddi/cms-site/trunk/content/source.mdtext
    juddi/cms-site/trunk/templates/skeletonHome.html
Removed:
    juddi/cms-site/trunk/templates/sidenav.mdtext
Modified:
    juddi/cms-site/trunk/lib/path.pm
    juddi/cms-site/trunk/templates/skeleton.html

Added: juddi/cms-site/trunk/content/participation.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/participation.mdtext?rev=1554713&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/participation.mdtext (added)
+++ juddi/cms-site/trunk/content/participation.mdtext Thu Jan  2 00:41:27 2014
@@ -0,0 +1,38 @@
+# Introduction
+
+Every volunteer project obtains its strength from the people involved in it. We invite you to participate as much or as little as you choose. The roles and responsibilities that people can assume in the project are based on merit. Everybody's input matters!
+
+There are a variety of ways to participate. Regardless of how you choose to participate, we suggest you join some or all of our mailing lists.
+
+# Use the Products & Give Us Feedback
+
+Using the products,reporting bugs, making feature requests, etc. is by far the most important role. It's your feedback that allows the technology to evolve.
+
+ - Join Mailing Lists
+ - [Download Binary Builds](releases.html)
+ - [Report Bugs & Request New Features](https://issues.apache.org/jira/browse/JUDDI)
+
+# Contribute Code or Documentation Patches
+
+In this role, you participate in the actual development of the code. If this is the type of role you'd like to play, here are some steps (in addition to the ones above) to get you started:
+
+ - Read Mailing List Guidelines
+ - Review Reference Library
+ - [Download the Source Code](source.html)
+ - [Access SVN Repository](source.html)
+ 
+Any and all new development or bug fixing uses the latest code base. If you have a patch, it should be submitted against the latest available code.
+
+# Getting Support on the Lists
+
+We do all development and bug fixing on the latest available code base. If you've encountered what you think is a bug, please first check the [issues database](https://issues.apache.org/jira/browse/JUDDI) for known issues. If you can't find your bug, make sure you're using the latest code base. We are not able to fix bugs on earlier code bases.
+
+Please include any relevant version information and the error message text, if there is one. If you have a problem with a specific interface, like find_business, you'll likely be asked to post a log of the SOAP message exchanges between your client and the jUDDI server. You can use the [Apache TCPMon](http://ws.apache.org/tcpmon/) tool to capture these messages.
+
+Remember, Apache helps those that help themselves. Please take a look at Eric S. Raymond's and Rick Moen's explanation of [How to Ask Questions The Smart Way](http://www.catb.org/~esr/faqs/smart-questions.html).
+
+# jUDDI Wiki
+
+Like other Apache projects, jUDDI maintains a wiki, a sort of virtual meeting place for the jUDDI community. This is a resource available to everyone, and you are encouraged to contribute. This is a good resource for 'HowTos' for common configuration issues.
+
+ - [http://wiki.apache.org/juddi](http://wiki.apache.org/juddi)
\ No newline at end of file

Added: juddi/cms-site/trunk/content/releases.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/releases.mdtext?rev=1554713&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/releases.mdtext (added)
+++ juddi/cms-site/trunk/content/releases.mdtext Thu Jan  2 00:41:27 2014
@@ -0,0 +1,5 @@
+# Official Releases
+| Name  | Date  | Description  |
+|---|---|---|
+| 3.1.5  | May 20, 2013  | Stable 3.1.5 Release  |
+| Older releases  |   | Archived Releases  |
\ No newline at end of file

Added: juddi/cms-site/trunk/content/source.mdtext
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/content/source.mdtext?rev=1554713&view=auto
==============================================================================
--- juddi/cms-site/trunk/content/source.mdtext (added)
+++ juddi/cms-site/trunk/content/source.mdtext Thu Jan  2 00:41:27 2014
@@ -0,0 +1,42 @@
+# Overview
+
+This project uses Subversion to manage its source code. Instructions on Subversion use can be found at http://svnbook.red-bean.com/.
+Web Access
+
+The following is a link to the online source repository.
+
+    http://svn.apache.org/viewcvs.cgi/juddi/tags/juddi-3.1.3
+	
+## Anonymous access
+
+The source can be checked out anonymously from SVN with this command:
+
+    $ svn checkout http://svn.apache.org/repos/asf/juddi/tags/juddi-3.1.3 juddi-parent
+	
+## Developer access
+
+Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.
+
+    $ svn checkout https://svn.apache.org/repos/asf/juddi/tags/juddi-3.1.3 juddi-parent
+	
+To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)
+
+    $ svn commit --username your-username -m "A message"
+	
+## Access from behind a firewall
+
+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 the developer connection:
+
+    $ svn checkout https://svn.apache.org/repos/asf/juddi/tags/juddi-3.1.3 juddi-parent
+	
+## Access through a proxy
+
+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 file's 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

Modified: juddi/cms-site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/lib/path.pm?rev=1554713&r1=1554712&r2=1554713&view=diff
==============================================================================
--- juddi/cms-site/trunk/lib/path.pm (original)
+++ juddi/cms-site/trunk/lib/path.pm Thu Jan  2 00:41:27 2014
@@ -5,6 +5,7 @@ use ASF::Value;
 
 our @patterns = (
 	[qr!\.mdtext$!, single_narrative => { template => "single_narrative.html" }],
+	[qr!\index.mdtext$!, skeletonHome => { template => "skeletonHome.html" }],
 
 #	[qr!^/stanbol/sitemap\.html$!, sitemap => { headers => { title => "Stanbol Sitemap" }} ],
 

Modified: juddi/cms-site/trunk/templates/skeleton.html
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/templates/skeleton.html?rev=1554713&r1=1554712&r2=1554713&view=diff
==============================================================================
--- juddi/cms-site/trunk/templates/skeleton.html (original)
+++ juddi/cms-site/trunk/templates/skeleton.html Thu Jan  2 00:41:27 2014
@@ -89,6 +89,7 @@
                                         <li><a href="http://juddi.apache.org/docs.html" >API Docs</a></li>
                                         <li><a href="http://wiki.apache.org/juddi" >Wiki</a></li>
                                         <li><a href="http://juddi.apache.org/issue-tracking.html" >Issue Tracking</a></li>
+										<li><a href="http://www.nabble.com/jUDDI-f218.html" >IRC</a></li>
                                         
                                         <li><a href="http://www.nabble.com/jUDDI-f218.html" >Mailing List Archive</a></li>
                                         <li><a href="http://svn.apache.org/viewvc/juddi/" >Source Code</a></li>
@@ -110,9 +111,8 @@
 	<div class="container">
 		<div class="row">
 			<div class="span12" >
-				<div class="hero-unit">
-					<h1>jUDDI</h1>
-					<p>An open source implementation of OASIS's UDDI v3 specification</p>
+				<div class="well">
+					<h1>{% block title %}{{ headers.title }}{% endblock %}</h1>
 				</div>
 			</div>
 		</div>
@@ -134,7 +134,7 @@
 						<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</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>
@@ -151,7 +151,6 @@
 				</ul>
 			</div>
 			<div class="span10" >
-			{% block title %}{{ headers.title }}{% endblock %}
 		{% block content %}{{ content|markdown }}{% endblock %}
 			</div>
 		</div>
@@ -165,7 +164,7 @@
      padding: 0px 0px 0px 0px; bottom: 0px; margin: 0px 0px 0px 0px; width:100%; text-align: center; position: fixed; 
      background-color: white; 
      "><center><footer><a href="http://www.apache.org">
-	  Copyright &copy; 2014 The Apache Software Foundation, Licensed under 
+	  Copyright &copy; 2014 The Apache Software Foundation</a>, Licensed under 
         the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
         Apache and the Apache feather logo are trademarks of The Apache Software Foundation.
 	 

Added: juddi/cms-site/trunk/templates/skeletonHome.html
URL: http://svn.apache.org/viewvc/juddi/cms-site/trunk/templates/skeletonHome.html?rev=1554713&view=auto
==============================================================================
--- juddi/cms-site/trunk/templates/skeletonHome.html (added)
+++ juddi/cms-site/trunk/templates/skeletonHome.html Thu Jan  2 00:41:27 2014
@@ -0,0 +1,178 @@
+<!DOCTYPE html>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE- 2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<html lang="en" dir="LTR">
+    <head>
+        <meta charset="utf-8">
+        <title>Apache jUDDI{% block title %}{{ headers.title }}{% endblock %}</title>
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <meta name="description" content="jUDDI (pronounced Judy) is an open source Java implementation of the Universal Description, Discovery, and Integration (UDDI v3) specification for (Web) Services.">
+        <meta name="author" content="Apache Software Foundation">
+
+        <link href="css/bootstrap.min.css" rel="stylesheet">
+        <link rel="stylesheet" href="css/font-awesome.min.css">
+        <link rel="stylesheet" href="css/ui-lightness/jquery-ui-1.10.2.custom.min.css">
+        <!--[if IE 7]>
+        <link rel="stylesheet" href="css/font-awesome-ie7.min.css">
+        <![endif]-->
+
+        <link rel="shortcut icon" href="favicon.ico" />
+        <style type="text/css">
+            body {
+                padding-top: 60px;
+                padding-bottom: 40px;
+            }
+        </style>
+        <link href="css/bootstrap-responsive.min.css" rel="stylesheet">
+        <link href="css/bootstrap-modal.css" rel="stylesheet">
+
+        <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
+        <!--[if lt IE 9]>
+          <script src="js/html5shiv.js"></script>
+        <![endif]-->
+
+        <!-- Fav and touch icons -->
+
+        <link rel="shortcut icon" href="ico/favicon.png">
+		<script src="js/jquery-1.9.1.js"></script>
+        <script src="js/bootstrap.min.js"></script>
+        <script src="js/bootstrap-datetimepicker.min.js"></script>
+        <script src="js/bootstrap-timepicker.min.js"></script>
+        <script src="js/bootstrap-modalmanager.js"></script>
+        <script src="js/bootstrap-modal.js"></script>
+        <script src="js/jquery-ui-1.10.2.custom.min.js"></script>
+        <script type="javascript">
+		
+		</script>
+    </head>
+
+    <body>
+            <div class="alert" style="display:none; position: fixed; top:45px; width:80%; left: 10%; z-index: 1000; opacity: 1.0; background-color: #FFD530; color:black " id="resultBar">
+            </div>
+
+            <div class="navbar navbar-inverse navbar-fixed-top">
+                <div class="navbar-inner">
+                    <div class="container">
+                        <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
+                            <span class="icon-bar"></span>
+                            <span class="icon-bar"></span>
+                            <span class="icon-bar"></span>
+                        </button>
+                        <a class="brand" href="home.jsp" style="padding-left:19px; padding-top:0px; padding-bottom:0px"><img src="img/logo2.png"></a>
+                        <div class="nav-collapse collapse">
+                            <ul class="nav">
+                                <li class="dropdown"><a href="home.jsp" data-toggle="dropdown" class="dropdowb-town"><i class="icon-home icon-large"></i>Home
+                                </a></li>
+                                <li class="dropdown" ><a href="#" data-toggle="dropdown" class="dropdowb-town"><i class="icon-search icon-large"></i>Downloads
+                                </a></li>
+
+                                <li class="dropdown"><a href="#" data-toggle="dropdown" class="dropdowb-town"><i class="icon-question-sign icon-large"></i>Help <b class="caret"></b></a>
+                                    <ul class="dropdown-menu">
+                                        <li><a href="http://juddi.apache.org/docs/3.x/userguide/html/index.html" >User Guide</a></li>
+                                        <li><a href="http://juddi.apache.org/docs/3.x/devguide/html/index.html" >Dev Guide</a></li>
+                                        <li><a href="http://juddi.apache.org/docs.html" >API Docs</a></li>
+                                        <li><a href="http://wiki.apache.org/juddi" >Wiki</a></li>
+                                        <li><a href="http://juddi.apache.org/issue-tracking.html" >Issue Tracking</a></li>
+										<li><a href="http://www.nabble.com/jUDDI-f218.html" >IRC</a></li>
+                                        
+                                        <li><a href="http://www.nabble.com/jUDDI-f218.html" >Mailing List Archive</a></li>
+                                        <li><a href="http://svn.apache.org/viewvc/juddi/" >Source Code</a></li>
+
+                                    </ul>
+                                </li>
+                            </ul>
+                            <div id="loginfield">
+                                <!-- top right of the page -->
+                            </div>
+                        </div><!--/.nav-collapse -->
+                    </div>
+                </div>
+            </div>
+
+
+<!-- main content does here -->
+<div id="content">
+	<div class="container">
+		<div class="row">
+			<div class="span12" >
+				<div class="hero-unit">
+					<h1>jUDDI</h1>
+					<p>An open source implementation of OASIS's UDDI v3 specification</p>
+				</div>
+			</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>
+			<div class="span10" >
+			{% block title %}{{ headers.title }}{% endblock %}
+		{% block content %}{{ content|markdown }}{% endblock %}
+			</div>
+		</div>
+	</div>
+</div>
+  
+
+
+</div> 
+<div style="
+     padding: 0px 0px 0px 0px; bottom: 0px; margin: 0px 0px 0px 0px; width:100%; text-align: center; position: fixed; 
+     background-color: white; 
+     "><center><footer><a href="http://www.apache.org">
+	  Copyright &copy; 2014 The Apache Software Foundation</a>, Licensed under 
+        the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
+        Apache and the Apache feather logo are trademarks of The Apache Software Foundation.
+	 
+	 </a</footer></center></div>
+</body>
+</html>
+
+
+



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