Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | The 'g.zHttpsURL' variable should be populated even when the --baseurl option is used. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | httpsBaseUrl |
| Files: | files | file ages | folders |
| SHA1: |
c45195f12375dd64da867f18e01dede2 |
| User & Date: | mistachkin 2016-02-01 04:11:05.533 |
Context
|
2016-02-01
| ||
| 04:11 | Comment fix. ... (check-in: c3a17f81cf user: mistachkin tags: httpsBaseUrl) | |
| 04:11 | The 'g.zHttpsURL' variable should be populated even when the --baseurl option is used. ... (check-in: c45195f123 user: mistachkin tags: httpsBaseUrl) | |
|
2016-01-31
| ||
| 21:03 | Minor corrections to comments for login_verify_csrf_secret(). ... (check-in: 3c47e0c66a user: mistachkin tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
1395 1396 1397 1398 1399 1400 1401 |
const char *zMode;
const char *zCur;
if( g.zBaseURL!=0 ) return;
if( zAltBase ){
int i, n, c;
g.zTop = g.zBaseURL = mprintf("%s", zAltBase);
| | > > > > > > | 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 |
const char *zMode;
const char *zCur;
if( g.zBaseURL!=0 ) return;
if( zAltBase ){
int i, n, c;
g.zTop = g.zBaseURL = mprintf("%s", zAltBase);
if( memcmp(g.zTop, "http://", 7)==0 ){
/* its HTTP, replace prefix with HTTPS. */
g.zHttpsURL = mprintf("https://%s", &g.zTop[7]);
}else if( memcmp(g.zTop,"https://",8)==0 ){
/* its already HTTPS, use it. */
g.zHttpsURL = mprintf("%s", g.zTop);
}else{
fossil_fatal("argument to --baseurl should be 'http://host/path'"
" or 'https://host/path'");
}
for(i=n=0; (c = g.zTop[i])!=0; i++){
if( c=='/' ){
n++;
if( n==3 ){
|
| ︙ | ︙ |