author | Dan |
Sun, 21 Dec 2008 15:35:46 -0500 | |
changeset 777 | 488665d49417 |
parent 744 | fcaae08f41a2 |
child 795 | ca0c8fc8da6b |
permissions | -rw-r--r-- |
0 | 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
81
d7fc25acd3f3
Replaced the menu in the admin theme with something much more visually pleasureable; minor fix in Special:UploadFile; finished patching a couple of XSS problems from Banshee; finished Admin:PageGroups; removed unneeded code in flyin.js; finished tag system (except tag cloud); 1.0.1 release candidate
Dan
parents:
80
diff
changeset
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
0 | 3 |
<head> |
4 |
<title>{PAGE_NAME} • {SITE_NAME}</title> |
|
5 |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
|
650
e45183014778
Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
Dan
parents:
594
diff
changeset
|
6 |
<link rel="stylesheet" type="text/css" href="{CDNPATH}/includes/clientside/css/enano-shared.css" /> |
594
738c61b498a6
A little more optimization work, client-side this time. I lied, no librijnadel2 here, but it's about to be merged in...
Dan
parents:
568
diff
changeset
|
7 |
<!-- BEGIN msie --> |
650
e45183014778
Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
Dan
parents:
594
diff
changeset
|
8 |
<link rel="stylesheet" type="text/css" href="{CDNPATH}/includes/clientside/css/enano-shared.css" /> |
594
738c61b498a6
A little more optimization work, client-side this time. I lied, no librijnadel2 here, but it's about to be merged in...
Dan
parents:
568
diff
changeset
|
9 |
<!-- END msie --> |
650
e45183014778
Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
Dan
parents:
594
diff
changeset
|
10 |
<link id="mdgCss" rel="stylesheet" href="{CDNPATH}/themes/{THEME_ID}/css/{STYLE_ID}.css" type="text/css" /> |
0 | 11 |
{JS_DYNAMIC_VARS} |
650
e45183014778
Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
Dan
parents:
594
diff
changeset
|
12 |
{JS_HEADER} |
568
3700f7124c2b
A bit of UX improvement to upgrade UI; updated readme for 1.1.4
Dan
parents:
565
diff
changeset
|
13 |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
304
diff
changeset
|
14 |
<script type="text/javascript"> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
304
diff
changeset
|
15 |
var tinymce_skin = 'o2k7'; |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
304
diff
changeset
|
16 |
</script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
304
diff
changeset
|
17 |
|
0 | 18 |
{ADDITIONAL_HEADERS} |
19 |
||
20 |
<script type="text/javascript"> |
|
71 | 21 |
// <![CDATA[ |
0 | 22 |
|
23 |
function collapseSidebar(side) |
|
24 |
{ |
|
25 |
elem = document.getElementById(side+'-sidebar'); |
|
26 |
if(!elem) return; |
|
27 |
counter = document.getElementById(side+'-sidebar-showbutton'); |
|
28 |
if(elem.style.display=='none') |
|
29 |
{ |
|
30 |
elem.style.display = 'block'; |
|
31 |
counter.style.display = 'none'; |
|
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
parents:
71
diff
changeset
|
32 |
elem.parentNode.style.width = ''; |
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
33 |
if ( !KILL_SWITCH ) |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
34 |
{ |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
35 |
createCookie(side+'_sidebar', 'open', 365); |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
36 |
} |
0 | 37 |
} else { |
38 |
elem.style.display = 'none'; |
|
39 |
counter.style.display = 'block'; |
|
40 |
elem.parentNode.style.width = '25px'; |
|
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
41 |
if ( !KILL_SWITCH ) |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
42 |
{ |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
43 |
createCookie(side+'_sidebar', 'collapsed', 365); |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
44 |
} |
0 | 45 |
} |
46 |
} |
|
47 |
||
48 |
/* |
|
49 |
window.onload = function() { |
|
50 |
if(typeof readCookie == 'function') |
|
51 |
{ |
|
52 |
if(readCookie('left_sidebar') =='collapsed') collapseSidebar('left'); |
|
53 |
if(readCookie('right_sidebar')=='collapsed') collapseSidebar('right'); |
|
54 |
} |
|
55 |
if(typeof mdgInnerLoader == 'function') |
|
56 |
mdgInnerLoader(); |
|
57 |
} |
|
58 |
*/ |
|
59 |
||
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
60 |
if ( typeof(KILL_SWITCH) != 'undefined' ) |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
61 |
{ |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
62 |
if ( !KILL_SWITCH ) |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
63 |
{ |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
64 |
var oxygenSidebarSetup = function() { |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
65 |
if(typeof readCookie == 'function') |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
66 |
{ |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
67 |
if(readCookie('left_sidebar') =='collapsed') collapseSidebar('left'); |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
68 |
if(readCookie('right_sidebar')=='collapsed') collapseSidebar('right'); |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
69 |
} |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
70 |
}; |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
71 |
addOnloadHook(oxygenSidebarSetup); |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
72 |
} |
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
73 |
} |
22
d0314575e2f0
More preliminary l10n work; userpage portal style basics implemented
Dan
parents:
0
diff
changeset
|
74 |
|
0 | 75 |
function ajaxRenameInline() |
76 |
{ |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
74
diff
changeset
|
77 |
if ( KILL_SWITCH || IE ) |
57
b354deeaa4c4
Vastly improved compatibility with older versions of IE, particularly 5.0, through the use of a kill switch that turns off all AJAX functions
Dan
parents:
32
diff
changeset
|
78 |
return false; |
0 | 79 |
// This trick is _so_ vBulletin... |
80 |
elem = document.getElementById('h2PageName'); |
|
81 |
if(!elem) return; |
|
82 |
elem.style.display = 'none'; |
|
81
d7fc25acd3f3
Replaced the menu in the admin theme with something much more visually pleasureable; minor fix in Special:UploadFile; finished patching a couple of XSS problems from Banshee; finished Admin:PageGroups; removed unneeded code in flyin.js; finished tag system (except tag cloud); 1.0.1 release candidate
Dan
parents:
80
diff
changeset
|
83 |
name = elem.firstChild.nodeValue; |
0 | 84 |
textbox = document.createElement('input'); |
85 |
textbox.type = 'text'; |
|
86 |
textbox.value = name; |
|
87 |
textbox.id = 'pageheading'; |
|
88 |
textbox.size = name.length + 7; |
|
89 |
textbox.onkeyup = function(e) { if(!e) return; if(e.keyCode == 13) ajaxRenameInlineSave(); if(e.keyCode == 27) ajaxRenameInlineCancel(); }; |
|
90 |
elem.parentNode.insertBefore(textbox, elem); |
|
91 |
document.onclick = ajaxRenameInlineCancel; |
|
744
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
92 |
|
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
93 |
load_component('l10n'); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
94 |
load_component('fadefilter'); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
95 |
load_component('messagebox'); |
0 | 96 |
} |
97 |
function ajaxRenameInlineSave() |
|
98 |
{ |
|
99 |
elem1 = document.getElementById('h2PageName'); |
|
100 |
elem2 = document.getElementById('pageheading'); |
|
101 |
if(!elem1 || !elem2) return; |
|
102 |
value = elem2.value; |
|
103 |
elem2.parentNode.removeChild(elem2); // just destroy the thing |
|
81
d7fc25acd3f3
Replaced the menu in the admin theme with something much more visually pleasureable; minor fix in Special:UploadFile; finished patching a couple of XSS problems from Banshee; finished Admin:PageGroups; removed unneeded code in flyin.js; finished tag system (except tag cloud); 1.0.1 release candidate
Dan
parents:
80
diff
changeset
|
104 |
elem1.removeChild(elem1.firstChild); |
d7fc25acd3f3
Replaced the menu in the admin theme with something much more visually pleasureable; minor fix in Special:UploadFile; finished patching a couple of XSS problems from Banshee; finished Admin:PageGroups; removed unneeded code in flyin.js; finished tag system (except tag cloud); 1.0.1 release candidate
Dan
parents:
80
diff
changeset
|
105 |
elem1.appendChild(document.createTextNode(value)); |
0 | 106 |
elem1.style.display = 'block'; |
107 |
if(!value || value=='') return; |
|
298
39c132e69781
Hopefully now all calls to escape() are replaced with ajaxEscape() in response to Tomasz's forum post; remove deprecated version of show_category_info() from functions.php
Dan
parents:
81
diff
changeset
|
108 |
ajaxPost(stdAjaxPrefix+'&_mode=rename', 'newtitle='+ajaxEscape(value), function() { |
744
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
109 |
if ( ajax.readyState == 4 ) |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
110 |
{ |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
111 |
var response = String(ajax.responseText); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
112 |
if ( !check_json_response(response) ) |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
113 |
{ |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
114 |
handle_invalid_json(response); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
115 |
return false; |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
116 |
} |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
117 |
response = parseJSON(response); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
118 |
if ( response.success ) |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
119 |
{ |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
120 |
new MessageBox( MB_OK|MB_ICONINFORMATION, $lang.get('ajax_rename_success_title'), $lang.get('ajax_rename_success_body', { page_name_new: value }) ); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
121 |
} |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
122 |
else |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
123 |
{ |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
124 |
alert(response.error); |
fcaae08f41a2
Polished up inline rename in oxygen (todo: make this script shared/core?)
Dan
parents:
650
diff
changeset
|
125 |
} |
0 | 126 |
} |
127 |
}); |
|
128 |
} |
|
129 |
function ajaxRenameInlineCancel(e) |
|
130 |
{ |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
74
diff
changeset
|
131 |
if ( typeof(e) != 'object' && IE ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
74
diff
changeset
|
132 |
e = window.event; |
0 | 133 |
elem1 = document.getElementById('h2PageName'); |
134 |
elem2 = document.getElementById('pageheading'); |
|
135 |
if(!elem1 || !elem2) return; |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
74
diff
changeset
|
136 |
if ( typeof(e) == 'object' && e.target ) |
0 | 137 |
{ |
138 |
if(e.target == elem2) |
|
139 |
return; |
|
140 |
} |
|
141 |
//value = elem2.value; |
|
142 |
elem2.parentNode.removeChild(elem2); // just destroy the thing |
|
143 |
//elem1.innerHTML = value; |
|
144 |
elem1.style.display = 'block'; |
|
145 |
document.onclick = null; |
|
146 |
} |
|
71 | 147 |
// ]]> |
0 | 148 |
</script> |
149 |
||
150 |
</head> |
|
151 |
<body> |
|
152 |
<table border="0" cellspacing="0" cellpadding="3" id="enano-master" width="100%"> |
|
153 |
<tr> |
|
154 |
<!-- BEGIN sidebar_left --> |
|
155 |
<td class="mdgSidebarHolder" valign="top"> |
|
156 |
<div id="left-sidebar"> |
|
157 |
{SIDEBAR_LEFT} |
|
158 |
</div> |
|
159 |
<div id="left-sidebar-showbutton" style="display: none; position: fixed; top: 3px; left: 3px;"> |
|
160 |
<input type="button" onclick="collapseSidebar('left');" value=">>" /> |
|
161 |
</div> |
|
162 |
</td> |
|
163 |
<!-- END sidebar_left --> |
|
164 |
<td valign="top"> |
|
165 |
<table border="0" width="100%" cellspacing="0" cellpadding="0"> |
|
166 |
||
167 |
<tr><td id="mdg-tl"></td><td id="mdg-top"></td><td id="mdg-tr"></td></tr> |
|
168 |
||
169 |
<tr><td id="mdg-l"></td><td> |
|
170 |
<table border="0" width="100%" id="title" cellspacing="0" cellpadding="0"> |
|
171 |
<tr> |
|
172 |
<td id="mainhead"><h2><a href="{SCRIPTPATH}/{ADMIN_SID_QUES}">{SITE_NAME}</a></h2><h4>{SITE_DESC}</h4></td> |
|
173 |
</tr> |
|
174 |
</table> |
|
175 |
</td><td id="mdg-r"></td></tr> |
|
176 |
||
177 |
<tr><td id="mdg-brl"></td><td style="background-color: #FFFFFF;"></td><td id="mdg-brr"></td></tr> |
|
178 |
||
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
22
diff
changeset
|
179 |
<tr> |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
22
diff
changeset
|
180 |
<td id="mdg-bl"></td> |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
22
diff
changeset
|
181 |
<td class="menu_bg"> |
0 | 182 |
<div class="menu_nojs" id="pagebar_main"> |
377
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
183 |
<div class="label"> |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
184 |
<!-- BEGIN stupid_mode --> |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
185 |
Page tools |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
186 |
<!-- BEGINELSE stupid_mode --> |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
187 |
{lang:onpage_lbl_pagetools} |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
188 |
<!-- END stupid_mode --> |
bb3e6c3bd4f4
Removed stray debugging info from ACL editor success notification; added ability for guests to set language on URI (?lang=eng); added html_in_pages ACL type and separated from php_in_pages so HTML can be embedded but not PHP; rewote portions of the path manager to better abstract URL input; added Zend Framework into list of BSD-licensed libraries; localized some remaining strings; got the migration script working, but just barely; fixed display bug in Special:Contributions; localized Main Page button in admin panel
Dan
parents:
335
diff
changeset
|
189 |
</div> |
0 | 190 |
{TOOLBAR} |
191 |
<ul> |
|
192 |
{TOOLBAR_EXTRAS} |
|
193 |
</ul> |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
22
diff
changeset
|
194 |
<span class="menuclear"></span> |
0 | 195 |
</div> |
196 |
</td><td id="mdg-br"></td></tr> |
|
197 |
<tr><td id="mdg-ml"></td><td style="background-color: #FFFFFF;"> |
|
198 |
<div class="pad"><div class="contentDiv"> |
|
199 |
<div style="float: right;"> |
|
650
e45183014778
Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
Dan
parents:
594
diff
changeset
|
200 |
<img alt=" " src="{CDNPATH}/images/spacer.gif" id="ajaxloadicon" /> |
0 | 201 |
</div> |
202 |
<h2 <!-- BEGIN auth_rename --> ondblclick="ajaxRenameInline();" title="Double-click to rename this page" <!-- END auth_rename --> id="h2PageName">{PAGE_NAME}</h2> |
|
203 |
<div id="ajaxEditContainer"> |