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

Side by Side Diff: .sitescripts.example

Issue 29335805: Issue 1299 - Generate docs outside the devbuild build process (Closed)
Patch Set: Address comments, fix issues Created Feb. 5, 2016, 8:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sitescripts/docs/__init__.py » ('j') | sitescripts/docs/bin/generate_docs.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [DEFAULT] 1 [DEFAULT]
2 root=/server/root/path 2 root=/server/root/path
3 mailer=/usr/sbin/sendmail 3 mailer=/usr/sbin/sendmail
4 mailerDebug=no 4 mailerDebug=no
5 secret=somerandomstringhere 5 secret=somerandomstringhere
6 6
7 [multiplexer] 7 [multiplexer]
8 sitescripts.subscriptions.web.fallback = 8 sitescripts.subscriptions.web.fallback =
9 sitescripts.crashes.web.submitCrash = 9 sitescripts.crashes.web.submitCrash =
10 sitescripts.reports.web.submitReport = 10 sitescripts.reports.web.submitReport =
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 nightliesURL=https://adblockplus.org/devbuilds/ 113 nightliesURL=https://adblockplus.org/devbuilds/
114 downloadsRepo=%(root)s/hg/downloads 114 downloadsRepo=%(root)s/hg/downloads
115 downloadsDirectory=%(root)s/www/downloads 115 downloadsDirectory=%(root)s/www/downloads
116 downloadsURL=https://downloads.adblockplus.org/ 116 downloadsURL=https://downloads.adblockplus.org/
117 downloadLinksFile=%(root)s/tmp/downloadLinks.ini 117 downloadLinksFile=%(root)s/tmp/downloadLinks.ini
118 geckoUpdateManifestPath=%(root)s/www/update.rdf 118 geckoUpdateManifestPath=%(root)s/www/update.rdf
119 androidUpdateManifestPath=%(root)s/www/androidupdates.xml 119 androidUpdateManifestPath=%(root)s/www/androidupdates.xml
120 androidNewUpdateManifestPath=%(root)s/www/androidupdate.json 120 androidNewUpdateManifestPath=%(root)s/www/androidupdate.json
121 safariUpdateManifestPath=%(root)s/www/updates.plist 121 safariUpdateManifestPath=%(root)s/www/updates.plist
122 ieUpdateManifestPath=%(root)s/www/ieupdate.json 122 ieUpdateManifestPath=%(root)s/www/ieupdate.json
123 docsDirectory=%(root)s/www/jsdoc
124 padDirectory=%(root)s/www/pad 123 padDirectory=%(root)s/www/pad
125 padURL=https://adblockplus.org/pad/ 124 padURL=https://adblockplus.org/pad/
126 errorTemplate=extensions/template/error.html 125 errorTemplate=extensions/template/error.html
127 languageCheckTemplate=extensions/template/languageCheckResult.html 126 languageCheckTemplate=extensions/template/languageCheckResult.html
128 languageFormTemplate=extensions/template/languageForm.html 127 languageFormTemplate=extensions/template/languageForm.html
129 changelogTemplate=extensions/template/changelog.html 128 changelogTemplate=extensions/template/changelog.html
130 geckoUpdateManifest=extensions/template/update.rdf 129 geckoUpdateManifest=extensions/template/update.rdf
131 chromeUpdateManifest=extensions/template/updates.xml 130 chromeUpdateManifest=extensions/template/updates.xml
132 safariUpdateManifest=extensions/template/updates.plist 131 safariUpdateManifest=extensions/template/updates.plist
133 androidUpdateManifest=extensions/template/androidupdates.xml 132 androidUpdateManifest=extensions/template/androidupdates.xml
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 sitekeyPath=%(root)s/testpages.adblockplus.org/static/site.key 194 sitekeyPath=%(root)s/testpages.adblockplus.org/static/site.key
196 195
197 [content_blocker_lists] 196 [content_blocker_lists]
198 abp2blocklist_url=https://hg.adblockplus.org/abp2blocklist 197 abp2blocklist_url=https://hg.adblockplus.org/abp2blocklist
199 abp2blocklist_path=%(root)s/content_blocker_lists/abp2blocklist 198 abp2blocklist_path=%(root)s/content_blocker_lists/abp2blocklist
200 easylist_url=https://easylist-downloads.adblockplus.org/easylist.txt 199 easylist_url=https://easylist-downloads.adblockplus.org/easylist.txt
201 exceptionrules_url=https://easylist-downloads.adblockplus.org/exceptionrules.txt 200 exceptionrules_url=https://easylist-downloads.adblockplus.org/exceptionrules.txt
202 easylist_content_blocker_path=%(root)s/content_blocker_lists/easylist_content_bl ocker.json 201 easylist_content_blocker_path=%(root)s/content_blocker_lists/easylist_content_bl ocker.json
203 easylist_content_blocker_expires=4 days 202 easylist_content_blocker_expires=4 days
204 combined_content_blocker_path=%(root)s/content_blocker_lists/easylist+exceptionr ules_content_blocker.json 203 combined_content_blocker_path=%(root)s/content_blocker_lists/easylist+exceptionr ules_content_blocker.json
205 combined_content_blocker_expires=4 days 204 combined_content_blocker_expires=4 days
205
206 [docs]
207 temp_directory=%(root)s/docs-tmp
208 adblockplus_repository=%(root)s/hg/adblockplus
209 adblockplus_target_directory=%(root)s/www/jsdoc/adblockplus
210 adblockplus_command=./build.py -t gecko docs {output_dir} &>/dev/null
Felix Dahlke 2016/02/05 20:47:59 Unless I do this, the ensure_dependencies.py outpu
Sebastian Noack 2016/02/06 09:49:50 That's probably a bad idea. If something is wrong
Felix Dahlke 2016/02/06 10:46:39 Yes you're right, that's much better.
Sebastian Noack 2016/02/06 13:39:39 LGTM with this being resolved.
211 adblockpluschrome_repository=%(root)s/hg/adblockpluschrome
212 adblockpluschrome_target_directory=%(root)s/www/jsdoc/adblockpluschrome
213 adblockpluschrome_command=./build.py -t chrome docs {output_dir} &>/dev/null
214 adblockpluscore_repository=%(root)s/hg/adblockpluscore
215 adblockpluscore_target_directory=%(root)s/www/jsdoc/adblockpluscore
216 adblockpluscore_command=./generate_docs.py {output_dir} &>/dev/null
217 libadblockplus_repository=%(root)s/hg/libadblockplus
218 libadblockplus_target_directory=%(root)s/www/docs/libadblockplus
219 libadblockplus_command=make docs &>/dev/null && mv docs/html {output_dir}
OLDNEW
« no previous file with comments | « no previous file | sitescripts/docs/__init__.py » ('j') | sitescripts/docs/bin/generate_docs.py » ('J')

Powered by Google App Engine
This is Rietveld