Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | CSS fixes - make <div class="content"> ... </div> actually enclose the content. Also add a couple of missing footers. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
23ed5e2cd6e89a22c922d9f6ac6f9627 |
| User & Date: | eric 2008-07-18 21:44:58.000 |
| Original Comment: | CSS fixes - make <div class="content"> ... </div> actually enclose the content. Also add a couple of missing footers. |
Context
|
2008-07-19
| ||
| 14:15 | Fix the "Key Template" setup box under ticket configuration. ... (check-in: b7588eb2f7 user: drh tags: trunk) | |
|
2008-07-18
| ||
| 21:44 | CSS fixes - make <div class="content"> ... </div> actually enclose the content. Also add a couple of missing footers. ... (check-in: 23ed5e2cd6 user: eric tags: trunk) | |
| 12:14 | Fix typos in the quick-start document. ... (check-in: 924554d78b user: drh tags: trunk) | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
681 682 683 684 685 686 687 688 689 690 691 692 693 694 |
@ <input type="submit" name="clear" value="Revert To Default">
@ </form>
@ <hr>
@ Here is the default page header:
@ <blockquote><pre>
@ %h(zDefaultHeader)
@ </pre></blockquote>
db_end_transaction(0);
}
/*
** WEBPAGE: setup_footer
*/
void setup_footer(void){
| > | 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 |
@ <input type="submit" name="clear" value="Revert To Default">
@ </form>
@ <hr>
@ Here is the default page header:
@ <blockquote><pre>
@ %h(zDefaultHeader)
@ </pre></blockquote>
style_footer();
db_end_transaction(0);
}
/*
** WEBPAGE: setup_footer
*/
void setup_footer(void){
|
| ︙ | ︙ | |||
713 714 715 716 717 718 719 720 721 | @ <input type="submit" name="clear" value="Revert To Default"> @ </form> @ <hr> @ Here is the default page footer: @ <blockquote><pre> @ %h(zDefaultFooter) @ </pre></blockquote> db_end_transaction(0); } | > | 714 715 716 717 718 719 720 721 722 723 | @ <input type="submit" name="clear" value="Revert To Default"> @ </form> @ <hr> @ Here is the default page footer: @ <blockquote><pre> @ %h(zDefaultFooter) @ </pre></blockquote> style_footer(); db_end_transaction(0); } |
Changes to src/style.c.
| ︙ | ︙ | |||
117 118 119 120 121 122 123 124 125 |
if( !headerHasBeenGenerated ) return;
/* Go back and put the submenu at the top of the page. We delay the
** creation of the submenu until the end so that we can add elements
** to the submenu while generating page text.
*/
if( nSubmenu>0 ){
int i;
| > < < > > | < | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
if( !headerHasBeenGenerated ) return;
/* Go back and put the submenu at the top of the page. We delay the
** creation of the submenu until the end so that we can add elements
** to the submenu while generating page text.
*/
cgi_destination(CGI_HEADER);
if( nSubmenu>0 ){
int i;
@ <div class="submenu">
qsort(aSubmenu, nSubmenu, sizeof(aSubmenu[0]), submenuCompare);
for(i=0; i<nSubmenu; i++){
struct Submenu *p = &aSubmenu[i];
if( p->zLink==0 ){
@ <span class="label">%h(p->zLabel)</span>
}else{
@ <a class="label" href="%s(p->zLink)">%h(p->zLabel)</a>
}
}
@ </div>
}
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
*/
@ </div>
zFooter = db_get("footer", (char*)zDefaultFooter);
Th_Render(zFooter);
}
/* @-comment: // */
/*
** The default page header.
*/
|
| ︙ | ︙ |