Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: docs/usage/generate-static-files.md

Issue 29628724: Issue 5521 - Restructure CMS documentation to make it easier to use and extend (Closed) Base URL: https://hg.adblockplus.org/cms
Patch Set: Add initial API docs Created Dec. 13, 2017, 11:08 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: docs/usage/generate-static-files.md
===================================================================
new file mode 100644
--- /dev/null
+++ b/docs/usage/generate-static-files.md
@@ -0,0 +1,26 @@
+# Generating static files #
+
+On your production server you should convert the content directory into static
+files. To do that you need:
+
+* Python 2.7
+* [Jinja2](http://jinja.pocoo.org/) and
+ [Markdown](https://pypi.python.org/pypi/Markdown) modules (can be installed by
+ running `easy_install Jinja2 Markdown` from the command line)
+* A current copy of the
+ [cms repository](https://github.com/adblockplus/cms/) (can be
+ [downloaded as ZIP file](https://github.com/adblockplus/cms/archive/master.zip)
+ or cloned via `git clone https://github.com/adblockplus/cms.git`)
+
+Run the following command from the directory of the `cms` repository:
+
+ python -m cms.bin.generate_static_pages www_directory target_directory
+
+Here `www_directory` should be replaced by the path to your content directory.
+`target_directory` is the path where static files will be placed.
+
+Note: Localized versions of pages will only be generated when their translations
+are at least 30% complete. (Measured by comparing the total number
+of translatable strings on a page to the number of strings that have been
+translated for a given locale.) This is different from the test server which
+will include less complete translations.

Powered by Google App Engine
This is Rietveld