Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Disable the built-in robots.txt file. Ticket [03c9f4deef] |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f2626a53c30aa43053ef1b19e40a493b |
User & Date: | drh 2010-02-09 12:31:57.000 |
Context
2010-02-09
| ||
13:36 | Enable the graph for tag timelines, but omit descenders. ... (check-in: 22b6887e40 user: drh tags: trunk) | |
12:31 | Disable the built-in robots.txt file. Ticket [03c9f4deef] ... (check-in: f2626a53c3 user: drh tags: trunk) | |
12:28 | Get the --latest option on the "co" command working when the current checkout is on a dead branch. Ticket [e42448edec1]. ... (check-in: c98948242e user: drh tags: trunk) | |
Changes
Changes to src/main.c.
︙ | ︙ | |||
704 705 706 707 708 709 710 | if( g.zExtra ){ /* CGI parameters get this treatment elsewhere, but places like getfile ** will use g.zExtra directly. */ dehttpize(g.zExtra); cgi_set_parameter_nocopy("name", g.zExtra); } | < < < < < < < < < < | 704 705 706 707 708 709 710 711 712 713 714 715 716 717 | if( g.zExtra ){ /* CGI parameters get this treatment elsewhere, but places like getfile ** will use g.zExtra directly. */ dehttpize(g.zExtra); cgi_set_parameter_nocopy("name", g.zExtra); } /* Locate the method specified by the path and execute the function ** that implements that method. */ if( name_search(g.zPath, aWebpage, count(aWebpage), &idx) && name_search("not_found", aWebpage, count(aWebpage), &idx) ){ cgi_set_status(404,"Not Found"); |
︙ | ︙ |