X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setupStep8.inc;h=822940453d043f7fe692f7fd8747538fdfab2050;hb=3536e72afaac8a39178a3927e34c5c47bf979a69;hp=8a296489f5c55e29de9b03e9c06b6fdea9f459ae;hpb=d53817cd8896845684073ac43d87de447bfeca6b;p=gosa.git diff --git a/setup/class_setupStep8.inc b/setup/class_setupStep8.inc index 8a296489f..822940453 100644 --- a/setup/class_setupStep8.inc +++ b/setup/class_setupStep8.inc @@ -28,6 +28,12 @@ class setup_step_8 extends setup_step var $last_backup_name = ""; function setup_step_8() + { + $this->update_strings(); + } + + + function update_strings() { $this->s_title = _("Configuration file"); $this->s_info = _("In this step the configuration file will be created."); @@ -37,8 +43,11 @@ class setup_step_8 extends setup_step function get_conf_data() { - return("currently not implemented."); - } + $smarty = get_smarty(); + $smarty->assign("cv",$this->parent->captured_values); + $str = $smarty->fetch(CONFIG_TEMPLATE_DIR.$this->gosa_conf_name); + return($str); + } function execute() @@ -61,13 +70,24 @@ class setup_step_8 extends setup_step /* Downlaod config */ if(isset($_POST['getconf'])){ + header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); header("Cache-Control: post-check=0, pre-check=0"); header("Content-type: text/plain"); - header('Content-Disposition: attachment; filename="gosa.conf"'); + + if (preg_match('/MSIE 5.5/', $_SERVER['HTTP_USER_AGENT']) || + preg_match('/MSIE 6.0/', $_SERVER['HTTP_USER_AGENT'])){ + header('Content-Disposition: filename="gosa.conf"'); + } else { + header('Content-Disposition: attachment; filename="gosa.conf"'); + } + + $str = $this->get_conf_data(); + $str = preg_replace("/\n[ ]*\n/","",$str); + echo $this->get_conf_data(); exit(); } @@ -95,7 +115,7 @@ class setup_step_8 extends setup_step }else{ $data = $this->get_conf_data(); - if(!fwrite($fp,strlen($data))){ + if(!fwrite($fp,$data)){ $err_msg = sprintf(_("Can not write file '%s'. Please check folder permission and try again. Or use the manual method if this can not be fixed anyway."),CONFIG_DIR.$this->gosa_conf_name); $abort =TRUE; }else{