You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by md...@apache.org on 2013/07/24 14:17:53 UTC

svn commit: r1506514 - in /jackrabbit/oak/trunk: doc/ oak-doc/ oak-doc/src/ oak-doc/src/site/ oak-doc/src/site/markdown/ oak-doc/src/site/resources/

Author: mduerig
Date: Wed Jul 24 12:17:52 2013
New Revision: 1506514

URL: http://svn.apache.org/r1506514
Log:
OAK-301: Document Oak
Initial framework for the Oak documentation

Added:
    jackrabbit/oak/trunk/oak-doc/
    jackrabbit/oak/trunk/oak-doc/pom.xml   (with props)
    jackrabbit/oak/trunk/oak-doc/src/
    jackrabbit/oak/trunk/oak-doc/src/site/
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/api.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/construct.md
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/construct.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/contributing.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/downloads.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/from_here.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/getting_started.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/index.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/info.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/jsop-diff.md
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/jsop-diff.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/license.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/microkernel.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/mongomk.md
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/mongomk.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/nodestate.md
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/nodestate.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/resources.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/segmentmk.md
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/segmentmk.md
    jackrabbit/oak/trunk/oak-doc/src/site/markdown/when_things_go_wrong.md
    jackrabbit/oak/trunk/oak-doc/src/site/resources/
    jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.png   (contents, props changed)
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/nodestate-r1.png
    jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.uxf
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/nodestate-r1.uxf
    jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.png   (contents, props changed)
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/nodestate-r2.png
    jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.uxf
      - copied, changed from r1506503, jackrabbit/oak/trunk/doc/nodestate-r2.uxf
    jackrabbit/oak/trunk/oak-doc/src/site/site.xml   (with props)
Removed:
    jackrabbit/oak/trunk/doc/construct.md
    jackrabbit/oak/trunk/doc/jsop-diff.md
    jackrabbit/oak/trunk/doc/mongomk.md
    jackrabbit/oak/trunk/doc/nodestate-r1.png
    jackrabbit/oak/trunk/doc/nodestate-r1.uxf
    jackrabbit/oak/trunk/doc/nodestate-r2.png
    jackrabbit/oak/trunk/doc/nodestate-r2.uxf
    jackrabbit/oak/trunk/doc/nodestate.md
    jackrabbit/oak/trunk/doc/segmentmk.md

Added: jackrabbit/oak/trunk/oak-doc/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/pom.xml?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-doc/pom.xml Wed Jul 24 12:17:52 2013
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+   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.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.9-SNAPSHOT</version>
+    <relativePath>../oak-parent/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>oak-doc</artifactId>
+  <name>Oak Documentation</name>
+  <packaging>jar</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.3</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.doxia</groupId>
+            <artifactId>doxia-module-markdown</artifactId>
+            <version>1.4</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Propchange: jackrabbit/oak/trunk/oak-doc/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/api.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/api.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/api.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/api.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Copied: jackrabbit/oak/trunk/oak-doc/src/site/markdown/construct.md (from r1506503, jackrabbit/oak/trunk/doc/construct.md)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/construct.md?p2=jackrabbit/oak/trunk/oak-doc/src/site/markdown/construct.md&p1=jackrabbit/oak/trunk/doc/construct.md&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/contributing.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/contributing.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/contributing.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/contributing.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/differences.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/dos_and_donts.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/downloads.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/downloads.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/downloads.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/downloads.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/from_here.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/from_here.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/from_here.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/from_here.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/getting_started.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/getting_started.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/getting_started.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/getting_started.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,20 @@
+<!--
+   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.
+  -->
+
+TODO
+
+[Repository construction](construct.html)
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/index.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/index.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/index.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/index.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/info.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/info.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/info.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/info.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Copied: jackrabbit/oak/trunk/oak-doc/src/site/markdown/jsop-diff.md (from r1506503, jackrabbit/oak/trunk/doc/jsop-diff.md)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/jsop-diff.md?p2=jackrabbit/oak/trunk/oak-doc/src/site/markdown/jsop-diff.md&p1=jackrabbit/oak/trunk/doc/jsop-diff.md&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/license.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/license.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/license.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/license.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,23 @@
+<!--
+   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.
+  -->
+
+# License
+Jackrabbit Oak and any of its parts are licensed according to the terms listed in the
+[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
+
+For further information regarding licensing of Apache Software refer to The Apache
+Software Foundation [licensing information](http://www.apache.org/licenses/).

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/microkernel.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/microkernel.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/microkernel.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/microkernel.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,22 @@
+<!--
+   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.
+  -->
+
+TODO
+
+[SegmentMK design overview](segmentmk.html)
+
+[Oak MongoMK](mongomk.html)
\ No newline at end of file

Copied: jackrabbit/oak/trunk/oak-doc/src/site/markdown/mongomk.md (from r1506503, jackrabbit/oak/trunk/doc/mongomk.md)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/mongomk.md?p2=jackrabbit/oak/trunk/oak-doc/src/site/markdown/mongomk.md&p1=jackrabbit/oak/trunk/doc/mongomk.md&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
--- jackrabbit/oak/trunk/doc/mongomk.md (original)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/mongomk.md Wed Jul 24 12:17:52 2013
@@ -1,3 +1,20 @@
+<!--
+   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.
+  -->
+
 Oak MongoMK
 ===========
 

Copied: jackrabbit/oak/trunk/oak-doc/src/site/markdown/nodestate.md (from r1506503, jackrabbit/oak/trunk/doc/nodestate.md)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/nodestate.md?p2=jackrabbit/oak/trunk/oak-doc/src/site/markdown/nodestate.md&p1=jackrabbit/oak/trunk/doc/nodestate.md&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/resources.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/resources.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/resources.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/resources.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Copied: jackrabbit/oak/trunk/oak-doc/src/site/markdown/segmentmk.md (from r1506503, jackrabbit/oak/trunk/doc/segmentmk.md)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/segmentmk.md?p2=jackrabbit/oak/trunk/oak-doc/src/site/markdown/segmentmk.md&p1=jackrabbit/oak/trunk/doc/segmentmk.md&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Added: jackrabbit/oak/trunk/oak-doc/src/site/markdown/when_things_go_wrong.md
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/markdown/when_things_go_wrong.md?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/markdown/when_things_go_wrong.md (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/markdown/when_things_go_wrong.md Wed Jul 24 12:17:52 2013
@@ -0,0 +1,18 @@
+<!--
+   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.
+  -->
+
+TODO
\ No newline at end of file

Copied: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.png (from r1506503, jackrabbit/oak/trunk/doc/nodestate-r1.png)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.png?p2=jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.png&p1=jackrabbit/oak/trunk/doc/nodestate-r1.png&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
Binary files - no diff available.

Propchange: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Copied: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.uxf (from r1506503, jackrabbit/oak/trunk/doc/nodestate-r1.uxf)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.uxf?p2=jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r1.uxf&p1=jackrabbit/oak/trunk/doc/nodestate-r1.uxf&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Copied: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.png (from r1506503, jackrabbit/oak/trunk/doc/nodestate-r2.png)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.png?p2=jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.png&p1=jackrabbit/oak/trunk/doc/nodestate-r2.png&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
Binary files - no diff available.

Propchange: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Copied: jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.uxf (from r1506503, jackrabbit/oak/trunk/doc/nodestate-r2.uxf)
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.uxf?p2=jackrabbit/oak/trunk/oak-doc/src/site/resources/nodestate-r2.uxf&p1=jackrabbit/oak/trunk/doc/nodestate-r2.uxf&r1=1506503&r2=1506514&rev=1506514&view=diff
==============================================================================
    (empty)

Added: jackrabbit/oak/trunk/oak-doc/src/site/site.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-doc/src/site/site.xml?rev=1506514&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-doc/src/site/site.xml (added)
+++ jackrabbit/oak/trunk/oak-doc/src/site/site.xml Wed Jul 24 12:17:52 2013
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/DECORATION/1.3.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd"
+         name="Jackrabbit Oak">
+  <body>
+    <menu name="Overview">
+      <item href="index.html" name="Jackrabbit Oak" />
+      <item href="info.html" name="Project info" />
+      <item href="license.html" name="License" />
+      <item href="downloads.html" name="Downloads" />
+      <item href="from_here.html" name="From here" />
+    </menu>
+    <menu name="Architecture">
+      <item href="nodestate.html" name="Understanding the node state model" />
+      <item href="microkernel.html" name="Microkernel" />
+    </menu>
+    <menu name="Using Oak">
+      <item href="getting_started.html" name="Getting Started" />
+      <item href="differences.html" name="Differences to Jackrabbit 2" />
+      <item href="dos_and_donts.html" name="Dos and don'ts" />
+      <item href="when_things_go_wrong.html" name="When things go wrong" />
+    </menu>
+    <menu name="Developing Oak">
+      <item href="resources.html" name="Resources" />
+      <item href="contributing.html" name="Contributing" />
+      <item href="api.html" name="API docs" />
+    </menu>
+    <menu name="Links">
+    </menu>
+  </body>
+
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-fluido-skin</artifactId>
+    <version>1.3.0</version>
+  </skin>
+
+  <custom>
+    <fluidoSkin>
+      <sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
+      <gitHub>
+        <projectId>apache/jackrabbit-oak</projectId>
+        <ribbonOrientation>right</ribbonOrientation>
+      </gitHub>
+      <ohloh>
+        <projectId>jackrabbit-oak</projectId>
+      </ohloh>
+      <googlePlusOne />
+    </fluidoSkin>
+  </custom>
+</project>

Propchange: jackrabbit/oak/trunk/oak-doc/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native