File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -9,20 +9,16 @@ issues.roundup-tracker.org:
99
1010www.roundup-tracker.org:
1111
12- * project_home=/home/groups/r/ro/roundup
13-
1412 * log into sf.net
1513 ssh -t <user>,
[email protected] create
16- * update the working copy
14+ * set project_home:
15+ project_home=/home/project-web/roundup
16+ * update the working copy (you may need to "cd" to the docs directory for it to update...)
1717 cd ${project_home}/src/web/www
1818 svn update
19- * (Update the roundup source docs directory as well?)
20- * make sure PATH includes ${project_home}/bin, and PYTHONPATH includes ${project_home}/lib/python
2119 * build it
22- make [clean] html
23- # with clean ignore: "loading pickled environment... failed"
24- * make sure you leave all files writable for the group "roundup"
25- chmod g+rw -R .
20+ PATH=${PATH}:${project_home}/bin PYTHONPATH=${project_home}/lib/python make html
21+ * you may also "make clean"
2622 * install it
2723 cp -r ./html/* ${project_home}/htdocs/
2824
@@ -32,7 +28,7 @@ wiki.roundup-tracker.org:
3228
3329 * log into sf.net (see above)
3430 * update the working copy
35- cd /home/r/ro /roundup/src/web/wiki
31+ cd /home/project-web /roundup/src/web/wiki
3632 svn update
3733 * copy the files into the right places:
3834 - cp static/roundup/* ${project_home}/htdocs/_wiki/
Original file line number Diff line number Diff line change 11TMP := _tmp
22HTML := html
3+ ROUNDUP_SOURCE = ../../roundup
34
45.PHONY : help clean html linkcheck
56
1213 -rm -rf $(TMP )
1314
1415html :
16+ cp $(ROUNDUP_SOURCE ) /doc/* .txt docs/
1517 mkdir -p $(TMP ) /doctrees $(HTML )
1618 sphinx-build -b html -d $(TMP ) /doctrees . $(HTML )
1719
Original file line number Diff line number Diff line change 11These are the sources of the Roundup website.
22To build them, you need Sphinx (http://sphinx.pocoo.org/).
33
4- The content of the 'docs' section are mirrored in from the roundup package,
5- so make sure you have created a 'docs/' directory with the right files in it
6- (see 'docs.rst') from the last roundup release.
4+ pip install sphinx
5+ pip install sphinxcontrib-cheeseshop
6+
7+ The content of the 'docs' section are mirrored in from the roundup package
8+ - typically just a symlink of "docs" from the roundup source.
79
810Good luck !
911
You can’t perform that action at this time.
0 commit comments