You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by se...@apache.org on 2015/10/01 16:04:28 UTC

[18/51] [partial] cloudstack-docs git commit: Remove all old docbook files

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/en-US/writing-new-documentation.xml
----------------------------------------------------------------------
diff --git a/en-US/writing-new-documentation.xml b/en-US/writing-new-documentation.xml
deleted file mode 100644
index 7557359..0000000
--- a/en-US/writing-new-documentation.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "cloudstack.ent">
-%BOOK_ENTITIES;
-]>
-
-<!-- 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.
--->
-
-<section id="writing-new-documentation">
-    <title>Writing &PRODUCT; Documentation</title>
-    <para>&PRODUCT; documentation is written in DocBook xml format. Each guide defined with a publican configuration file refers to a DocBook <emphasis>book</emphasis>.</para> 
-    <para>These books are defined in xml files in docs/en-US, for instance if we look at the Developers guide, its configuration file contains:</para>
-    <programlisting>
-        xml_lang: en-US
-        type: Book
-        docname: Developers_Guide
-        brand: cloudstack
-        chunk_first: 1
-        chunk_section_depth: 1
-    </programlisting>
-    <para>The <emphasis>docname</emphasis> key gives you the basename of the DocBook file located in the en-US directory that contains the description of the book.</para>
-    <para>Looking closely at Developers_Guide.xml we see that it contains <emphasis>book</emphasis> tags and several references to other xml files. These are the chapters of the book, currently they are:</para>
-    <programlisting>
-    <![CDATA[
-        <xi:include href="concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="building-with-maven.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="developer-introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="whats-new.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="api-calls.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="working-with-usage-data.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="working-with-documentation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="tools.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="event-types.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="alerts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="time-zones.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-    ]]>
-    </programlisting>
-    <para>All these xml files are written in DocBook format.</para>
-    <note>
-        <para>DocBook format is well <ulink url="http://www.docbook.org/tdg5/en/html/docbook.html">documented</ulink>, refer to the documentation for any questions about DocBook tags</para>
-    </note>
-    <para>When writing documentation, you therefore need to located the book,chapter and section of the content you want to write/correct.
-    Or create a new book,chapter,section.</para>
-    <para>You will then learn much more about DocBook tagging. In order to write this chapter about documentation, I added the <emphasis>working-with-documentation.xml</emphasis>file describing a chapter in the Developer book and I created several sections within that chapter like so:</para>
-    <programlisting>
-    <![CDATA[
-        <chapter id="working-with-documentation">
-            <title>Preparing and Building &PRODUCT; Documentation</title>
-            <para>This chapter describes how to install publican, how to write new documentation and build a guide as well as how to build a translated version of the documentation using transifex</para>
-            <xi:include href="installing-publican.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-            <xi:include href="building-documentation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-            <xi:include href="writing-new-documentation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-            <xi:include href="building-translation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-        </chapter>
-    ]]>
-    </programlisting>
-
-    <para>Note the id witin the chapter tag, it represents the basename of the xml file describing the chapter.</para>
-    <para>For translation purposes it is important that this basename be less than 50 characters long.</para>
-
-    <para>This chapter also refers to xml files which contains each section. While you could embed the sections directly in the chapter file and as a matter of fact also write the chapters within a single book file. Breaking things up in smaller files at the granularity of the section, allows us to re-use any section to build different books.</para>
-    <para>For completeness here is an example of a section:</para>
-    <programlisting>
-    <![CDATA[
-        <section id="building-documentation">
-            <title>Building &PRODUCT; Documentation</title>
-            <para>To build a specific guide, go to the source tree of the documentation in /docs and identify the guide you want to build.</para>
-            <para>Currently there are four guides plus the release notes, all defined in publican configuration files:</para>
-            <programlisting>
-               publican-adminguide.cfg
-               publican-devguide.cfg
-               publican-installation.cfg
-               publican-plugin-niciranvp.cfg
-               publican-release-notes.cfg
-            </programlisting>
-            <para>To build the Developer guide for example, do the following:</para>
-            <programlisting>publican build --config=publican-devguide.cfg --formats=pdf --langs=en-US</programlisting>
-            <para>A pdf file will be created in tmp/en-US/pdf, you may choose to build the guide in a different format like html. In that case just replace the format value.</para>
-        </section>
-    ]]>
-    </programlisting>
-    <para>Happy Publicating and DocBooking.</para>
-</section>

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/en-US/xenserver-maintenance-mode.xml
----------------------------------------------------------------------
diff --git a/en-US/xenserver-maintenance-mode.xml b/en-US/xenserver-maintenance-mode.xml
deleted file mode 100644
index b947278..0000000
--- a/en-US/xenserver-maintenance-mode.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "cloudstack.ent">
-%BOOK_ENTITIES;
-]>
-
-<!-- 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.
--->
-<section id="xenserver-maintenance-mode">
-    <title>XenServer and Maintenance Mode</title>
-    <para>For XenServer, you can take a server offline temporarily by using the Maintenance Mode feature in XenCenter. When you place a server into Maintenance Mode, all running VMs are automatically migrated from it to another host in the same pool. If the server is the pool master, a new master will also be selected for the pool. While a server is Maintenance Mode, you cannot create or start any VMs on it.</para>
-    <para><emphasis role="bold">To place a server in Maintenance Mode:</emphasis></para>
-    <orderedlist>
-        <listitem><para>In the Resources pane, select the server, then do one of the following:</para>
-        <itemizedlist>
-            <listitem><para>Right-click, then click Enter Maintenance Mode on the shortcut menu.</para>
-            </listitem>
-            <listitem><para>On the Server menu, click Enter Maintenance Mode.</para>
-           </listitem>
-        </itemizedlist></listitem> 
-        <listitem><para>Click Enter Maintenance Mode.</para></listitem>        
-    </orderedlist>
-    <para>The server's status in the Resources pane shows when all running VMs have been successfully migrated off the server.</para>
-    <para><emphasis role="bold">To take a server out of Maintenance Mode:</emphasis></para>
-    <orderedlist>
-        <listitem><para>In the Resources pane, select the server, then do one of the following:</para>
-            <itemizedlist>
-                <listitem><para>Right-click, then click Exit Maintenance Mode on the shortcut menu.</para>
-                </listitem>
-                <listitem><para>On the Server menu, click Exit Maintenance Mode.</para>
-                </listitem>
-            </itemizedlist></listitem> 
-        <listitem><para>Click Exit Maintenance Mode.</para></listitem>        
-    </orderedlist>
-    
-</section>

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/en-US/xenserver-topology-req.xml
----------------------------------------------------------------------
diff --git a/en-US/xenserver-topology-req.xml b/en-US/xenserver-topology-req.xml
deleted file mode 100644
index 12b9b07..0000000
--- a/en-US/xenserver-topology-req.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "cloudstack.ent">
-%BOOK_ENTITIES;
-]>
-<!-- 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.
--->
-<section id="xenserver-topology-req">
-  <title>XenServer Topology Requirements</title>
-  <para>The Management Servers communicate with XenServer hosts on ports 22 (ssh), 80 (HTTP), and 443 (HTTPs).</para>
-</section>

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/en-US/zone-add.xml
----------------------------------------------------------------------
diff --git a/en-US/zone-add.xml b/en-US/zone-add.xml
deleted file mode 100644
index 4137b67..0000000
--- a/en-US/zone-add.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-<!ENTITY % BOOK_ENTITIES SYSTEM "cloudstack.ent">
-%BOOK_ENTITIES;
-]>
-
-<!-- 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.
--->
-
-<section id="zone-add">
-    <title>Adding a Zone</title>
-    <para>When you add a new zone, you will be prompted to configure the zone’s physical network and add the first pod, cluster, host, primary storage, and secondary storage.</para>
-    <orderedlist>
-        <listitem><para>Log in to the &PRODUCT; UI as the root administrator. See <xref linkend="log-in" />.</para></listitem>
-        <listitem><para>In the left navigation, choose Infrastructure.</para></listitem>
-        <listitem><para>On Zones, click View More.</para></listitem>
-        <listitem><para>Click Add Zone. The zone creation wizard will appear.</para></listitem>
-        <listitem><para>Choose one of the following network types:</para>
-            <itemizedlist>
-                <listitem><para><emphasis role="bold">Basic.</emphasis> For AWS-style networking. Provides a single network where each VM instance is assigned an IP directly from the network. Guest isolation can be provided through layer-3 means such as security groups (IP address source filtering).</para></listitem>
-                <listitem><para><emphasis role="bold">Advanced.</emphasis> For more sophisticated network topologies. This network model provides the most flexibility in defining guest networks and providing custom network offerings such as firewall, VPN, or load balancer support.</para></listitem>
-            </itemizedlist>
-        </listitem>
-        <listitem><para>The rest of the steps differ depending on whether you chose Basic or Advanced. Continue with the steps that apply to you:</para>
-            <itemizedlist>
-                <listitem><para><xref linkend="basic-zone-configuration" /></para></listitem>
-                <listitem><para><xref linkend="advanced-zone-configuration" /></para></listitem>
-            </itemizedlist>
-        </listitem>
-    </orderedlist>
-    <xi:include href="basic-zone-configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
-    <xi:include href="advanced-zone-configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
-</section>

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Admin_Guide.pot
----------------------------------------------------------------------
diff --git a/pot/Admin_Guide.pot b/pot/Admin_Guide.pot
deleted file mode 100644
index d3acd9b..0000000
--- a/pot/Admin_Guide.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "&PRODUCT; Administrator's Guide"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Administration Guide for &PRODUCT;."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Author_Group.pot
----------------------------------------------------------------------
diff --git a/pot/Author_Group.pot b/pot/Author_Group.pot
deleted file mode 100644
index 7e9c48f..0000000
--- a/pot/Author_Group.pot
+++ /dev/null
@@ -1,35 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: firstname
-#, no-c-format
-msgid "Apache"
-msgstr ""
-
-#. Tag: surname
-#, no-c-format
-msgid "CloudStack"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Book_Info.pot
----------------------------------------------------------------------
diff --git a/pot/Book_Info.pot b/pot/Book_Info.pot
deleted file mode 100644
index a2f0795..0000000
--- a/pot/Book_Info.pot
+++ /dev/null
@@ -1,45 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "&PRODUCT; Guide"
-msgstr ""
-
-#. Tag: subtitle
-#, no-c-format
-msgid "Revised August 9, 2012 10:48 pm Pacific"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Complete technical documentation of &PRODUCT;."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Book_Info_Release_Notes_4-0.pot
----------------------------------------------------------------------
diff --git a/pot/Book_Info_Release_Notes_4-0.pot b/pot/Book_Info_Release_Notes_4-0.pot
deleted file mode 100644
index ea3ff8b..0000000
--- a/pot/Book_Info_Release_Notes_4-0.pot
+++ /dev/null
@@ -1,45 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Version 4.0.0-incubating Release Notes"
-msgstr ""
-
-#. Tag: subtitle
-#, no-c-format
-msgid "Revised October 17, 2012 19:49 UTC"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Release notes for the Apache CloudStack 4.0.0-incubating release."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/CloudStack_Nicira_NVP_Guide.pot
----------------------------------------------------------------------
diff --git a/pot/CloudStack_Nicira_NVP_Guide.pot b/pot/CloudStack_Nicira_NVP_Guide.pot
deleted file mode 100644
index 5320c4b..0000000
--- a/pot/CloudStack_Nicira_NVP_Guide.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "&PRODUCT; Plugin Guide for the Nicira NVP Plugin"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Plugin Guide for the Nicira NVP Plugin."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Common_Content/Legal_Notice.pot
----------------------------------------------------------------------
diff --git a/pot/Common_Content/Legal_Notice.pot b/pot/Common_Content/Legal_Notice.pot
deleted file mode 100644
index f059a2b..0000000
--- a/pot/Common_Content/Legal_Notice.pot
+++ /dev/null
@@ -1,50 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: para
-#, no-c-format
-msgid "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"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "http://www.apache.org/licenses/LICENSE-2.0"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "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."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Apache CloudStack is an effort undergoing incubation at The Apache Software Foundation (ASF)."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Developers_Guide.pot
----------------------------------------------------------------------
diff --git a/pot/Developers_Guide.pot b/pot/Developers_Guide.pot
deleted file mode 100644
index c5706c2..0000000
--- a/pot/Developers_Guide.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "&PRODUCT; Developer's Guide"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This guide shows how to develop &PRODUCT;, use the API for operation and integration, access the usage data and use &PRODUCT; specific tools to ease development, testing and integration."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Installation_Guide.pot
----------------------------------------------------------------------
diff --git a/pot/Installation_Guide.pot b/pot/Installation_Guide.pot
deleted file mode 100644
index ee6bb9d..0000000
--- a/pot/Installation_Guide.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "&PRODUCT; Installation Guide"
-msgstr ""
-
-#. Tag: productname
-#, no-c-format
-msgid "Apache CloudStack"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Installation Guide for &PRODUCT;."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/LDAPserver-for-user-authentication.pot
----------------------------------------------------------------------
diff --git a/pot/LDAPserver-for-user-authentication.pot b/pot/LDAPserver-for-user-authentication.pot
deleted file mode 100644
index fbac556..0000000
--- a/pot/LDAPserver-for-user-authentication.pot
+++ /dev/null
@@ -1,60 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Using an LDAP Server for User Authentication"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "You can use an external LDAP server such as Microsoft Active Directory or ApacheDS to authenticate &PRODUCT; end-users. Just map &PRODUCT; accounts to the corresponding LDAP accounts using a query filter. The query filter is written using the query syntax of the particular LDAP server, and can include special wildcard characters provided by &PRODUCT; for matching common values such as the user’s email address and name. &PRODUCT; will search the external LDAP directory tree starting at a specified base directory and return the distinguished name (DN) and password of the matching user. This information along with the given password is used to authenticate the user.."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To set up LDAP authentication in &PRODUCT;, call the &PRODUCT; API command ldapConfig and provide the following:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Hostname or IP address and listening port of the LDAP server"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Base directory and query filter"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Search user DN credentials, which give &PRODUCT; permission to search on the LDAP server"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSL keystore and password, if SSL is used"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/Preface.pot
----------------------------------------------------------------------
diff --git a/pot/Preface.pot b/pot/Preface.pot
deleted file mode 100644
index 0684f6c..0000000
--- a/pot/Preface.pot
+++ /dev/null
@@ -1,30 +0,0 @@
-#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.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:55\n"
-"PO-Revision-Date: 2013-02-02T20:11:55\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Preface"
-msgstr ""
-