Revision 65867e61
Von Sven Schöling vor mehr als 12 Jahren hinzugefügt
SL/Common.pm | ||
---|---|---|
43 | 43 |
} |
44 | 44 |
|
45 | 45 |
sub tmpname { |
46 |
return "/tmp/lx-office-tmp-" . unique_id();
|
|
46 |
return "/tmp/kivitendo-tmp-" . unique_id();
|
|
47 | 47 |
} |
48 | 48 |
|
49 | 49 |
sub retrieve_parts { |
SL/Form.pm | ||
---|---|---|
1108 | 1108 |
$suffix = $self->{IN}; |
1109 | 1109 |
$suffix =~ s/.*\.//; |
1110 | 1110 |
($temp_fh, $self->{tmpfile}) = File::Temp::tempfile( |
1111 |
'lx-office-printXXXXXX',
|
|
1111 |
'kivitendo-printXXXXXX',
|
|
1112 | 1112 |
SUFFIX => '.' . ($suffix || 'tex'), |
1113 | 1113 |
DIR => $userspath, |
1114 | 1114 |
UNLINK => 1, |
bin/mozilla/datev.pl | ||
---|---|---|
138 | 138 |
$main::auth->assert('datev_export'); |
139 | 139 |
|
140 | 140 |
my $tmp_name = Common->tmpname(); |
141 |
my $zip_name = strftime("lx-office-datev-export-%Y%m%d.zip", localtime(time()));
|
|
141 |
my $zip_name = strftime("kivitendo-datev-export-%Y%m%d.zip", localtime(time()));
|
|
142 | 142 |
|
143 | 143 |
my $cwd = getcwd(); |
144 | 144 |
|
templates/webpages/admin/adminlogin.html | ||
---|---|---|
4 | 4 |
<body class="admin" onload="document.getElementById('rpw').focus()"> |
5 | 5 |
<div align="center"> |
6 | 6 |
|
7 |
<a href="http://www.lx-office.org"><img src="image/lx-office-erp.png" border="0"></a>
|
|
7 |
<a href="http://www.kivitendo.org"><img src="image/kivitendo.png" border="0"></a>
|
|
8 | 8 |
|
9 | 9 |
<h3 class="login">[% 'Lx-Office' | $T8 %] [% HTML.escape(version) %]</h3> |
10 | 10 |
|
... | ... | |
27 | 27 |
|
28 | 28 |
</form> |
29 | 29 |
|
30 |
<p>[% 'Lx-Office Homepage' | $T8 %]: <a href="http://lx-office.org" target="_blank" title="[% 'Lx-Office Homepage' | $T8 %]">http://lx-office.org</a></p>
|
|
30 |
<p>[% 'kivitendo Homepage' | $T8 %]: <a href="http://kivitendo.de" target="_blank" title="[% 'kivitendo Homepage' | $T8 %]">http://kivitendo.de</a></p>
|
|
31 | 31 |
|
32 | 32 |
<p><a href="login.pl" target="_top">[%- LxERP.t8('Back to the login page') %]</a></p> |
33 | 33 |
|
templates/webpages/ct/form_header.html | ||
---|---|---|
150 | 150 |
[% ELSE %][% 'Homepage' | $T8 %] |
151 | 151 |
[% END %] |
152 | 152 |
</th> |
153 |
<td><input name="homepage" size="45" title="[% 'Example: http://lx-office.org' | $T8 %]" value="[% HTML.escape(homepage) %]"></td>
|
|
153 |
<td><input name="homepage" size="45" title="[% 'Example: http://kivitendo.de' | $T8 %]" value="[% HTML.escape(homepage) %]"></td>
|
|
154 | 154 |
</tr> |
155 | 155 |
|
156 | 156 |
<tr> |
templates/webpages/login/company_logo.html | ||
---|---|---|
4 | 4 |
<noscript> |
5 | 5 |
[% INCLUDE 'generic/information.html' |
6 | 6 |
title_information = LxERP.t8('Your browser does not currently support Javascript.'), |
7 |
label_information = LxERP.t8('A lot of the usability of Lx-Office has been enhanced with javascript. Although it is currently possible to use every aspect of Lx-Office without javascript, we strongly recommend it. In a future version this may change and javascript may be necessary to access advanced features.'),
|
|
7 |
label_information = LxERP.t8('A lot of the usability of kivitendo has been enhanced with javascript. Although it is currently possible to use every aspect of kivitendo without javascript, we strongly recommend it. In a future version this may change and javascript may be necessary to access advanced features.'),
|
|
8 | 8 |
%] |
9 | 9 |
</noscript> |
10 | 10 |
<center> |
11 | 11 |
<a class="nomobile" href="http://www.kivitendo.de" target="_top"><img src="image/kivitendo.png" border="0" title="[% 'kivitendo Homepage' | $T8 %]"></a> |
12 | 12 |
|
13 |
<h3 class="login">[% 'Lx-Office' | $T8 %] [% version %]</h3>
|
|
13 |
<h3 class="login">[% 'kivitendo' | $T8 %] [% version %]</h3>
|
|
14 | 14 |
|
15 | 15 |
<p>[% 'companylogo_subtitle' | $T8 %]</p> |
16 | 16 |
<p> |
... | ... | |
45 | 45 |
<td>[% HTML.escape(interface) %]</td> |
46 | 46 |
</tr> |
47 | 47 |
<tr class="nomobile"> |
48 |
<th align="left">[% 'Lx-Office Homepage' | $T8 %]:</th>
|
|
49 |
<td><a href="http://lx-office.org" target="_blank" title="[% 'Lx-Office Homepage' | $T8 %]">http://lx-office.org</a></td>
|
|
48 |
<th align="left">[% 'kivitendo Homepage' | $T8 %]:</th>
|
|
49 |
<td><a href="http://kivitendo.de" target="_blank" title="[% 'kivitendo Homepage' | $T8 %]">http://kivitendo.de</a></td>
|
|
50 | 50 |
</tr> |
51 | 51 |
</table> |
52 | 52 |
</center> |
Auch abrufbar als: Unified diff
kivitendo rebranding