Updates README and deletes old files

Updates to README and deletes old files under doc/training-guides
folder. This update is to remove some files which were left in the
repository. Also updates README to keep relevent content in there.

Change-Id: I7479b92b721ddccc2986dd6728876b02a6a0fbe7
This commit is contained in:
Pranav Salunke 2015-04-20 11:24:57 +02:00
parent 36cd7475d8
commit a989bae409
3 changed files with 4 additions and 146 deletions

View File

@ -2,9 +2,6 @@ Introduction
============
* The subfolders contain the RST files related to the Training Guides.
* The RST files are built into HTML through landslide. Find the landslide
style guide here https://raw.githubusercontent.com/adamzap/landslide/master/examples/restructuredtext/slides.rst
* Create the output html by **./landslide.sh**
* Please refer the following link to get more information about this project
https://launchpad.net/openstack-training-guides
* Please follow the following wiki to get more information about development
@ -35,15 +32,8 @@ Structure of this folder
1. associate-guide: This folder contains RST files related to Associate
Training Guide.
2. operator-guide: This folder contains RST files related to Operator
Training Guide.
3. developer-guide: This folder contains RST files related to Developer
Training Guide.
4. architect-guide: This folder contains RST files related to Architect
Training Guide.
5. basic-install-guide: This folder contains Install Guides which is
similar to basic/easy version of Install Guides present under
openstack-manuals.
6. common: This folder contains common files used by multiple training
2. common: This folder contains common files used by multiple training
guides.
7. figures: This folder contains images used by all the training guides.
3. figures: This folder contains images used by all the training guides.
4. _static: This folder contains theming (CSS) for generating the HTML
slides.

View File

@ -1,25 +0,0 @@
<!-- The master of this file is in openstack-manuals repository, file
doc/common/entities/openstack.ent.
Any changes to the master file will override changes in other
repositories. -->
<!-- Some useful entities borrowed from HTML -->
<!ENTITY ndash "&#x2013;">
<!ENTITY mdash "&#x2014;">
<!ENTITY nbsp "&#160;">
<!ENTITY times "&#215;">
<!ENTITY hellip "&#133;">
<!-- Useful for describing APIs in the User Guide -->
<!ENTITY COPY '<command xmlns="http://docbook.org/ns/docbook">COPY</command>'>
<!ENTITY GET '<command xmlns="http://docbook.org/ns/docbook">GET</command>'>
<!ENTITY HEAD '<command xmlns="http://docbook.org/ns/docbook">HEAD</command>'>
<!ENTITY PUT '<command xmlns="http://docbook.org/ns/docbook">PUT</command>'>
<!ENTITY POST '<command xmlns="http://docbook.org/ns/docbook">POST</command>'>
<!ENTITY DELETE '<command xmlns="http://docbook.org/ns/docbook">DELETE</command>'>
<!ENTITY CHECK '<inlinemediaobject xmlns="http://docbook.org/ns/docbook">
<imageobject>
<imagedata fileref="figures/Check_mark_23x20_02.svg"
format="SVG" scale="60"/>
</imageobject>
</inlinemediaobject>'>

View File

@ -1,107 +0,0 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opensatck.docs</groupId>
<artifactId>openstack-training-guides</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>OpenStack Training Guides</name>
<properties>
<!-- This is set by Jenkins according to the branch. -->
<release.path.name>local</release.path.name>
<comments.enabled>0</comments.enabled>
<profile.os>ubuntu</profile.os>
</properties>
<!-- ################################################ -->
<!-- USE "mvn clean generate-sources" to run this POM -->
<!-- ################################################ -->
<build>
<plugins>
<plugin>
<groupId>com.rackspace.cloud.api</groupId>
<artifactId>clouddocs-maven-plugin</artifactId>
<version>2.1.3</version>
<executions>
<execution>
<id>training-guides</id>
<goals>
<goal>generate-webhelp</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<includes>st-training-guides.xml</includes>
<sourceDirectory>.</sourceDirectory>
<webhelpDirname>${release.path.name}/training-guides</webhelpDirname>
<pdfFilenameBase>training-guides-${release.path.name}</pdfFilenameBase>
<enableDisqus>${comments.enabled}</enableDisqus>
<enableGoogleAnalytics>1</enableGoogleAnalytics>
<googleAnalyticsId>UA-17511903-1</googleAnalyticsId>
<chapterAutolabel>1</chapterAutolabel>
<sectionAutolabel>0</sectionAutolabel>
<tocSectionDepth>1</tocSectionDepth>
<formalProcedures>0</formalProcedures>
<generateToc>
appendix toc,title
article/appendix nop
article toc,title
book toc,title,figure,table,example,equation
chapter toc,title
section toc
part toc,title
qandadiv toc
qandaset toc
reference toc,title
set toc,title
</generateToc>
<pageWidth>9.68in</pageWidth>
<pageHeight>7.44in</pageHeight>
<doubleSided>1</doubleSided>
<omitCover>1</omitCover>
</configuration>
</execution>
</executions>
<configuration>
<canonicalUrlBase>http://docs.openstack.org/${release.path.name}/training-guides/content</canonicalUrlBase>
<glossaryCollection>${basedir}/../glossary/glossary-terms.xml</glossaryCollection>
<branding>openstack</branding>
<profileOs>${profile.os}</profileOs>
<showXslMessages>true</showXslMessages>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>Rackspace Research Repositories</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>rackspace-research</id>
<name>Rackspace Research Repository</name>
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>rackspace-research</id>
<name>Rackspace Research Repository</name>
<url>http://maven.research.rackspacecloud.com/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</project>