Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the anti-spider error message to be more welcoming to human users who happen to be using a browser without javascript support. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3ede3702a27f6c8d000739b6b2acc329 |
| User & Date: | drh 2013-10-28 14:01:28.423 |
Context
|
2013-10-28
| ||
| 20:13 | Code style cleanup. ... (check-in: 24273fd0c4 user: mistachkin tags: trunk) | |
| 14:01 | Change the anti-spider error message to be more welcoming to human users who happen to be using a browser without javascript support. ... (check-in: 3ede3702a2 user: drh tags: trunk) | |
|
2013-10-27
| ||
| 09:44 | Added fx_* to the glob of tables which are _not_ dropped by a rebuild, per ML discussion. The intention is to give 3rd-party extensions a safe place to put their data. ... (check-in: dbec64585a user: stephan tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
1224 1225 1226 1227 1228 1229 1230 |
/*
** This page is a honeypot for spiders and bots.
**
** WEBPAGE: honeypot
*/
void honeypot_page(void){
cgi_set_status(403, "Forbidden");
| | | 1224 1225 1226 1227 1228 1229 1230 1231 1232 |
/*
** This page is a honeypot for spiders and bots.
**
** WEBPAGE: honeypot
*/
void honeypot_page(void){
cgi_set_status(403, "Forbidden");
@ <p>Please enable javascript or log in to see this content</p>
}
|