You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by gn...@apache.org on 2011/02/11 17:55:49 UTC

svn commit: r1069882 - in /karaf/trunk/manual/src/main/webapp: _navigation.conf developers-guide/creating-bundles.conf developers-guide/index.conf overview.conf users-guide/deployer.conf users-guide/index.conf

Author: gnodet
Date: Fri Feb 11 16:55:49 2011
New Revision: 1069882

URL: http://svn.apache.org/viewvc?rev=1069882&view=rev
Log:
Fix a few issues in the manual

Modified:
    karaf/trunk/manual/src/main/webapp/_navigation.conf
    karaf/trunk/manual/src/main/webapp/developers-guide/creating-bundles.conf
    karaf/trunk/manual/src/main/webapp/developers-guide/index.conf
    karaf/trunk/manual/src/main/webapp/overview.conf
    karaf/trunk/manual/src/main/webapp/users-guide/deployer.conf
    karaf/trunk/manual/src/main/webapp/users-guide/index.conf

Modified: karaf/trunk/manual/src/main/webapp/_navigation.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/_navigation.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/_navigation.conf (original)
+++ karaf/trunk/manual/src/main/webapp/_navigation.conf Fri Feb 11 16:55:49 2011
@@ -23,13 +23,15 @@ h3. [Users Guide|/users-guide/index]
 
 h3. [Developers Guide|/developers-guide/index]
 
+- [Branding the Console|/developers-guide/branding-console]
 - [Extending the Console|/developers-guide/extending-console]
+- [Custom Distribution|/developers-guide/custom-distribution]
 - [Security Framework|/developers-guide/security-framework]
 - [Using the features-maven-plugin|/developers-guide/features-maven-plugin]
 - [Troubleshooting, Debugging and Profiling|/developers-guide/debugging]
 - [Programmatically connect to the console|/developers-guide/connect-console]
-- [Writing integration tests|writing-tests]
-- [Creating bundles|creating-bundes]
-- [Shell syntax|shell-syntax]
+- [Writing integration tests|/developers-guide/writing-tests]
+- [Creating bundles|/developers-guide/creating-bundles]
+- [Shell syntax|/developers-guide/shell-syntax]
 
 h3. [Commands|/commands/commands]

Modified: karaf/trunk/manual/src/main/webapp/developers-guide/creating-bundles.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/developers-guide/creating-bundles.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/developers-guide/creating-bundles.conf (original)
+++ karaf/trunk/manual/src/main/webapp/developers-guide/creating-bundles.conf Fri Feb 11 16:55:49 2011
@@ -8,7 +8,9 @@ For instance, you can define a bundle li
 
 {code:lang=xml}
 <?xml version="1.0" encoding="UTF-8"?>
-<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/xsd/maven-4.0.0.xsd">
+<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/xsd/maven-4.0.0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 
@@ -91,7 +93,9 @@ For instance, to create an OSGi bundle t
 
 {code:lang=xml}
 <?xml version="1.0" encoding="UTF-8"?>
-<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/xsd/maven-4.0.0.xsd">
+<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/xsd/maven-4.0.0.xsd">
 
     <modelVersion>4.0.0</modelVersion>
 

Modified: karaf/trunk/manual/src/main/webapp/developers-guide/index.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/developers-guide/index.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/developers-guide/index.conf (original)
+++ karaf/trunk/manual/src/main/webapp/developers-guide/index.conf Fri Feb 11 16:55:49 2011
@@ -8,5 +8,5 @@ h1. Developers Guide
 * [Troubleshooting, Debugging and Profiling|debugging]
 * [Programmatically connect to the console|connect-console]
 * [Writing integration tests|writing-tests]
-* [Creating bundles|creating-bundes]
+* [Creating bundles|creating-bundles]
 * [Shell syntax|shell-syntax]

Modified: karaf/trunk/manual/src/main/webapp/overview.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/overview.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/overview.conf (original)
+++ karaf/trunk/manual/src/main/webapp/overview.conf Fri Feb 11 16:55:49 2011
@@ -15,4 +15,4 @@ Here is a short list of features support
 * *Managing instances*: Karaf provides simple commands for managing multiple instances. You can easily create, delete, start and stop instances of Karaf through the console.
 * Supports the latest OSGi 4.2 containers: Apache Felix Framework 3.0 and Eclipse Equinox 3.6
 
-!images/karaf.png!
+!/images/karaf.png!

Modified: karaf/trunk/manual/src/main/webapp/users-guide/deployer.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/users-guide/deployer.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/users-guide/deployer.conf (original)
+++ karaf/trunk/manual/src/main/webapp/users-guide/deployer.conf Fri Feb 11 16:55:49 2011
@@ -4,7 +4,7 @@ h1. Deployer
 
 The following picture describes the architecture of the deployer.
 
-!images/deployer.png!
+!/images/deployer.png!
 
 h2. Spring deployer
 

Modified: karaf/trunk/manual/src/main/webapp/users-guide/index.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/users-guide/index.conf?rev=1069882&r1=1069881&r2=1069882&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/users-guide/index.conf (original)
+++ karaf/trunk/manual/src/main/webapp/users-guide/index.conf Fri Feb 11 16:55:49 2011
@@ -11,7 +11,7 @@ h1. Karaf Users Guide
 * [Security|security]
 * [Failover Deployments|failover]
 * [Logging system|logging-system]
-* [Deployer|deployer]
+* [Deployer|/users-guide/deployer]
 * [Provisioning|provisioning]
 * [Configuration|configuration]
 * [Web applications|/users-guide/web-applications]