Fossil SCM

Change • into • per ticket [2ed0655983b51af6].

drh 2008-11-27 13:33 trunk
Commit 72e9eb6a0d4c6e77787839525ad9e83446c655b9
2 files changed +6 -6 +1 -1
+6 -6
--- src/setup.c
+++ src/setup.c
@@ -371,27 +371,27 @@
371371
memset(inherit, 0, sizeof(inherit));
372372
if( strcmp(zLogin, "developer") ){
373373
char *z1, *z2;
374374
z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='developer'");
375375
while( z1 && *z1 ){
376
- inherit[0x7f & *(z1++)] = "<font color=\"red\">&#149;</font>";
376
+ inherit[0x7f & *(z1++)] = "<font color=\"red\">&bull;</font>";
377377
}
378378
free(z2);
379379
}
380380
if( strcmp(zLogin, "anonymous") ){
381381
char *z1, *z2;
382382
z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='anonymous'");
383383
while( z1 && *z1 ){
384
- inherit[0x7f & *(z1++)] = "<font color=\"blue\">&#149;</font>";
384
+ inherit[0x7f & *(z1++)] = "<font color=\"blue\">&bull;</font>";
385385
}
386386
free(z2);
387387
}
388388
if( strcmp(zLogin, "nobody") ){
389389
char *z1, *z2;
390390
z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='nobody'");
391391
while( z1 && *z1 ){
392
- inherit[0x7f & *(z1++)] = "<font color=\"green\">&#149;</font>";
392
+ inherit[0x7f & *(z1++)] = "<font color=\"green\">&bull;</font>";
393393
}
394394
free(z2);
395395
}
396396
397397
/* Begin generating the page
@@ -485,22 +485,22 @@
485485
@ and reset user passwords. Both automatically get all other privileges
486486
@ listed below. Use these two settings with discretion.
487487
@ </p></li>
488488
@
489489
@ <li><p>
490
- @ The "<font color="green"><big>&#149;</big></font>" mark indicates
490
+ @ The "<font color="green"><big>&bull;</big></font>" mark indicates
491491
@ the privileges of "nobody" that are available to all users
492492
@ regardless of whether or not they are logged in.
493493
@ </p></li>
494494
@
495495
@ <li><p>
496
- @ The "<font color="blue"><big>&#149;</big></font>" mark indicates
496
+ @ The "<font color="blue"><big>&bull;</big></font>" mark indicates
497497
@ the privileges of "anonymous" that are inherited by all logged-in users.
498498
@ </p></li>
499499
@
500500
@ <li><p>
501
- @ The "<font color="red"><big>&#149;</big></font>" mark indicates
501
+ @ The "<font color="red"><big>&bull;</big></font>" mark indicates
502502
@ the privileges of "developer" that are inherited by all users with
503503
@ the <b>Developer</b> privilege.
504504
@ </p></li>
505505
@
506506
@ <li><p>
507507
--- src/setup.c
+++ src/setup.c
@@ -371,27 +371,27 @@
371 memset(inherit, 0, sizeof(inherit));
372 if( strcmp(zLogin, "developer") ){
373 char *z1, *z2;
374 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='developer'");
375 while( z1 && *z1 ){
376 inherit[0x7f & *(z1++)] = "<font color=\"red\">&#149;</font>";
377 }
378 free(z2);
379 }
380 if( strcmp(zLogin, "anonymous") ){
381 char *z1, *z2;
382 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='anonymous'");
383 while( z1 && *z1 ){
384 inherit[0x7f & *(z1++)] = "<font color=\"blue\">&#149;</font>";
385 }
386 free(z2);
387 }
388 if( strcmp(zLogin, "nobody") ){
389 char *z1, *z2;
390 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='nobody'");
391 while( z1 && *z1 ){
392 inherit[0x7f & *(z1++)] = "<font color=\"green\">&#149;</font>";
393 }
394 free(z2);
395 }
396
397 /* Begin generating the page
@@ -485,22 +485,22 @@
485 @ and reset user passwords. Both automatically get all other privileges
486 @ listed below. Use these two settings with discretion.
487 @ </p></li>
488 @
489 @ <li><p>
490 @ The "<font color="green"><big>&#149;</big></font>" mark indicates
491 @ the privileges of "nobody" that are available to all users
492 @ regardless of whether or not they are logged in.
493 @ </p></li>
494 @
495 @ <li><p>
496 @ The "<font color="blue"><big>&#149;</big></font>" mark indicates
497 @ the privileges of "anonymous" that are inherited by all logged-in users.
498 @ </p></li>
499 @
500 @ <li><p>
501 @ The "<font color="red"><big>&#149;</big></font>" mark indicates
502 @ the privileges of "developer" that are inherited by all users with
503 @ the <b>Developer</b> privilege.
504 @ </p></li>
505 @
506 @ <li><p>
507
--- src/setup.c
+++ src/setup.c
@@ -371,27 +371,27 @@
371 memset(inherit, 0, sizeof(inherit));
372 if( strcmp(zLogin, "developer") ){
373 char *z1, *z2;
374 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='developer'");
375 while( z1 && *z1 ){
376 inherit[0x7f & *(z1++)] = "<font color=\"red\">&bull;</font>";
377 }
378 free(z2);
379 }
380 if( strcmp(zLogin, "anonymous") ){
381 char *z1, *z2;
382 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='anonymous'");
383 while( z1 && *z1 ){
384 inherit[0x7f & *(z1++)] = "<font color=\"blue\">&bull;</font>";
385 }
386 free(z2);
387 }
388 if( strcmp(zLogin, "nobody") ){
389 char *z1, *z2;
390 z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='nobody'");
391 while( z1 && *z1 ){
392 inherit[0x7f & *(z1++)] = "<font color=\"green\">&bull;</font>";
393 }
394 free(z2);
395 }
396
397 /* Begin generating the page
@@ -485,22 +485,22 @@
485 @ and reset user passwords. Both automatically get all other privileges
486 @ listed below. Use these two settings with discretion.
487 @ </p></li>
488 @
489 @ <li><p>
490 @ The "<font color="green"><big>&bull;</big></font>" mark indicates
491 @ the privileges of "nobody" that are available to all users
492 @ regardless of whether or not they are logged in.
493 @ </p></li>
494 @
495 @ <li><p>
496 @ The "<font color="blue"><big>&bull;</big></font>" mark indicates
497 @ the privileges of "anonymous" that are inherited by all logged-in users.
498 @ </p></li>
499 @
500 @ <li><p>
501 @ The "<font color="red"><big>&bull;</big></font>" mark indicates
502 @ the privileges of "developer" that are inherited by all users with
503 @ the <b>Developer</b> privilege.
504 @ </p></li>
505 @
506 @ <li><p>
507
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -1045,11 +1045,11 @@
10451045
p->state |= AT_NEWLINE;
10461046
break;
10471047
}
10481048
case TOKEN_BULLET: {
10491049
if( inlineOnly ){
1050
- blob_append(p->pOut, " &#149; ", -1);
1050
+ blob_append(p->pOut, " &bull; ", -1);
10511051
}else{
10521052
if( p->wikiList!=MARKUP_UL ){
10531053
if( p->wikiList ){
10541054
popStackToTag(p, p->wikiList);
10551055
}
10561056
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -1045,11 +1045,11 @@
1045 p->state |= AT_NEWLINE;
1046 break;
1047 }
1048 case TOKEN_BULLET: {
1049 if( inlineOnly ){
1050 blob_append(p->pOut, " &#149; ", -1);
1051 }else{
1052 if( p->wikiList!=MARKUP_UL ){
1053 if( p->wikiList ){
1054 popStackToTag(p, p->wikiList);
1055 }
1056
--- src/wikiformat.c
+++ src/wikiformat.c
@@ -1045,11 +1045,11 @@
1045 p->state |= AT_NEWLINE;
1046 break;
1047 }
1048 case TOKEN_BULLET: {
1049 if( inlineOnly ){
1050 blob_append(p->pOut, " &bull; ", -1);
1051 }else{
1052 if( p->wikiList!=MARKUP_UL ){
1053 if( p->wikiList ){
1054 popStackToTag(p, p->wikiList);
1055 }
1056

Keyboard Shortcuts

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