Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch th1-css Excluding Merge-Ins
This is equivalent to a diff from a1e667e6b5 to d1b68cc0f3
|
2012-01-05
| ||
| 13:09 | Merge the trunk changes into the retro-sbsdiff branch. ... (check-in: 4b432961ac user: drh tags: retro-sbsdiff) | |
|
2012-01-04
| ||
| 18:29 | Process the style sheet using TH1 prior to returning it. This branch is experimental. ... (Closed-Leaf check-in: d1b68cc0f3 user: drh tags: th1-css) | |
|
2012-01-01
| ||
| 15:57 | Simplified display of side-by-side diff in the web browser. ... (check-in: a1e667e6b5 user: drh tags: retro-sbsdiff) | |
|
2011-12-31
| ||
| 12:51 | Escape the contact information for users when displaying. ... (check-in: a3e625e954 user: drh tags: trunk) | |
Changes to src/report.c.
| ︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - + | # include "cson_amalgamation.h" #endif /* Forward references to static routines */ static void report_format_hints(void); /* |
| ︙ | |||
265 266 267 268 269 270 271 | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | - + |
sqlite3_finalize(pStmt);
}
report_unrestrict_sql();
return zErr;
}
/*
|
| ︙ | |||
311 312 313 314 315 316 317 | 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | - - + + | @ </td> @ </tr></table> report_format_hints(); style_footer(); } /* |
| ︙ | |||
889 890 891 892 893 894 895 | 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 | - + | rc = sqlite3_finalize(pStmt); fossil_free(azVals); return rc; } /* |
| ︙ | |||
1139 1140 1141 1142 1143 1144 1145 | 1139 1140 1141 1142 1143 1144 1145 | - |
report_restrict_sql(&zErr1);
sqlite3_exec_readonly(g.db, zSql, output_separated_file, &count, &zErr2);
report_unrestrict_sql();
if( zFilter ){
free(zSql);
}
}
|
Changes to src/setup.c.
| ︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + |
}else{
@ %h(zTitle)
}
@ </td><td width="5"></td><td valign="top">%h(zDesc)</td></tr>
}
/*
|
| ︙ | |||
239 240 241 242 243 244 245 | 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | - + |
if( zPw==0 ) return 0;
if( zPw[0]==0 ) return 1;
while( zPw[0]=='*' ){ zPw++; }
return zPw[0]!=0;
}
/*
|
| ︙ |
Changes to src/style.c.
| ︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | - + + |
char *zTitle;
const char *zHeader = db_get("header", (char*)zDefaultHeader);
login_check_credentials();
va_start(ap, zTitleFormat);
zTitle = vmprintf(zTitleFormat, ap);
va_end(ap);
|
| ︙ | |||
191 192 193 194 195 196 197 | 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | - + | */ const char zDefaultHeader[] = @ <html> @ <head> @ <title>$<project_name>: $<title></title> @ <link rel="alternate" type="application/rss+xml" title="RSS Feed" @ href="$home/timeline.rss" /> |
| ︙ | |||
696 697 698 699 700 701 702 | 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 | - + + |
@ ** to the header and configure the java script file with
@ ** 1. use as bindClass :checkinUserColor
@ ** 2. change the default hash adding behaviour to ON
@ ** or change the class defition of element identified by id="clrcust"
@ ** to a standard jscolor definition with java script in the footer. */
},
{ "div.endContent",
|
| ︙ | |||
773 774 775 776 777 778 779 780 781 | 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 | + + + + + + + - + + + + - - - - + + + + + + + + + + + + + + + + - - + + - - + - - + - + - + + + |
);
}
}
}
/*
** WEBPAGE: style.css
** WEBPAGE: style
**
** The first form (style.css) is the default. The second form (style) is
** intended to be used with a query path (ex: style/76a6de45.css) where the
** extra suffix (the "76a6de45.css") is a randomly-generated name that
** changes every time the style sheet changes. Changing the name causes
** the style-sheet to be reloaded by the web browser.
*/
void page_style_css(void){
|
| ︙ |
Changes to src/tag.c.
| ︙ | |||
521 522 523 524 525 526 527 | 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | - + |
return;
tag_cmd_usage:
usage("add|cancel|find|list ...");
}
/*
|
| ︙ | |||
559 560 561 562 563 564 565 | 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | - + | } @ </ul> db_finalize(&q); style_footer(); } /* |
| ︙ |