Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Merge latest trunk |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | svn-import |
| Files: | files | file ages | folders |
| SHA1: |
fef7e1f91141e9ee5fd6a36232d34c82 |
| User & Date: | baruch 2014-11-05 09:12:49.597 |
Context
|
2014-11-05
| ||
| 09:36 | Fix name of trunk when using --trunk option check-in: 5488f7dd82 user: baruch tags: svn-import | |
| 09:12 | Merge latest trunk check-in: fef7e1f911 user: baruch tags: svn-import | |
| 09:09 | Fix issue with branches having wrong parent. Needs cleanup check-in: 5f4e2db949 user: baruch tags: svn-import | |
|
2014-11-04
| ||
| 19:24 | Fix for problem reported on ML: "Fossil CGI mystery: crashing at repositories", by Taras Zakharko. cause of problem: option --empty was re-used for another purpose, renamed to "---docker" check-in: c34003b1a9 user: jan.nijtmans tags: trunk | |
Changes
Changes to Dockerfile.
| ︙ | ︙ | |||
22 23 24 25 26 27 28 | ### Build is done, remove modules no longer needed RUN yum remove -y gcc make zlib-devel openssl-devel tcl-devel && yum clean all USER fossil ENV HOME /opt/fossil | | > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ### Build is done, remove modules no longer needed RUN yum remove -y gcc make zlib-devel openssl-devel tcl-devel && yum clean all USER fossil ENV HOME /opt/fossil RUN fossil new --docker -A admin /opt/fossil/repository.fossil RUN fossil user password -R /opt/fossil/repository.fossil admin admin RUN fossil cache init -R /opt/fossil/repository.fossil EXPOSE 8080 CMD ["/usr/bin/fossil", "server", "/opt/fossil/repository.fossil"] |
Changes to src/db.c.
| ︙ | ︙ | |||
1496 1497 1498 1499 1500 1501 1502 | ** associated permissions will be copied. ** ** Options: ** --template FILE copy settings from repository file ** --admin-user|-A USERNAME select given USERNAME as admin user ** --date-override DATETIME use DATETIME as time of the initial checkin ** (default: do not create an initial checkin) | < | > | 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 |
** associated permissions will be copied.
**
** Options:
** --template FILE copy settings from repository file
** --admin-user|-A USERNAME select given USERNAME as admin user
** --date-override DATETIME use DATETIME as time of the initial checkin
** (default: do not create an initial checkin)
**
** See also: clone
*/
void create_repository_cmd(void){
char *zPassword;
const char *zTemplate; /* Repository from which to copy settings */
const char *zDate; /* Date of the initial check-in */
const char *zDefaultUser; /* Optional name of the default user */
int makeServerCodes;
zTemplate = find_option("template",0,1);
zDate = find_option("date-override",0,1);
zDefaultUser = find_option("admin-user","A",1);
makeServerCodes = find_option("docker", 0, 0)==0;
find_option("empty", 0, 0); /* deprecated */
/* We should be done with options.. */
verify_all_options();
if( g.argc!=3 ){
usage("REPOSITORY-NAME");
}
db_create_repository(g.argv[2]);
|
| ︙ | ︙ |