You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by je...@apache.org on 2011/03/21 12:36:06 UTC

svn commit: r1083741 - in /chemistry/site/trunk: content/java/ content/java/developing/ content/java/examples/ content/java/how-to/ templates/

Author: jens
Date: Mon Mar 21 11:36:05 2011
New Revision: 1083741

URL: http://svn.apache.org/viewvc?rev=1083741&view=rev
Log:
some renamings

Added:
    chemistry/site/trunk/content/java/developing/index.mdtext
    chemistry/site/trunk/content/java/examples/index.mdtext
    chemistry/site/trunk/content/java/how-to/index.mdtext
    chemistry/site/trunk/content/java/opencmis.mdtext
Removed:
    chemistry/site/trunk/content/java/developing/dev-index.mdtext
    chemistry/site/trunk/content/java/examples/example-index.mdtext
    chemistry/site/trunk/content/java/how-to/how-to-index.mdtext
    chemistry/site/trunk/content/java/overview.mdtext
Modified:
    chemistry/site/trunk/templates/navigation_bar.html

Added: chemistry/site/trunk/content/java/developing/index.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/developing/index.mdtext?rev=1083741&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/developing/index.mdtext (added)
+++ chemistry/site/trunk/content/java/developing/index.mdtext Mon Mar 21 11:36:05 2011
@@ -0,0 +1,40 @@
+Title: Debugging OpenCMIS
+
+# Developing with OpenCMIS
+
+General guidelines you should know when developing with OpenCMIS
+
+* Developing using the client APIs
+	* [Overview](client/dev-client-overview.html)
+	* [Client API](client/dev-client-api.html)
+	* [Client Bindings](client/dev-client-bindings.html)
+* Repositories delivered with OpenCMIS
+	* [Fileshare](repositories/dev-repositories-fileshare.html)
+	* [In-Memory](repositories/dev-repositories-inmemory.html)
+	* [JCR-Bridge](repositories/dev-repositories-jcr.html)
+* Tools in OpenCMIS
+	* [CMIS-Browser](tools/dev-tools-browser.html)
+	* [CMIS-Workbench](tools/dev-tools-workbench.html)
+
+## Common topics
+
+* [Logging in OpenCMIS](dev-logging.html)
+* [Modules in OpenCMIS](dev-modules.html)
+* [Using Eclipse with OpenCMIS](dev-eclipse.html)
+* [URL Syntax in AtomPub](dev-url.html)
+
+## Developing clients
+
+* [Comparing the client APIs](dev-compare-client-api-binding.html)
+* [Developing with maven](dev-use-with-maven.html)
+* [Developing without maven](dev-use-without-maven.html)
+* [Known issues with existing repositories](dev-known-repo-issues.html)
+* [Session Parameters](dev-session-parameters.html)
+* [The client cache](dev-client-cache.html)
+* [Understanding the OperationContext](dev-operation-context.html)
+
+## Developing servers
+
+* [Debugging Tips](dev-debug.html)
+* [Differences between the CMIS server bindings](dev-binding-differences.html)
+* [Implementing a server](dev-server.html)

Added: chemistry/site/trunk/content/java/examples/index.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/examples/index.mdtext?rev=1083741&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/examples/index.mdtext (added)
+++ chemistry/site/trunk/content/java/examples/index.mdtext Mon Mar 21 11:36:05 2011
@@ -0,0 +1,18 @@
+Title: Debugging OpenCMIS
+
+# Examples for OpenCMIS Clients
+
+Example code and code fragments for the OpenCMIS client API
+
+* [Connecting from .Net](example-connect-dotnet.html)
+* [Creating a session](example-create-session.html)
+* [Create and update a document](example-create-update.html)
+* [Get extension](example-get-extension.html)
+* [Listing a folder](example-list-folder.html)
+* [Processing a query](example-process-query-results.html)
+* [Reading a file](example-read-file.html)
+* [Reading metadata and content](example-read-meta-content.html)
+* [Reading properties](example-read-props.html)
+* [Reading the root folder](example-read-root.html)
+* [Retrieving the id from path](example-get-id-from-path.html)
+* [Using OSGI bundles](example-osgi.html)

Added: chemistry/site/trunk/content/java/how-to/index.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/how-to/index.mdtext?rev=1083741&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/how-to/index.mdtext (added)
+++ chemistry/site/trunk/content/java/how-to/index.mdtext Mon Mar 21 11:36:05 2011
@@ -0,0 +1,22 @@
+Title: Debugging OpenCMIS
+
+# OpenCMIS How Tos
+
+Instructions how to perform frequently occuring tasks with OpenCMIS
+
+Common How to...
+
+* [Build OpenCMIS](how-to-build.html)
+
+Server How to...
+
+* [Add CMIS Extensions](how-to-add-extension.html)      
+* [Create a Server](how-to-create-server.html)
+* [Integrate with Spring](how-to-integrate-spring.html)   
+* [Process a Query](how-to-process-query.html)
+
+Client How to...
+
+* [Connect to a repository](how-to-connect.html)            
+* [Tune performance](how-to-tune-perfomance.html)
+

Added: chemistry/site/trunk/content/java/opencmis.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/opencmis.mdtext?rev=1083741&view=auto
==============================================================================
--- chemistry/site/trunk/content/java/opencmis.mdtext (added)
+++ chemistry/site/trunk/content/java/opencmis.mdtext Mon Mar 21 11:36:05 2011
@@ -0,0 +1,54 @@
+Title: OpenCMIS Overview
+
+# Welcome to OpenCMIS
+OpenCMIS is a collection of Java libraries, frameworks and tools around the 
+[CMIS (Content Management Interoperability Services)](http://docs.oasis-open.org/cmis/CMIS/v1.0/cmis-spec-v1.0.html)
+specification.
+
+The goal of OpenCMIS is to make CMIS simple for Java client and server
+developers. It hides the binding details and provides APIs and SPIs on
+different abstraction levels. It also includes test tools for content
+repository developers and client application developers.
+
+# Table of Contents for the documentation
+
+The OpenCMIS documentation is structured in the following sections:
+
+* [Developing with OpenCMIs](developing/dev-index.html)
+* [Downloads](download.html)
+* [Example Code](examples/example-index.html)
+* [OpenCMIS HowTos](how-to/how-to-index.html)
+
+# Getting OpenCMIS
+You can get opencmis from the [Download-Page](download.html)
+
+# Releases
+
+Currently the following opencmis releases exist:
+
+Release Version  | Date | Release Notes | Changelog
+---------------- | ---- | ------------- | ---------
+Release 0.3.0 (planned)  | coming soon | coming soon | coming soon
+Incubation Release 0.2.0 | Jan/21/2011 | [0.2.0](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310936&version=12315134) | [0.2.0](https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&jqlQuery=project+%3D+CMIS+AND+fixVersion+%3D+%220.2.0-incubating%22)
+Incubation Release 0.1.0 | Sep/17/2010 | [0.1.0](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310936&version=12315133) | [0.1.0](https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&jqlQuery=project+%3D+CMIS+AND+fixVersion+%3D+%220.1.0-incubating%22)
+
+# Projects using OpenCMIS
+## Client API
+<a name="ProjectsusingOpenCMIS-ProjectsusingOpenCMISClientAPI"></a>
+
+* **Spring Surf CMIS Application Browser** - [Howto](http://blogs.alfresco.com/wp/cmis/2010/06/14/spring-surf-and-opencmis-integration-part-2/) - [Source Code](https://anonsvn.springframework.org/svn/se-surf/branches/DEV_CMIS_2/)
+* **Confluence CMIS Plugin** - [Project Site](http://code.google.com/p/confluence-cmis-plugin/)
+* **CMIS Explorer w/Adobe AIR** - [Project Site](http://code.google.com/p/cmis-explorer/)
+* **CMIS connectivity for SAP Applications** on future SAP Netweaver release
+* **Struts2CmisExplorer** - [Project Site](http://code.google.com/p/struts2cmisexplorer/)
+* **CMIS Workbench** - [Project Site](developing/tools/dev-tools-workbench.html)
+* **Alfresco Web Quick Start** - [Developer Guide](http://wiki.alfresco.com/wiki/Web_Quick_Start_Developer_Guide)
+* **Nuxeo CMIS Shell**
+
+<a name="ProjectsusingOpenCMIS-ProjectsusingOpenCMISServerFramework"></a>
+## Server Framework
+
+* **Open Text Enterprise Library CMIS Connector** (AtomPub binding)
+* **OpenWGA CMIS Connectivity Plugin** - [About](http://www.openwga.com/blog/openwga/archives/2010-10/cmis_the_new_content_interoperability_kid_on_the_block.int.html)
+* **Alfresco CMIS Preview** - [Project Site](http://cmis.alfresco.com/preview)
+* **Nuxeo EP 5.4 CMIS Connector** - [Project Site](http://doc.nuxeo.com/display/NXDOC/CMIS+for+Nuxeo) - [Source Code](http://hg.nuxeo.org/addons/nuxeo-chemistry)

Modified: chemistry/site/trunk/templates/navigation_bar.html
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/templates/navigation_bar.html?rev=1083741&r1=1083740&r2=1083741&view=diff
==============================================================================
--- chemistry/site/trunk/templates/navigation_bar.html (original)
+++ chemistry/site/trunk/templates/navigation_bar.html Mon Mar 21 11:36:05 2011
@@ -27,11 +27,11 @@
 <H3><A name="Navigation-CMISforJava"></A>CMIS for Java</H3>
 
 <UL class="alternate" type="square">
-  <LI><A href="/java/overview.html" title="OpenCMIS Overview and Index">Overview</A></LI>
+  <LI><A href="/java/opencmis.html" title="OpenCMIS Overview and Index">Overview</A></LI>
   <LI><A href="/java/download.html" title="Downloads">Downloads</A></LI>
-  <LI><A href="/java/developing/dev-index.html" title="">Developing with OpenCMIS</A></LI>
-  <LI><A href="/java/examples/example-index.html" title="Example Code">Example Code</A></LI>
-  <LI><A href="/java/how-to/how-to-index.html" title="OpenCMIS HowTos">OpenCMIS HowTos</A></LI>
+  <LI><A href="/java/developing/index.html" title="">Developing with OpenCMIS</A></LI>
+  <LI><A href="/java/examples/index.html" title="Example Code">Example Code</A></LI>
+  <LI><A href="/java/how-to/index.html" title="OpenCMIS HowTos">OpenCMIS HowTos</A></LI>
   <LI><A href="http://incubator.apache.org/chemistry/javadoc/index.html" class="external-link" rel="nofollow">JavaDoc</A></LI>
   <LI><A href="https://svn.apache.org/repos/asf/chemistry/opencmis/trunk/" class="external-link" rel="nofollow">Source Code</A></LI>
 </UL>