@@ -39,7 +39,7 @@ However, SFTP is ugly to script in non-interactive
3939mode, so we use SSH access to fetch everything and
4040build from server side.
4141
42- logging into sf.net
42+ Working with sf.net
4343-------------------
4444Current docs are taken down with SourceForge Trac,
4545so working instructions are available from here:
@@ -74,6 +74,10 @@ users=110231
7474if the uid/gid changes you may have to change the values.
7575See: https://www.mercurial-scm.org/wiki/Trust for details
7676
77+ When done working in the sf shell, you can destroy it early
78+ to free resources:
79+
80+ shutdown
7781
7882updating wiki.roundup-tracker.org
7983---------------------------------
@@ -104,17 +108,12 @@ the whole procedure looks like so:
104108 cd ${project_home}/src/roundup/website/www
105109 make clean
106110 make html
107- # you can check which files updated
108- #diff -qur ./html/ ${project_home}/htdocs/
111+ # you can check which files updated (the date will change with many files)
112+ #diff -ur --brief ${project_home}/htdocs/ ./html /
109113 # copy to website dir
110114 cp -r -p ./html/* ${project_home}/htdocs/
111115 # copy legacy html doc to website docs/ dir
112116 # (in main doc/conf.py this is done automatically)
113117 cp -r -p ../../doc/html_extra/* ${project_home}/htdocs/docs/
114118 # or try it with rsync (skip --dry-run when ready)
115119 #rsync --dry-run -v --checksum --recursive ./html/* ${project_home}/htdocs/
116-
117- When done working in the shell, you can destroy it early
118- to free resources:
119-
120- shutdown
0 commit comments