Fossil SCM

Remove deprecated <font> tags.

Isius 2015-11-16 02:42 html-cleanup
Commit 46861220d300f7a92aa0a8031673d383d2958cc2
+1 -1
--- src/report.c
+++ src/report.c
@@ -749,11 +749,11 @@
749749
750750
/* Output the separator above each entry in a table which has multiple lines
751751
** per database entry.
752752
*/
753753
if( pState->iNewRow>=0 ){
754
- @ <tr><td colspan=%d(pState->nCol)><font size=1>&nbsp;</font></td></tr>
754
+ @ <tr><td colspan=%d(pState->nCol)>&nbsp;</td></tr>
755755
}
756756
757757
/* Output the data for this entry from the database
758758
*/
759759
zBg = pState->iBg>=0 ? azArg[pState->iBg] : 0;
760760
--- src/report.c
+++ src/report.c
@@ -749,11 +749,11 @@
749
750 /* Output the separator above each entry in a table which has multiple lines
751 ** per database entry.
752 */
753 if( pState->iNewRow>=0 ){
754 @ <tr><td colspan=%d(pState->nCol)><font size=1>&nbsp;</font></td></tr>
755 }
756
757 /* Output the data for this entry from the database
758 */
759 zBg = pState->iBg>=0 ? azArg[pState->iBg] : 0;
760
--- src/report.c
+++ src/report.c
@@ -749,11 +749,11 @@
749
750 /* Output the separator above each entry in a table which has multiple lines
751 ** per database entry.
752 */
753 if( pState->iNewRow>=0 ){
754 @ <tr><td colspan=%d(pState->nCol)>&nbsp;</td></tr>
755 }
756
757 /* Output the data for this entry from the database
758 */
759 zBg = pState->iBg>=0 ? azArg[pState->iBg] : 0;
760
+1 -1
--- src/skins.c
+++ src/skins.c
@@ -493,11 +493,11 @@
493493
}
494494
}
495495
496496
style_header("Skins");
497497
if( zErr ){
498
- @ <p><font color="red">%h(zErr)</font></p>
498
+ @ <p style="color:red">%h(zErr)</p>
499499
}
500500
@ <p>A "skin" is a combination of
501501
@ <a href="setup_skinedit?w=0">CSS</a>,
502502
@ <a href="setup_skinedit?w=2">Header</a>,
503503
@ <a href="setup_skinedit?w=1">Footer</a>, and
504504
--- src/skins.c
+++ src/skins.c
@@ -493,11 +493,11 @@
493 }
494 }
495
496 style_header("Skins");
497 if( zErr ){
498 @ <p><font color="red">%h(zErr)</font></p>
499 }
500 @ <p>A "skin" is a combination of
501 @ <a href="setup_skinedit?w=0">CSS</a>,
502 @ <a href="setup_skinedit?w=2">Header</a>,
503 @ <a href="setup_skinedit?w=1">Footer</a>, and
504
--- src/skins.c
+++ src/skins.c
@@ -493,11 +493,11 @@
493 }
494 }
495
496 style_header("Skins");
497 if( zErr ){
498 @ <p style="color:red">%h(zErr)</p>
499 }
500 @ <p>A "skin" is a combination of
501 @ <a href="setup_skinedit?w=0">CSS</a>,
502 @ <a href="setup_skinedit?w=2">Header</a>,
503 @ <a href="setup_skinedit?w=1">Footer</a>, and
504
+4 -3
--- src/tkt.c
+++ src/tkt.c
@@ -423,11 +423,11 @@
423423
** For trouble-shooting purposes, render a dump of the aField[] table to
424424
** the webpage currently under construction.
425425
*/
426426
static void showAllFields(void){
427427
int i;
428
- @ <font color="blue">
428
+ @ <div style="color:blue">
429429
@ <p>Database fields:</p><ul>
430430
for(i=0; i<nField; i++){
431431
@ <li>aField[%d(i)].zName = "%h(aField[i].zName)";
432432
@ originally = "%h(aField[i].zValue)";
433433
@ currently = "%h(PD(aField[i].zName,""))";
@@ -652,15 +652,16 @@
652652
}
653653
needMod = ticket_need_moderation(0);
654654
if( g.zPath[0]=='d' ){
655655
const char *zNeedMod = needMod ? "required" : "skipped";
656656
/* If called from /debug_tktnew or /debug_tktedit... */
657
- @ <font color="blue">
657
+ @ <div style="color:blue">
658658
@ <p>Ticket artifact that would have been submitted:</p>
659659
@ <blockquote><pre>%h(blob_str(&tktchng))</pre></blockquote>
660660
@ <blockquote><pre>Moderation would be %h(zNeedMod).</pre></blockquote>
661
- @ <hr /></font>
661
+ @ </div>
662
+ @ <hr>
662663
return TH_OK;
663664
}else{
664665
if( g.thTrace ){
665666
Th_Trace("submit_ticket {\n<blockquote><pre>\n%h\n</pre></blockquote>\n"
666667
"}<br />\n",
667668
--- src/tkt.c
+++ src/tkt.c
@@ -423,11 +423,11 @@
423 ** For trouble-shooting purposes, render a dump of the aField[] table to
424 ** the webpage currently under construction.
425 */
426 static void showAllFields(void){
427 int i;
428 @ <font color="blue">
429 @ <p>Database fields:</p><ul>
430 for(i=0; i<nField; i++){
431 @ <li>aField[%d(i)].zName = "%h(aField[i].zName)";
432 @ originally = "%h(aField[i].zValue)";
433 @ currently = "%h(PD(aField[i].zName,""))";
@@ -652,15 +652,16 @@
652 }
653 needMod = ticket_need_moderation(0);
654 if( g.zPath[0]=='d' ){
655 const char *zNeedMod = needMod ? "required" : "skipped";
656 /* If called from /debug_tktnew or /debug_tktedit... */
657 @ <font color="blue">
658 @ <p>Ticket artifact that would have been submitted:</p>
659 @ <blockquote><pre>%h(blob_str(&tktchng))</pre></blockquote>
660 @ <blockquote><pre>Moderation would be %h(zNeedMod).</pre></blockquote>
661 @ <hr /></font>
 
662 return TH_OK;
663 }else{
664 if( g.thTrace ){
665 Th_Trace("submit_ticket {\n<blockquote><pre>\n%h\n</pre></blockquote>\n"
666 "}<br />\n",
667
--- src/tkt.c
+++ src/tkt.c
@@ -423,11 +423,11 @@
423 ** For trouble-shooting purposes, render a dump of the aField[] table to
424 ** the webpage currently under construction.
425 */
426 static void showAllFields(void){
427 int i;
428 @ <div style="color:blue">
429 @ <p>Database fields:</p><ul>
430 for(i=0; i<nField; i++){
431 @ <li>aField[%d(i)].zName = "%h(aField[i].zName)";
432 @ originally = "%h(aField[i].zValue)";
433 @ currently = "%h(PD(aField[i].zName,""))";
@@ -652,15 +652,16 @@
652 }
653 needMod = ticket_need_moderation(0);
654 if( g.zPath[0]=='d' ){
655 const char *zNeedMod = needMod ? "required" : "skipped";
656 /* If called from /debug_tktnew or /debug_tktedit... */
657 @ <div style="color:blue">
658 @ <p>Ticket artifact that would have been submitted:</p>
659 @ <blockquote><pre>%h(blob_str(&tktchng))</pre></blockquote>
660 @ <blockquote><pre>Moderation would be %h(zNeedMod).</pre></blockquote>
661 @ </div>
662 @ <hr>
663 return TH_OK;
664 }else{
665 if( g.thTrace ){
666 Th_Trace("submit_ticket {\n<blockquote><pre>\n%h\n</pre></blockquote>\n"
667 "}<br />\n",
668
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -238,11 +238,11 @@
238238
/*
239239
** The various markup is divided into the following types:
240240
*/
241241
#define MUTYPE_SINGLE 0x0001 /* <img>, <br>, or <hr> */
242242
#define MUTYPE_BLOCK 0x0002 /* Forms a new paragraph. ex: <p>, <h2> */
243
-#define MUTYPE_FONT 0x0004 /* Font changes. ex: <b>, <font>, <sub> */
243
+#define MUTYPE_FONT 0x0004 /* Font changes. ex: <b>, <sub> */
244244
#define MUTYPE_LIST 0x0010 /* Lists. <ol>, <ul>, or <dl> */
245245
#define MUTYPE_LI 0x0020 /* List items. <li>, <dd>, <dt> */
246246
#define MUTYPE_TABLE 0x0040 /* <table> */
247247
#define MUTYPE_TR 0x0080 /* <tr> */
248248
#define MUTYPE_TD 0x0100 /* <td> or <th> */
249249
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -238,11 +238,11 @@
238 /*
239 ** The various markup is divided into the following types:
240 */
241 #define MUTYPE_SINGLE 0x0001 /* <img>, <br>, or <hr> */
242 #define MUTYPE_BLOCK 0x0002 /* Forms a new paragraph. ex: <p>, <h2> */
243 #define MUTYPE_FONT 0x0004 /* Font changes. ex: <b>, <font>, <sub> */
244 #define MUTYPE_LIST 0x0010 /* Lists. <ol>, <ul>, or <dl> */
245 #define MUTYPE_LI 0x0020 /* List items. <li>, <dd>, <dt> */
246 #define MUTYPE_TABLE 0x0040 /* <table> */
247 #define MUTYPE_TR 0x0080 /* <tr> */
248 #define MUTYPE_TD 0x0100 /* <td> or <th> */
249
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -238,11 +238,11 @@
238 /*
239 ** The various markup is divided into the following types:
240 */
241 #define MUTYPE_SINGLE 0x0001 /* <img>, <br>, or <hr> */
242 #define MUTYPE_BLOCK 0x0002 /* Forms a new paragraph. ex: <p>, <h2> */
243 #define MUTYPE_FONT 0x0004 /* Font changes. ex: <b>, <sub> */
244 #define MUTYPE_LIST 0x0010 /* Lists. <ol>, <ul>, or <dl> */
245 #define MUTYPE_LI 0x0020 /* List items. <li>, <dd>, <dt> */
246 #define MUTYPE_TABLE 0x0040 /* <table> */
247 #define MUTYPE_TR 0x0080 /* <tr> */
248 #define MUTYPE_TD 0x0100 /* <td> or <th> */
249
--- www/password.wiki
+++ www/password.wiki
@@ -133,11 +133,11 @@
133133
able to authenticate to the server.
134134
135135
The client normally gets the login and password from the "remote URL".
136136
137137
<blockquote><pre>
138
-http://<font color="blue">login:password</font>@servername.org/path
138
+http://<span style="color:blue">login:password</span>@servername.org/path
139139
</pre></blockquote>
140140
141141
For older clients, the password is used for the shared secret as stated
142142
in the URL and with no encoding.
143143
For newer clients, the shared secret is derived from the password
@@ -145,11 +145,11 @@
145145
described above. However, if the first character of the password is
146146
"*" (ASCII 0x2a) then the "*" is skipped and the rest of the password
147147
is used directly as the share secret without the SHA1 encoding.
148148
149149
<blockquote><pre>
150
-http://<font color="blue">login:*password</font>@servername.org/path
150
+http://<span style="color:blue">login:*password</span>@servername.org/path
151151
</pre></blockquote>
152152
153153
This *-before-the-password trick can be used by newer clients to
154154
sync against a legacy server that does not understand the new SHA1
155155
password encoding.
156156
--- www/password.wiki
+++ www/password.wiki
@@ -133,11 +133,11 @@
133 able to authenticate to the server.
134
135 The client normally gets the login and password from the "remote URL".
136
137 <blockquote><pre>
138 http://<font color="blue">login:password</font>@servername.org/path
139 </pre></blockquote>
140
141 For older clients, the password is used for the shared secret as stated
142 in the URL and with no encoding.
143 For newer clients, the shared secret is derived from the password
@@ -145,11 +145,11 @@
145 described above. However, if the first character of the password is
146 "*" (ASCII 0x2a) then the "*" is skipped and the rest of the password
147 is used directly as the share secret without the SHA1 encoding.
148
149 <blockquote><pre>
150 http://<font color="blue">login:*password</font>@servername.org/path
151 </pre></blockquote>
152
153 This *-before-the-password trick can be used by newer clients to
154 sync against a legacy server that does not understand the new SHA1
155 password encoding.
156
--- www/password.wiki
+++ www/password.wiki
@@ -133,11 +133,11 @@
133 able to authenticate to the server.
134
135 The client normally gets the login and password from the "remote URL".
136
137 <blockquote><pre>
138 http://<span style="color:blue">login:password</span>@servername.org/path
139 </pre></blockquote>
140
141 For older clients, the password is used for the shared secret as stated
142 in the URL and with no encoding.
143 For newer clients, the shared secret is derived from the password
@@ -145,11 +145,11 @@
145 described above. However, if the first character of the password is
146 "*" (ASCII 0x2a) then the "*" is skipped and the rest of the password
147 is used directly as the share secret without the SHA1 encoding.
148
149 <blockquote><pre>
150 http://<span style="color:blue">login:*password</span>@servername.org/path
151 </pre></blockquote>
152
153 This *-before-the-password trick can be used by newer clients to
154 sync against a legacy server that does not understand the new SHA1
155 password encoding.
156

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button