4 Commits

Author SHA1 Message Date
Roger Luethi
37ad5d3ebe Make JSON files more readable
JSON formatting can be optimized for size or for readability. The JSON
files in openstack-manuals favor readability (for obvious reasons).
Unlike typical JSON formatted for reading (see Wikipedia article on
JSON, or Python's JSON output), however, the files have no space after
the name-separator, making them somewhat harder to read.

This changeset adds the missing space after the name-separator.

It also changes indenting from 3 to 4 spaces (matching our conventions
for Python and shell code).

The order of keys (which doesn't matter for the software parser) has
been preserved, because the order may be intentional (to help human
readers).

For instance:

   "uuid":"d8e02d56-2648-49a3-bf97-6be8f1204f38",

becomes:

    "uuid": "d8e02d56-2648-49a3-bf97-6be8f1204f38",

It also changes a few overly long empty sets. For instance:

   "volume:create":[

   ],

    becomes:

    "volume:create": [],

Change-Id: I559907e72578e6fb1a1a6895bd005ad9b22210d7
2014-05-04 07:57:04 +02:00
Andreas Jaeger
86328df037 Remove unused JSON sample files
These are not used anywhere and are even duplicated.

Change-Id: Ic399fde93e5a4e46314ab845143102fbdd810bfa
2014-02-25 20:26:16 +01:00
Diane Fleming
5ab33d32b3 Clean up End User Guide - sentence style headings and other edits
Closes-Bug: #1249837

backport: none

Change-Id: Ie5068452b8596b0625e680ddd6f4eb6851e41927
author: diane fleming
2013-11-12 08:41:13 -06:00
Diane Fleming
64b6c9261e Folder rename, file rename, flattening of directories
Current folder name	New folder name	        Book title
----------------------------------------------------------
basic-install 	        DELETE
cli-guide	        DELETE
common	                common
NEW	                admin-guide-cloud	Cloud Administrators Guide
docbkx-example	        DELETE
openstack-block-storage-admin 	DELETE
openstack-compute-admin 	DELETE
openstack-config 	config-reference	OpenStack Configuration Reference
openstack-ha 	        high-availability-guide	OpenStack High Availabilty Guide
openstack-image	        image-guide	OpenStack Virtual Machine Image Guide
openstack-install 	install-guide	OpenStack Installation Guide
openstack-network-connectivity-admin 	admin-guide-network 	OpenStack Networking Administration Guide
openstack-object-storage-admin 	DELETE
openstack-security 	security-guide	OpenStack Security Guide
openstack-training 	training-guide	OpenStack Training Guide
openstack-user 	        user-guide	OpenStack End User Guide
openstack-user-admin 	user-guide-admin	OpenStack Admin User Guide
glossary	        NEW        	OpenStack Glossary

bug: #1220407

Change-Id: Id5ffc774b966ba7b9a591743a877aa10ab3094c7
author: diane fleming
2013-09-08 15:15:50 -07:00