Fossil SCM

In stead of <font color=xxx, use style=color:xxx in some places.

jan.nijtmans 2016-06-14 14:08 trunk
Commit d1f60caac3a826bd2af68f32de0082a7dc34c972
+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
+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
--- 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