]> git.p6c8.net - devedit.git/blob - modules/Output.pm
- Now checking if we have enough permissions to copy a file
[devedit.git] / modules / Output.pm
1 package Output;
2
3 #
4 # Dev-Editor - Module Output
5 #
6 # HTML generating routines
7 #
8 # Author: Patrick Canterino <patshaping@gmx.net>
9 # Last modified: 2003-10-13
10 #
11
12 use strict;
13
14 use vars qw(@EXPORT);
15
16 use CGI qw(header);
17 use HTML::Entities;
18 use Tool;
19
20 ### Export ###
21
22 use base qw(Exporter);
23
24 @EXPORT = qw(htmlhead
25 htmlfoot
26 error
27 abort
28 error_in_use
29 equal_url
30 dir_link);
31
32 # htmlhead()
33 #
34 # Generate the head of a HTML document
35 # (a text/html HTTP header will also be created)
36 #
37 # Params: Title and heading
38 #
39 # Return: Head for the HTML document
40
41 sub htmlhead($)
42 {
43 my $title = shift;
44
45 my $html = header(-type => "text/html");
46
47 $html .= <<END;
48 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
49 "http://www.w3.org/TR/html4/loose.dtd">
50
51 <html>
52 <head>
53 <title>$title</title>
54 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
55 </head>
56 <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
57
58 <h1>$title</h1>
59
60 END
61
62 return $html;
63 }
64
65 # htmlfoot()
66 #
67 # Generate the foot of a HTML document
68 #
69 # Params: -nothing-
70 #
71 # Return: Foot for the HTML document
72
73 sub htmlfoot
74 {
75 return "\n</body>\n</html>";
76 }
77
78 # error()
79 #
80 # Format an error message
81 #
82 # Params: 1. Error message
83 # 2. Virtual path to which a link should be displayed (optional)
84 #
85 # Return: Formatted message (Scalar Reference)
86
87 sub error($;$)
88 {
89 my ($message,$path) = @_;
90
91 my $output = htmlhead("Error");
92 $output .= "<p>$message</p>";
93
94 if($path)
95 {
96 $path = encode_entities($path);
97
98 $output .= "\n\n";
99 $output .= "<p><a href=\"$ENV{'SCRIPT_NAME'}?command=show&file=$path\">Back to $path</a></p>";
100 }
101
102 $output .= htmlfoot;
103
104 return \$output;
105 }
106
107 # abort()
108 #
109 # Print an error message and exit script
110 # ^^^^^
111 #
112 # Params: Error message
113
114 sub abort($)
115 {
116 my $output = error(shift);
117 print $$output;
118 exit;
119 }
120
121 # error_in_use()
122 #
123 # Create a message, that a file is currently in use
124 #
125 # Params: File, which is in use
126 #
127 # Return: Formatted message (Scalar Reference)
128
129 sub error_in_use($)
130 {
131 my $file = shift;
132
133 return error("The file '".encode_entities($file)."' is currently editet by someone else.",upper_path($file));
134 }
135
136 # equal_url()
137 #
138 # Create an "equals"-link and print it out
139 #
140 # Params: 1. HTTP root
141 # 2. Relative path
142 #
143 # Return: Formatted link (String)
144
145 sub equal_url($$)
146 {
147 my ($root,$path) = @_;
148 my $url;
149
150 $root =~ s!/$!!;
151 $path =~ s!^/!!;
152 $url = $root."/".$path;
153 $url = encode_entities($url);
154
155 return "<p>(equals <a href=\"$url\" target=\"_blank\">$url</a>)</p>\n\n";
156 }
157
158 # dir_link()
159 #
160 # Create the link to the directory of a file and
161 # print it out
162 #
163 # Params: File
164 #
165 # Return: Formatted link (String)
166
167 sub dir_link($)
168 {
169 my $dir = upper_path(shift);
170 $dir = encode_entities($dir);
171
172 return "<p><a href=\"$ENV{'SCRIPT_NAME'}?command=show&file=$dir\">Back to $dir</a></p>\n\n";
173 }
174
175 # it's true, baby ;-)
176
177 1;
178
179 #
180 ### End ###

patrick-canterino.de