Revision 633
Added by doc almost 17 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
14 | 14 |
28-Jan-2008 Christian Sommer |
15 |
! added some more backend layout modifications |
|
16 |
! corrected bug in NL.php language file |
|
15 | 17 |
! added missing session cookie forgotten in Changeset 593 |
16 | 18 |
! added possibility to select the default backend language during installation process |
17 | 19 |
! Re-introduced Changeset 593 (filename in pages/ from page_title instead of menu_title) |
trunk/wb/admin/media/browse.html | ||
---|---|---|
41 | 41 |
</head> |
42 | 42 |
<body> |
43 | 43 |
|
44 |
<table cellpadding="4" cellspacing="0" border="0" width="100%" style="border-bottom: 1px solid #666666; width: 100%;">
|
|
45 |
<tr style="background-color: #DDDDDD;">
|
|
44 |
<table cellpadding="4" cellspacing="0" border="0" width="100%" style="border-bottom: 2px solid #35373a; width: 100%;">
|
|
45 |
<tr style="background-color: #e6f0fc;">
|
|
46 | 46 |
<td width="16" align="center" style="padding-left: 10px;"> |
47 | 47 |
<a href="{PARENT_DIR_LINK}"> |
48 | 48 |
<img src="../images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" /> |
trunk/wb/admin/media/browse.php | ||
---|---|---|
97 | 97 |
} |
98 | 98 |
// Now parse these values to the template |
99 | 99 |
$temp_id = 0; |
100 |
$row_bg_color = 'EEEEEE';
|
|
100 |
$row_bg_color = 'BDD3EC';
|
|
101 | 101 |
if(isset($DIR)) { |
102 | 102 |
sort($DIR); |
103 | 103 |
foreach($DIR AS $name) { |
... | ... | |
115 | 115 |
); |
116 | 116 |
$template->parse('list', 'list_block', true); |
117 | 117 |
// Code to alternate row colors |
118 |
if($row_bg_color == 'DEDEDE') {
|
|
119 |
$row_bg_color = 'EEEEEE';
|
|
118 |
if($row_bg_color == 'D2E1F2') {
|
|
119 |
$row_bg_color = 'BDD3EC';
|
|
120 | 120 |
} else { |
121 |
$row_bg_color = 'DEDEDE';
|
|
121 |
$row_bg_color = 'D2E1F2';
|
|
122 | 122 |
} |
123 | 123 |
} |
124 | 124 |
} |
... | ... | |
138 | 138 |
); |
139 | 139 |
$template->parse('list', 'list_block', true); |
140 | 140 |
// Code to alternate row colors |
141 |
if($row_bg_color == 'DEDEDE') {
|
|
142 |
$row_bg_color = 'EEEEEE';
|
|
141 |
if($row_bg_color == 'D2E1F2') {
|
|
142 |
$row_bg_color = 'BDD3EC';
|
|
143 | 143 |
} else { |
144 |
$row_bg_color = 'DEDEDE';
|
|
144 |
$row_bg_color = 'D2E1F2';
|
|
145 | 145 |
} |
146 | 146 |
} |
147 | 147 |
} |
trunk/wb/admin/media/template.html | ||
---|---|---|
2 | 2 |
|
3 | 3 |
<style> |
4 | 4 |
iframe { |
5 |
border: 1px solid #999999;
|
|
5 |
border: 2px solid #35373a;
|
|
6 | 6 |
} |
7 | 7 |
</style> |
8 | 8 |
|
trunk/wb/admin/pages/index.php | ||
---|---|---|
163 | 163 |
?> |
164 | 164 |
|
165 | 165 |
<li id="p<?php echo $page['parent']; ?>" style="padding: 2px 0px 2px 0px;"> |
166 |
<table width="720" cellpadding="1" cellspacing="0" border="0" style="background-color: #F0F0F0;">
|
|
166 |
<table width="720" cellpadding="1" cellspacing="0" border="0" style="background-color: #edf5fc;">
|
|
167 | 167 |
<tr> |
168 | 168 |
<td width="20" style="padding-left: <?php echo $page['level']*20; ?>px;"> |
169 | 169 |
<?php |
trunk/wb/languages/NL.php | ||
---|---|---|
439 | 439 |
$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'Uw gebruikersnaam en wachtwoord zijn verzonden naar het opgegeven e-mailadres'; |
440 | 440 |
$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'Sorry, het wachtwoord kan maximaal eens per uur worden aangepast.'; |
441 | 441 |
|
442 |
$$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welkom bij het website-beheer';
|
|
442 |
$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welkom bij het website-beheer'; |
|
443 | 443 |
$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'Waarschuwing, de installatiemap bestaat nog steeds!'; |
444 | 444 |
$MESSAGE['START']['CURRENT_USER'] = 'U bent ingelogd als'; |
445 | 445 |
|
Also available in: Unified diff
added some more backend layout modifications, corrected bug in NL.php language file