Differences From Artifact [f0893454d5]:
- File src/tagview.c — part of check-in [6d67f3c7c7] at 2008-02-08 16:24:25 on branch trunk — minor efficiency hack in tagview_page_list_tags() (user: stephan size: 4420) [more...]
To Artifact [9d79e57b4d]:
- File src/tagview.c — part of check-in [d57de28756] at 2008-05-05 23:15:29 on branch trunk — The "h" capability is now used to enable hyperlinks to non-wiki pages. When "h" is missing, many pages give a hyperlink to the login page and automatically fill in "anonymous" as the user name. The login page jumps back to the target page after a successful login. (user: drh size: 4451)
| ︙ | |||
142 143 144 145 146 147 148 149 150 151 152 153 154 155 | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | + |
*/
void tagview_page(void){
login_check_credentials();
if( !g.okRdWiki ){
login_needed();
}
style_header("Tags");
login_anonymous_available();
tagview_page_search_miniform();
@ <hr/>
char const * check = 0;
if( 0 != (check = P("tagid")) ){
tagview_page_tag_by_id( atoi(check) );
}else if( 0 != (check = P("like")) ){
tagview_page_list_tags( check );
|
| ︙ |