| OLD | NEW |
| 1 .. _documentation: | 1 .. _documentation: |
| 2 | 2 |
| 3 ======================= | 3 ======================= |
| 4 About the Documentation | 4 About the Documentation |
| 5 ======================= | 5 ======================= |
| 6 | 6 |
| 7 boto's documentation uses the Sphinx__ documentation system, which in turn is | 7 boto's documentation uses the Sphinx__ documentation system, which in turn is |
| 8 based on docutils__. The basic idea is that lightly-formatted plain-text | 8 based on docutils__. The basic idea is that lightly-formatted plain-text |
| 9 documentation is transformed into HTML, PDF, and any other output format. | 9 documentation is transformed into HTML, PDF, and any other output format. |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 cd docs/ | 50 cd docs/ |
| 51 fab deploy:remote_path='/var/www/folder/whatever' --hosts=user@host | 51 fab deploy:remote_path='/var/www/folder/whatever' --hosts=user@host |
| 52 | 52 |
| 53 This will get the latest code from subversion, add the revision number to the | 53 This will get the latest code from subversion, add the revision number to the |
| 54 docs conf.py file, call ``make html`` to build the documentation, then it will | 54 docs conf.py file, call ``make html`` to build the documentation, then it will |
| 55 tarball it up and scp up to the host you specified and untarball it in the | 55 tarball it up and scp up to the host you specified and untarball it in the |
| 56 folder you specified creating a symbolic link from the untarballed versioned | 56 folder you specified creating a symbolic link from the untarballed versioned |
| 57 folder to ``{remote_path}/boto-docs``. | 57 folder to ``{remote_path}/boto-docs``. |
| 58 | 58 |
| 59 | 59 |
| OLD | NEW |