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

Delta Between Two Patch Sets: .sitescripts.example

Issue 29352643: Issue 4377 - Add Configurable Form to Email Service (Closed)
Left Patch Set: Created Sept. 12, 2016, 11 a.m.
Right Patch Set: fixed make_error to properly build message and fix test to fail if message not built Created Sept. 12, 2016, 3:54 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 [DEFAULT] 1 [DEFAULT]
2 root=/server/root/path 2 root=/server/root/path
3 hgroot=https://hg.adblockplus.org 3 hgroot=https://hg.adblockplus.org
4 mailer=/usr/sbin/sendmail 4 mailer=/usr/sbin/sendmail
5 mailerDebug=no 5 mailerDebug=no
6 secret=somerandomstringhere 6 secret=somerandomstringhere
7 7
8 [multiplexer] 8 [multiplexer]
9 sitescripts.subscriptions.web.fallback = 9 sitescripts.subscriptions.web.fallback =
10 sitescripts.crashes.web.submitCrash = 10 sitescripts.crashes.web.submitCrash =
11 sitescripts.reports.web.submitReport = 11 sitescripts.reports.web.submitReport =
12 sitescripts.reports.web.updateReport = 12 sitescripts.reports.web.updateReport =
13 sitescripts.reports.web.showDigest = 13 sitescripts.reports.web.showDigest =
14 sitescripts.reports.web.showUser = 14 sitescripts.reports.web.showUser =
15 sitescripts.formmail.web.formmail = 15 sitescripts.formmail.web.formmail =
Vasily Kuznetsov 2016/09/12 11:33:19 We also need to add formmail2 here so the multiple
16 sitescripts.formmail.web.formmail2 =
16 sitescripts.submit_email.web.submit_email = 17 sitescripts.submit_email.web.submit_email =
17 sitescripts.send_installation_link.web.send_installation_link = 18 sitescripts.send_installation_link.web.send_installation_link =
18 sitescripts.crawler.web.crawler = 19 sitescripts.crawler.web.crawler =
19 sitescripts.urlfixer.web.submitData = 20 sitescripts.urlfixer.web.submitData =
20 sitescripts.extensions.web.downloads = 21 sitescripts.extensions.web.downloads =
21 sitescripts.extensions.web.adblockbrowserUpdates = 22 sitescripts.extensions.web.adblockbrowserUpdates =
22 sitescripts.testpages.web.sitekey_frame = 23 sitescripts.testpages.web.sitekey_frame =
23 24
24 [subscriptions] 25 [subscriptions]
25 repository=%(root)s/hg/subscriptionlist 26 repository=%(root)s/hg/subscriptionlist
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 Adblock-Plus-for-Firefox=adblock-plus(-[\d\.]+)?-for-firefox(-next)? 154 Adblock-Plus-for-Firefox=adblock-plus(-[\d\.]+)?-for-firefox(-next)?
154 155
155 [formmail] 156 [formmail]
156 template=formmail/template/eyeo.mail 157 template=formmail/template/eyeo.mail
157 158
158 [formmail2] 159 [formmail2]
159 test.url=test/apply/submit 160 test.url=test/apply/submit
160 test.template=formmail/test/template/test.mail 161 test.template=formmail/test/template/test.mail
161 test.fields.email=mandatory, email 162 test.fields.email=mandatory, email
162 test.fields.email.mandatory=You failed the email test 163 test.fields.email.mandatory=You failed the email test
163 test.fields.name=mandatory 164 test.fields.email.email=You failed the email validation
164 test.fields.name.mandatory=You failed the name test 165 test.fields.non_mandatory_email=email
165 test.fields.subject=mandatory
Vasily Kuznetsov 2016/09/12 11:33:19 I guess we don't need several mandatory fields, th
166 test.fields.subject.mandatory=You failed the subject test
167 test.fields.message=mandatory
168 test.fields.message.mandatory=You failed the message test
169 test.fields.non_mandatory_message= 166 test.fields.non_mandatory_message=
170 167 test.fields.mandatory=mandatory
171
Vasily Kuznetsov 2016/09/12 11:33:19 Too many empty lines perhaps.
172 168
173 [submit_email] 169 [submit_email]
174 edge_filename=%(root)s/logs/edge_email_addresses.txt 170 edge_filename=%(root)s/logs/edge_email_addresses.txt
175 edge_verification_email_template=submit_email/template/edge_verification.mail 171 edge_verification_email_template=submit_email/template/edge_verification.mail
176 successful_verification_redirect_location=https://adblockplus.org/{lang}/verific ation-success 172 successful_verification_redirect_location=https://adblockplus.org/{lang}/verific ation-success
177 173
178 [send_installation_link] 174 [send_installation_link]
179 email_template=send_installation_link/template/adblockbrowser_installation_link. tmpl 175 email_template=send_installation_link/template/adblockbrowser_installation_link. tmpl
180 176
181 [notifications] 177 [notifications]
(...skipping 21 matching lines...) Expand all
203 adblockplus_command=./build.py -t gecko docs {output_dir} >/dev/null 2>&1 199 adblockplus_command=./build.py -t gecko docs {output_dir} >/dev/null 2>&1
204 adblockpluschrome_repository=%(root)s/hg/adblockpluschrome 200 adblockpluschrome_repository=%(root)s/hg/adblockpluschrome
205 adblockpluschrome_target_directory=%(root)s/www/jsdoc/adblockpluschrome 201 adblockpluschrome_target_directory=%(root)s/www/jsdoc/adblockpluschrome
206 adblockpluschrome_command=./build.py -t chrome docs {output_dir} >/dev/null 2>&1 202 adblockpluschrome_command=./build.py -t chrome docs {output_dir} >/dev/null 2>&1
207 adblockpluscore_repository=%(root)s/hg/adblockpluscore 203 adblockpluscore_repository=%(root)s/hg/adblockpluscore
208 adblockpluscore_target_directory=%(root)s/www/jsdoc/adblockpluscore 204 adblockpluscore_target_directory=%(root)s/www/jsdoc/adblockpluscore
209 adblockpluscore_command=./generate_docs.py {output_dir} >/dev/null 2>&1 205 adblockpluscore_command=./generate_docs.py {output_dir} >/dev/null 2>&1
210 libadblockplus_repository=%(root)s/hg/libadblockplus 206 libadblockplus_repository=%(root)s/hg/libadblockplus
211 libadblockplus_target_directory=%(root)s/www/docs/libadblockplus 207 libadblockplus_target_directory=%(root)s/www/docs/libadblockplus
212 libadblockplus_command=make docs >/dev/null 2>&1 && mv docs/html {output_dir} 208 libadblockplus_command=make docs >/dev/null 2>&1 && mv docs/html {output_dir}
LEFTRIGHT

Powered by Google App Engine
This is Rietveld