Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added --admin-user|-A USERNAME to the new command which will set the default admin user name. If not supplied, the existing mechanism is used to determine the default user name. This implements [9195b1e5f3]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b8d812efb91513b22723b65f8b52a1c7 |
User & Date: | jeremy_c 2010-01-26 14:38:12.000 |
References
2010-01-30
| ||
15:32 | In addition to ticket [9195b1e5f3] and commit [b8d812efb9], this adds the -A|--admin-user options to the clone command. ... (check-in: d3e38231f2 user: jeremy_c tags: trunk) | |
2010-01-26
| ||
22:54 | • Ticket [1aaadb4f0d] fossil: SQL error: out of memory status still Open with 1 other change ... (artifact: 1727021750 user: anonymous) | |
14:41 | • Ticket [9195b1e5f3] Support "fossil new myfossil.fsl user=root password=test1234" status still Closed with 1 other change ... (artifact: 7889a2195d user: jeremy_c) | |
Context
2010-04-22
| ||
15:18 | Back out check-in [fc23960258211b5bc]. This will close ticket [a534227710d3e5] but re-open ticket [3b1533a090eebd09d]. ... (check-in: f7ec914037 user: drh tags: trunk) | |
2010-01-27
| ||
07:52 | fix [3b1533a090eebd09da7121ab3fc9e3f6a7fbd6f5] - add "Sync now" to Admin page ... (check-in: fc23960258 user: ron tags: trunk) | |
2010-01-26
| ||
14:38 | Added --admin-user|-A USERNAME to the new command which will set the default admin user name. If not supplied, the existing mechanism is used to determine the default user name. This implements [9195b1e5f3]. ... (check-in: b8d812efb9 user: jeremy_c tags: trunk) | |
2010-01-25
| ||
19:27 | Form input label for new wiki search ([07bd8796dc]) reflects it's current function of only searching page _titles_. ... (check-in: 80bcc3a18e user: bch tags: trunk) | |
Changes
Changes to src/clone.c.
︙ | ︙ | |||
64 65 66 67 68 69 70 | "DELETE FROM blob WHERE rid IN private;" "DELETE FROM delta wHERE rid IN private;" "DELETE FROM private;" ); shun_artifacts(); g.zLogin = db_text(0, "SELECT login FROM user WHERE cap LIKE '%%s%%'"); if( g.zLogin==0 ){ | | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | "DELETE FROM blob WHERE rid IN private;" "DELETE FROM delta wHERE rid IN private;" "DELETE FROM private;" ); shun_artifacts(); g.zLogin = db_text(0, "SELECT login FROM user WHERE cap LIKE '%%s%%'"); if( g.zLogin==0 ){ db_create_default_users(1,0); } printf("Repository cloned into %s\n", g.argv[3]); }else{ db_create_repository(g.argv[3]); db_open_repository(g.argv[3]); db_begin_transaction(); db_record_repository_filename(g.argv[3]); db_initial_setup(0, 0, 0); user_select(); db_set("content-schema", CONTENT_SCHEMA, 0); db_set("aux-schema", AUX_SCHEMA, 0); db_set("last-sync-url", g.argv[2], 0); db_multi_exec( "REPLACE INTO config(name,value)" " VALUES('server-code', lower(hex(randomblob(20))));" |
︙ | ︙ |
Changes to src/configure.c.
︙ | ︙ | |||
485 486 487 488 489 490 491 | for(i=0; i<count(aConfig); i++){ const char *zName = aConfig[i].zName; if( (aConfig[i].groupMask & mask)==0 ) continue; if( zName[0]!='@' ){ db_multi_exec("DELETE FROM config WHERE name=%Q", zName); }else if( strcmp(zName,"@user")==0 ){ db_multi_exec("DELETE FROM user"); | | | 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 | for(i=0; i<count(aConfig); i++){ const char *zName = aConfig[i].zName; if( (aConfig[i].groupMask & mask)==0 ) continue; if( zName[0]!='@' ){ db_multi_exec("DELETE FROM config WHERE name=%Q", zName); }else if( strcmp(zName,"@user")==0 ){ db_multi_exec("DELETE FROM user"); db_create_default_users(0, 0); }else if( strcmp(zName,"@concealed")==0 ){ db_multi_exec("DELETE FROM concealed"); }else if( strcmp(zName,"@shun")==0 ){ db_multi_exec("DELETE FROM shun"); }else if( strcmp(zName,"@reportfmt")==0 ){ db_multi_exec("DELETE FROM reportfmt"); } |
︙ | ︙ |
Changes to src/construct.c.
︙ | ︙ | |||
138 139 140 141 142 143 144 | /* Create the foundation */ db_create_repository(zRepository); db_open_repository(zRepository); db_open_config(0); db_begin_transaction(); | | | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | /* Create the foundation */ db_create_repository(zRepository); db_open_repository(zRepository); db_open_config(0); db_begin_transaction(); db_initial_setup(0, 0, 1); printf("project-id: %s\n", db_get("project-code", 0)); printf("server-id: %s\n", db_get("server-code", 0)); printf("admin-user: %s (no password set yet!)\n", g.zLogin); printf("baseline: %s\n", db_text(0, "SELECT uuid FROM blob")); /* Scan origin and insert all files found inside */ |
︙ | ︙ |
Changes to src/db.c.
︙ | ︙ | |||
920 921 922 923 924 925 926 | ); isNewRepo = 1; } /* ** Create the default user accounts in the USER table. */ | | > > > | 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 | ); isNewRepo = 1; } /* ** Create the default user accounts in the USER table. */ void db_create_default_users(int setupUserOnly, const char *zDefaultUser){ const char *zUser; zUser = db_get("default-user", 0); if( zUser==0 ){ zUser = zDefaultUser; } if( zUser==0 ){ #ifdef __MINGW32__ zUser = getenv("USERNAME"); #else zUser = getenv("USER"); #endif } |
︙ | ︙ | |||
962 963 964 965 966 967 968 | ** new repositories. ** ** The zInitialDate parameter determines the date of the initial check-in ** that is automatically created. If zInitialDate is 0 then no initial ** check-in is created. The makeServerCodes flag determines whether or ** not server and project codes are invented for this repository. */ | | | | 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 | ** new repositories. ** ** The zInitialDate parameter determines the date of the initial check-in ** that is automatically created. If zInitialDate is 0 then no initial ** check-in is created. The makeServerCodes flag determines whether or ** not server and project codes are invented for this repository. */ void db_initial_setup (const char *zInitialDate, const char *zDefaultUser, int makeServerCodes){ char *zDate; Blob hash; Blob manifest; db_set("content-schema", CONTENT_SCHEMA, 0); db_set("aux-schema", AUX_SCHEMA, 0); if( makeServerCodes ){ db_multi_exec( "INSERT INTO config(name,value)" " VALUES('server-code', lower(hex(randomblob(20))));" "INSERT INTO config(name,value)" " VALUES('project-code', lower(hex(randomblob(20))));" ); } if( !db_is_global("autosync") ) db_set_int("autosync", 1, 0); if( !db_is_global("localauth") ) db_set_int("localauth", 0, 0); db_create_default_users(0, zDefaultUser); user_select(); if( zInitialDate ){ int rid; blob_zero(&manifest); blob_appendf(&manifest, "C initial\\sempty\\scheck-in\n"); zDate = db_text(0, "SELECT datetime(%Q)", zInitialDate); |
︙ | ︙ | |||
1006 1007 1008 1009 1010 1011 1012 | manifest_crosslink(rid, &manifest); } } /* ** COMMAND: new ** | | > > > > > > > > > > > | | 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 | manifest_crosslink(rid, &manifest); } } /* ** COMMAND: new ** ** Usage: %fossil new ?OPTIONS? FILENAME ** ** Create a repository for a new project in the file named FILENAME. ** This command is distinct from "clone". The "clone" command makes ** a copy of an existing project. This command starts a new project. ** ** By default, your current login name is used to create the default ** admin user. This can be overridden using the -A|--admin-user ** parameter. ** ** Options: ** ** --admin-user|-A USERNAME ** */ void create_repository_cmd(void){ char *zPassword; const char *zDate; /* Date of the initial check-in */ const char *zDefaultUser; /* Optional name of the default user */ zDate = find_option("date-override",0,1); zDefaultUser = find_option("admin-user","A",1); if( zDate==0 ) zDate = "now"; if( g.argc!=3 ){ usage("REPOSITORY-NAME"); } db_create_repository(g.argv[2]); db_open_repository(g.argv[2]); db_open_config(0); db_begin_transaction(); db_initial_setup(zDate, zDefaultUser, 1); db_end_transaction(0); printf("project-id: %s\n", db_get("project-code", 0)); printf("server-id: %s\n", db_get("server-code", 0)); zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin); printf("admin-user: %s (initial password is \"%s\")\n", g.zLogin, zPassword); } |
︙ | ︙ |