Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fix [ffa87168ce1] |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b72eb4d4b2044800aafc668c926d6d5d |
User & Date: | ron 2011-06-21 11:38:50.635 |
Context
2011-06-23
| ||
17:48 | Update the build-in SQLite to the lastest 3.7.7 release candidate. ... (check-in: 4722e1ab user: drh tags: trunk) | |
08:56 | added "diff from other version" to fdiff page ... (check-in: b785f086 user: ron tags: rons diff mods) | |
2011-06-21
| ||
11:38 | fix [ffa87168ce1] ... (check-in: b72eb4d4 user: ron tags: trunk) | |
00:51 | Update the built-in SQLite to the latest 3.7.7 release candidate. ... (check-in: 74cbfc69 user: drh tags: trunk) | |
Changes
Changes to src/clone.c.
︙ | ︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ** --admin-user|-A USERNAME Make USERNAME the administrator ** --private Also clone private branches ** */ void clone_cmd(void){ char *zPassword; const char *zDefaultUser; /* Optional name of the default user */ int nErr = 0; int bPrivate; /* Also clone private branches */ bPrivate = find_option("private",0,0)!=0; url_proxy_options(); if( g.argc < 4 ){ usage("?OPTIONS? FILE-OR-URL NEW-REPOSITORY"); | > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | ** --admin-user|-A USERNAME Make USERNAME the administrator ** --private Also clone private branches ** */ void clone_cmd(void){ char *zPassword; const char *zDefaultUser; /* Optional name of the default user */ const char *zPw; /* The user clone password */ int nErr = 0; int bPrivate; /* Also clone private branches */ bPrivate = find_option("private",0,0)!=0; url_proxy_options(); if( g.argc < 4 ){ usage("?OPTIONS? FILE-OR-URL NEW-REPOSITORY"); |
︙ | ︙ | |||
114 115 116 117 118 119 120 121 122 | db_begin_transaction(); fossil_print("Rebuilding repository meta-data...\n"); rebuild_db(0, 1, 0); fossil_print("project-id: %s\n", db_get("project-code", 0)); fossil_print("server-id: %s\n", db_get("server-code", 0)); zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin); fossil_print("admin-user: %s (password is \"%s\")\n", g.zLogin, zPassword); db_end_transaction(0); } | > > | 115 116 117 118 119 120 121 122 123 124 125 | db_begin_transaction(); fossil_print("Rebuilding repository meta-data...\n"); rebuild_db(0, 1, 0); fossil_print("project-id: %s\n", db_get("project-code", 0)); fossil_print("server-id: %s\n", db_get("server-code", 0)); zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin); fossil_print("admin-user: %s (password is \"%s\")\n", g.zLogin, zPassword); zPw = g.urlPasswd; if( !g.dontKeepUrl && zPw) db_set("last-sync-pw", obscure(zPw), 0); db_end_transaction(0); } |