Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | 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" |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c34003b1a99569846fa9a0f0d3efd67c |
| User & Date: | jan.nijtmans 2014-11-04 19:24:11.285 |
Context
|
2014-11-05
| ||
| 21:54 | fixed a mis-escaped formatting token in the byweek report. check-in: 779f3407f5 user: stephan tags: trunk | |
| 09:12 | Merge latest trunk check-in: fef7e1f911 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 | |
| 13:28 | Make sure login_cookie_name() always returns a non-NULL answer, even if it does not know the answer. check-in: c96b12dd5e user: drh 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.
| ︙ | ︙ | |||
1494 1495 1496 1497 1498 1499 1500 | ** 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) | < | > | 1494 1495 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 |
** 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]);
|
| ︙ | ︙ |
Changes to src/login.c.
| ︙ | ︙ | |||
92 93 94 95 96 97 98 |
zCookieName = db_text(0,
"SELECT 'fossil-' || substr(value,1,16)"
" FROM config"
" WHERE name IN ('project-code','login-group-code')"
" ORDER BY name /*sort*/"
);
}
| | | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
zCookieName = db_text(0,
"SELECT 'fossil-' || substr(value,1,16)"
" FROM config"
" WHERE name IN ('project-code','login-group-code')"
" ORDER BY name /*sort*/"
);
}
return zCookieName;
}
/*
** Redirect to the page specified by the "g" query parameter.
** Or if there is no "g" query parameter, redirect to the homepage.
*/
static void redirect_to_g(void){
|
| ︙ | ︙ |