Skip to content

Commit 7e3cc28

Browse files
author
Richard Jones
committed
updates
1 parent d09776b commit 7e3cc28

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

website/README.txt

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,16 @@ issues.roundup-tracker.org:
99

1010
www.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/

website/www/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
TMP := _tmp
22
HTML := html
3+
ROUNDUP_SOURCE = ../../roundup
34

45
.PHONY: help clean html linkcheck
56

@@ -12,6 +13,7 @@ clean:
1213
-rm -rf $(TMP)
1314

1415
html:
16+
cp $(ROUNDUP_SOURCE)/doc/*.txt docs/
1517
mkdir -p $(TMP)/doctrees $(HTML)
1618
sphinx-build -b html -d $(TMP)/doctrees . $(HTML)
1719

website/www/README

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
These are the sources of the Roundup website.
22
To 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

810
Good luck !
911

0 commit comments

Comments
 (0)