Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | fix [3b1533a090eebd09da7121ab3fc9e3f6a7fbd6f5] - add "Sync now" to Admin page |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
fc23960258211b5bc752a82c429d5fb3 |
| User & Date: | ron 2010-01-27 07:52:13.000 |
References
|
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 | • Fixed ticket [3b1533a090]: 'sync' command in the web-interface plus 2 other changes ... (artifact: 07e99c21d7 user: ron) | |
Context
|
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-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) | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
"Change the logo image for the server");
setup_menu_entry("Shunned", "shun",
"Show artifacts that are shunned by this repository");
setup_menu_entry("Log", "rcvfromlist",
"A record of received artifacts and their sources");
setup_menu_entry("Stats", "stat",
"Display repository statistics");
@ </table>
style_footer();
}
/*
** WEBPAGE: setup_ulist
| > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
"Change the logo image for the server");
setup_menu_entry("Shunned", "shun",
"Show artifacts that are shunned by this repository");
setup_menu_entry("Log", "rcvfromlist",
"A record of received artifacts and their sources");
setup_menu_entry("Stats", "stat",
"Display repository statistics");
setup_menu_entry("Sync now", "setup_sync",
"Sync this repository with the 'remote-url' it was set up with");
@ </table>
style_footer();
}
/*
** WEBPAGE: setup_ulist
|
| ︙ | ︙ | |||
1135 1136 1137 1138 1139 1140 1141 | @ <p><b>Note:</b> Your browser has probably cached the logo image, so @ you will probably need to press the Reload button on your browser after @ changing the logo to provoke your browser to reload the new logo image. @ </p> style_footer(); db_end_transaction(0); } | > > > > > > > > > > | 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 |
@ <p><b>Note:</b> Your browser has probably cached the logo image, so
@ you will probably need to press the Reload button on your browser after
@ changing the logo to provoke your browser to reload the new logo image.
@ </p>
style_footer();
db_end_transaction(0);
}
/*
** WEBPAGE: setup_sync
*/
void setup_sync(void){
sync_cmd();
style_header("Synchronized");
@ <p>The project has been synchronized</p>
style_footer();
}
|