405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
+
+
+
+
+
|
** %fossil configuration reset AREA
**
** Restore the configuration to the default. AREA as above.
**
** WARNING: Do not import or merge or pull configurations from an
** untrusted source. The inbound configuration is not checked for
** safety and can introduce security vulnerabilities.
**
** The different parts of this configuration can also be controlled
** using the gui:
** * Go to page <a href="setup">Admin</a> and use the subcommands
**
*/
void configuration_cmd(void){
int n;
const char *zMethod;
if( g.argc<3 ){
usage("export|import|merge|pull|reset ...");
}
|