Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Back out the "Home Page" configuration option added by [29374daa0d] |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c51dd3058c54e2cd5cdfc57f8f9a7731 |
User & Date: | drh 2008-05-16 01:09:08.000 |
Context
2008-05-16
| ||
01:43 | Added new "wiki create" command. Cleaned up the "wiki commit" code and added an option filename argument to both "wiki commit" and "wiki create". ... (check-in: e03d1be5 user: drh tags: trunk) | |
01:09 | Back out the "Home Page" configuration option added by [29374daa0d] ... (check-in: c51dd305 user: drh tags: trunk) | |
00:56 | Fix bugs in the rendering of HTML markup with multiple attributes. This clears up a problem in displaying the "concepts.wiki" documentation file. ... (check-in: 1bbc5b7e user: drh tags: trunk) | |
Changes
Changes to src/setup.c.
︙ | ︙ | |||
599 600 601 602 603 604 605 | @ The project name will also be used as the RSS feed title.</p> @ <hr /> textarea_attribute("Project Description", 5, 60, "project-description", "pd", ""); @ <p>Describe your project. This will be used in page headers for search @ engines as well as a short RSS description.</p> @ <hr /> | < < < < < < < < < < < < | 599 600 601 602 603 604 605 606 607 608 609 610 611 612 | @ The project name will also be used as the RSS feed title.</p> @ <hr /> textarea_attribute("Project Description", 5, 60, "project-description", "pd", ""); @ <p>Describe your project. This will be used in page headers for search @ engines as well as a short RSS description.</p> @ <hr /> @ <p><input type="submit" name="submit" value="Apply Changes"></p> @ </form> db_end_transaction(0); style_footer(); } /* |
︙ | ︙ |
Changes to src/wiki.c.
︙ | ︙ | |||
75 76 77 78 79 80 81 | /* ** WEBPAGE: home ** WEBPAGE: index ** WEBPAGE: not_found */ void home_page(void){ | < < | < | < < < < < < < < < < < < < | | | | | | | | < < < < | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /* ** WEBPAGE: home ** WEBPAGE: index ** WEBPAGE: not_found */ void home_page(void){ char *zPageName = db_get("project-name",0); if( zPageName ){ login_check_credentials(); g.zExtra = zPageName; cgi_set_parameter_nocopy("name", g.zExtra); g.okRdWiki = 1; g.okApndWiki = 0; g.okWrWiki = 0; g.okHistory = 0; wiki_page(); return; } style_header("Home"); @ <p>This is a stub home-page for the project. @ To fill in this page, first go to @ <a href="%s(g.zBaseURL)/setup_config">setup/config</a> @ and establish a "Project Name". Then create a @ wiki page with that name. The content of that wiki page @ will be displayed in place of this message. |
︙ | ︙ |