X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fadmin%2Fedit.php;h=eab2e67719628ec94129108e10f28c2dae9dd601;hb=eb413b129f2dc117da4794e9f2a5ff67e2ed3ecd;hp=a0991073b0d0ab391f7282d0c83d532f0dea17fa;hpb=f7c51650828ecfd52d3b2995e6980505ed5ad688;p=diogenes.git diff --git a/include/admin/edit.php b/include/admin/edit.php index a099107..eab2e67 100644 --- a/include/admin/edit.php +++ b/include/admin/edit.php @@ -27,6 +27,14 @@ $myfile = $bbarrel->spool->spoolPath($dir,$file); $action = isset($_REQUEST["action"]) ? $_REQUEST["action"] : ""; switch($action) { +case "set_stylesheet": + if (isset($_REQUEST['preset_style_sheet'])) { + $sheet = $_REQUEST['preset_style_sheet']; + $page->info(__("Copying style sheet") . " $sheet.css"); + $rcs->commit($dir,$file,file_get_contents("{$globals->root}/styles/$sheet.css"), "replaced by $sheet.css"); + } + break; + case "update": // update the current file with form contents if (isset($_REQUEST['file_content'])) { @@ -49,6 +57,14 @@ $page->assign('msg_log',__("log message")); $page->assign('file_content',htmlspecialchars(file_get_contents($myfile), ENT_NOQUOTES)); $page->assign('submit',__("Submit")); +// menu for stylesheet replacement +if ($file == $globals->cssfile) { + $page->assign('style_sheets', $globals->style_sheets); + $page->assign('preset_style_sheet', $globals->barrel_style_sheet); + $page->assign('msg_set_stylesheet', __("replace current style sheet by a preset one")); + $page->assign('msg_replace',__("Replace")); +} + // top toolbar $page->toolbar(__("Page"), $bpage->make_toolbar()); $page->toolbar(__("File"), $bfile->make_toolbar(true));