Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do no update the display cookie except when the user specifically changes the selectors on the /timeline submenu. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
802939b18d433e369ba4d2fb51aec2e0 |
User & Date: | drh 2018-03-17 23:11:39.980 |
Context
2018-03-19
| ||
20:24 | If the dp= and r= query parameters are both supplied to /timeline, use only the r= query parameter and ignore dp=. ... (check-in: 7c690c08 user: drh tags: trunk) | |
19:55 | This doesn't quite work, so I'll try a different approach. Was: When clicking on the "Move to branch ...." links in the timeline, show only check-ins relevant to that branch. ... (Closed-Leaf check-in: 63b967e0 user: drh tags: mistake) | |
2018-03-17
| ||
23:11 | Do no update the display cookie except when the user specifically changes the selectors on the /timeline submenu. ... (check-in: 802939b1 user: drh tags: trunk) | |
22:32 | Fix harmless compiler warning. ... (check-in: e2a90ed5 user: mistachkin tags: trunk) | |
Changes
Changes to src/cookies.c.
︙ | ︙ | |||
171 172 173 174 175 176 177 | cookie_readwrite(zQP, zPName, zDflt, COOKIE_READ|COOKIE_WRITE); } /* Update the user preferences cookie, if necessary, and shut down this ** module */ void cookie_render(void){ | | | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | cookie_readwrite(zQP, zPName, zDflt, COOKIE_READ|COOKIE_WRITE); } /* Update the user preferences cookie, if necessary, and shut down this ** module */ void cookie_render(void){ if( cookies.bChanged && P("udc")!=0 ){ Blob new; int i; blob_init(&new, 0, 0); for(i=0;i<cookies.nParam;i++){ if( i>0 ) blob_append(&new, ",", 1); blob_appendf(&new, "%s=%T", cookies.aParam[i].zPName, cookies.aParam[i].zPValue); |
︙ | ︙ |
Changes to src/style.c.
︙ | ︙ | |||
541 542 543 544 545 546 547 | ** creation of the submenu until the end so that we can add elements ** to the submenu while generating page text. */ cgi_destination(CGI_HEADER); if( nSubmenu+nSubmenuCtrl>0 ){ int i; if( nSubmenuCtrl ){ | | > | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | ** creation of the submenu until the end so that we can add elements ** to the submenu while generating page text. */ cgi_destination(CGI_HEADER); if( nSubmenu+nSubmenuCtrl>0 ){ int i; if( nSubmenuCtrl ){ @ <form id='f01' method='GET' action='%R/%s(g.zPath)'> @ <input type='hidden' name='udc' value='1'> } @ <div class="submenu"> if( nSubmenu>0 ){ qsort(aSubmenu, nSubmenu, sizeof(aSubmenu[0]), submenuCompare); for(i=0; i<nSubmenu; i++){ struct Submenu *p = &aSubmenu[i]; if( p->zLink==0 ){ |
︙ | ︙ |