3 # Copyright 2007 Liblime Ltd
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 $debug = $ENV{DEBUG} || 0;
34 my $type = $input->param('type') || '';
35 my $referer = $input->param('referer') || '';
36 my $oldreferer = $referer;
37 my $help = $input->param('help') || '';
38 # strip any DOS-newlines that TinyMCE may have sneaked in
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44 template_name => "help/edithelp.tmpl",
54 reserveforothers => 1,
64 sub _get_filepath ($;$) {
66 $referer =~ /.*koha\/(.+)\.pl.*/;
67 my $from = "help/$1.tmpl";
68 my $htdocs = C4::Context->config('intrahtdocs');
69 my ($theme, $lang) = themelanguage( $htdocs, $from, "intranet", $input );
70 $debug and print STDERR "help filepath: $htdocs/$theme/$lang/modules/$from";
71 return "$htdocs/$theme/$lang/modules/$from";
74 if ( $type eq 'addnew' ) {
77 elsif ( $type eq 'create' || $type eq 'save' ) {
78 my $file = _get_filepath($referer);
79 unless (open (OUTFILE, ">$file")) {$error = "Cannot write file: '$file'";} else {
80 #open (OUTFILE, ">$file") or die "Cannot write file: '$file'"; # unlikely death, since we just checked
81 # file is open write to it
82 print OUTFILE "<!-- TMPL_INCLUDE NAME=\"help-top.inc\" -->\n";
83 print OUTFILE ($type eq 'create') ? "<div class=\"main\">\n$help\n</div>" : $help;
84 print OUTFILE "\n<!-- TMPL_INCLUDE NAME=\"help-bottom.inc\" -->\n";
86 print $input->redirect("/cgi-bin/koha/help.pl?url=$oldreferer");
90 elsif ( $type eq 'modify' ) {
91 # open file load data, kill include calls, pass data to the template
92 my $file = _get_filepath($referer, 1); # 2nd argument triggers themelanguage call
94 $error = "Cannot read file: '$file'.";
96 (-w $file) or $error =
97 "WARNING: You will not be able save, because your webserver cannot write to '$file'. Contact your admin about help file permissions.";
98 open (INFILE, $file) or die "Cannot read file '$file'"; # unlikely death, since we just checked
100 while ( my $inp = <INFILE> ) {
101 unless ( $inp =~ /TMPL\_INCLUDE/ ) {
106 $template->param( 'help' => $help );
112 'referer' => $referer,
115 ($error) and $template->param('error' => $error);
116 output_html_with_http_headers $input, "", $template->output;