Check-in [72e9eb6a0d]
Not logged in
Overview

SHA1 Hash:72e9eb6a0d4c6e77787839525ad9e83446c655b9
Date: 2008-11-27 13:33:34
User: drh
Comment:Change • into • per ticket 2ed0655983b51af6.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/setup.c from [37e2870ec6] to [fca5464418].

@@ -371,27 +371,27 @@
   memset(inherit, 0, sizeof(inherit));
   if( strcmp(zLogin, "developer") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='developer'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"red\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"red\">&bull;</font>";
     }
     free(z2);
   }
   if( strcmp(zLogin, "anonymous") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='anonymous'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"blue\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"blue\">&bull;</font>";
     }
     free(z2);
   }
   if( strcmp(zLogin, "nobody") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='nobody'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"green\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"green\">&bull;</font>";
     }
     free(z2);
   }
 
   /* Begin generating the page
@@ -485,22 +485,22 @@
   @ and reset user passwords.  Both automatically get all other privileges
   @ listed below.  Use these two settings with discretion.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="green"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="green"><big>&bull;</big></font>" mark indicates
   @ the privileges of "nobody" that are available to all users
   @ regardless of whether or not they are logged in.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="blue"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="blue"><big>&bull;</big></font>" mark indicates
   @ the privileges of "anonymous" that are inherited by all logged-in users.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="red"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="red"><big>&bull;</big></font>" mark indicates
   @ the privileges of "developer" that are inherited by all users with
   @ the <b>Developer</b> privilege.
   @ </p></li>
   @
   @ <li><p>

Modified src/wikiformat.c from [0a6e50b755] to [0350f3f946].

@@ -1045,11 +1045,11 @@
         p->state |= AT_NEWLINE;
         break;
       }
       case TOKEN_BULLET: {
         if( inlineOnly ){
-          blob_append(p->pOut, " &#149; ", -1);
+          blob_append(p->pOut, " &bull; ", -1);
         }else{
           if( p->wikiList!=MARKUP_UL ){
             if( p->wikiList ){
               popStackToTag(p, p->wikiList);
             }