Merge "Updates README and deletes old files"
This commit is contained in:
commit
d453edeeef
@ -2,9 +2,6 @@ Introduction
|
|||||||
============
|
============
|
||||||
|
|
||||||
* The subfolders contain the RST files related to the Training Guides.
|
* 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
|
* Please refer the following link to get more information about this project
|
||||||
https://launchpad.net/openstack-training-guides
|
https://launchpad.net/openstack-training-guides
|
||||||
* Please follow the following wiki to get more information about development
|
* 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
|
1. associate-guide: This folder contains RST files related to Associate
|
||||||
Training Guide.
|
Training Guide.
|
||||||
2. operator-guide: This folder contains RST files related to Operator
|
2. common: This folder contains common files used by multiple training
|
||||||
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
|
|
||||||
guides.
|
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.
|
||||||
|
@ -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 "–">
|
|
||||||
<!ENTITY mdash "—">
|
|
||||||
<!ENTITY nbsp " ">
|
|
||||||
<!ENTITY times "×">
|
|
||||||
<!ENTITY hellip "…">
|
|
||||||
|
|
||||||
<!-- 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>'>
|
|
@ -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>
|
|
Loading…
x
Reference in New Issue
Block a user