Overview
SHA1 Hash: | 72e9eb6a0d4c6e77787839525ad9e83446c655b9 |
---|---|
Date: | 2008-11-27 13:33:34 |
User: | drh |
Comment: | Change • into • per ticket |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
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\">•</font>"; + inherit[0x7f & *(z1++)] = "<font color=\"red\">•</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\">•</font>"; + inherit[0x7f & *(z1++)] = "<font color=\"blue\">•</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\">•</font>"; + inherit[0x7f & *(z1++)] = "<font color=\"green\">•</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>•</big></font>" mark indicates + @ The "<font color="green"><big>•</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>•</big></font>" mark indicates + @ The "<font color="blue"><big>•</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>•</big></font>" mark indicates + @ The "<font color="red"><big>•</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, " • ", -1); + blob_append(p->pOut, " • ", -1); }else{ if( p->wikiList!=MARKUP_UL ){ if( p->wikiList ){ popStackToTag(p, p->wikiList); }