Differences From Artifact [79eea7d1a7]:
- File src/clone.c — part of check-in [5fdad9bd8c] at 2014-03-31 16:48:57 on branch trunk — Get rid of the GLOBAL_URL() kludge. Change the global "g" variable to contain an instance of the UrlData object instead of individual fields of the UrlData object. (user: drh size: 8388) [more...]
To Artifact [1272c49df0]:
- File src/clone.c — part of check-in [11ba4bd6cf] at 2014-06-27 12:35:35 on branch trunk — Print server-id after cloning and in /stat page. Only print Project-ID in /stat page if there is one. (user: jan.nijtmans size: 8450) [more...]
| ︙ | |||
193 194 195 196 197 198 199 200 201 202 203 204 205 206 | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | + |
}
db_open_repository(g.argv[3]);
}
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);
}
/*
** If user chooses to use HTTP Authentication over unencrypted HTTP,
|
| ︙ |