Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Give /wiki a link to the Wiki page with the same name as the Project Name. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
82136b0a5f957c99ab46e3b1c1eca433 |
User & Date: | eric 2008-07-17 20:34:35.000 |
Context
2008-07-18
| ||
12:14 | Fix typos in the quick-start document. ... (check-in: 924554d7 user: drh tags: trunk) | |
2008-07-17
| ||
20:34 | Give /wiki a link to the Wiki page with the same name as the Project Name. ... (check-in: 82136b0a user: eric tags: trunk) | |
15:49 | Enhance the wiki rendering to support <div> markup. The closing </div> tag with and id= attribute can close off <verbatim> and <nowiki>. The wiki append page uses this to prevent unclosed tags from messing up the rendering of subsequent comments. ... (check-in: e01aa8cb user: drh tags: trunk) | |
Changes
Changes to src/wiki.c.
︙ | ︙ | |||
126 127 128 129 130 131 132 133 134 135 136 137 138 139 | login_check_credentials(); if( !g.okRdWiki ){ login_needed(); return; } zPageName = P("name"); if( zPageName==0 ){ style_header("Wiki"); @ <ul> @ <li> <a href="%s(g.zBaseURL)/timeline?y=w">Recent changes</a> to wiki @ pages. </li> @ <li> <a href="%s(g.zBaseURL)/wiki_rules">Formatting rules</a> for @ wiki.</li> @ <li> Use the <a href="%s(g.zBaseURL)/wiki?name=Sandbox">Sandbox</a> @ to experiment.</li> @ <li> <a href="%s(g.zBaseURL)/wcontent">List of All Wiki Pages</a> | > > > > > > | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | login_check_credentials(); if( !g.okRdWiki ){ login_needed(); return; } zPageName = P("name"); if( zPageName==0 ){ style_header("Wiki"); @ <ul> { char *zHomePageName = db_get("project-name",0); if( zHomePageName ){ @ <li> <a href="%s(g.zBaseURL)/wiki?name=%s(zHomePageName)"> @ %s(zHomePageName)</a> wiki page.</li> } } @ <li> <a href="%s(g.zBaseURL)/timeline?y=w">Recent changes</a> to wiki @ pages. </li> @ <li> <a href="%s(g.zBaseURL)/wiki_rules">Formatting rules</a> for @ wiki.</li> @ <li> Use the <a href="%s(g.zBaseURL)/wiki?name=Sandbox">Sandbox</a> @ to experiment.</li> @ <li> <a href="%s(g.zBaseURL)/wcontent">List of All Wiki Pages</a> |
︙ | ︙ |