author | Dan |
Sun, 20 Jul 2008 13:32:04 -0400 | |
changeset 650 | e45183014778 |
parent 420 | 301f546688d1 |
child 657 | 8525475e27d5 |
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:
79
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:
420
diff
changeset
|
6 |
<link rel="stylesheet" type="text/css" href="{CDNPATH}/includes/clientside/css/enano-shared.css" /> |
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:
420
diff
changeset
|
7 |
<link id="mdgCss" rel="stylesheet" type="text/css" href="{CDNPATH}/themes/{THEME_ID}/css/{STYLE_ID}.css" /> |
82
03c7f5ec1e4c
Fixed IE6 + Admin theme, version typo in installer, and paginator + IE6
Dan
parents:
81
diff
changeset
|
8 |
<!--[if IE]> |
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:
420
diff
changeset
|
9 |
<link id="mdgCss" rel="stylesheet" type="text/css" href="{CDNPATH}/themes/{THEME_ID}/css-ie/iefixes.css" /> |
82
03c7f5ec1e4c
Fixed IE6 + Admin theme, version typo in installer, and paginator + IE6
Dan
parents:
81
diff
changeset
|
10 |
<![endif]--> |
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:
420
diff
changeset
|
12 |
{JS_HEADER} |
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:
420
diff
changeset
|
13 |
<script type="text/javascript" src="{CDNPATH}/themes/admin/js/menu.js"></script> |
0 | 14 |
{ADDITIONAL_HEADERS} |
15 |
</head> |
|
16 |
<body> |
|
17 |
<div id="header"> |
|
18 |
<div class="sitename">{SITE_NAME}</div> |
|
79
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
19 |
<!-- div class="menulink"><a href="#" onclick="adminOpenMenu('sidebar', this); return false;">expand menu</a></div --> |
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:
82
diff
changeset
|
20 |
[ <a href="{SCRIPTPATH}/{ADMIN_SID_QUES}">{lang:etc_btn_main_page} »</a> ] |
0 | 21 |
</div> |
22 |
<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:
82
diff
changeset
|
23 |
<div class="label">{lang:onpage_lbl_pagetools}</div> |
0 | 24 |
{TOOLBAR} |
25 |
<ul> |
|
26 |
{TOOLBAR_EXTRAS} |
|
27 |
</ul> |
|
28 |
<span class="menuclear"> </span> |
|
29 |
</div> |
|
79
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
30 |
<table border="0" cellspacing="0" cellpadding="0" id="sidebarholder"> |
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
31 |
<tr> |
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
32 |
<td valign="top"> |
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
33 |
|
5faff33a6580
Admin theme now uses a collapsable sidebar instead of that ugly menu (WiP)
Dan
parents:
56
diff
changeset
|
34 |
<table border="0" cellspacing="0" cellpadding="0" class="wrapper"> |
0 | 35 |
<tr> |
36 |
<td class="top-left"></td><td class="top"> </td><td class="top-right"></td> |
|
37 |
</tr> |
|
38 |
<tr> |
|
39 |
<td class="left"></td> |
|
40 |
<td class="main"> |
|
41 |
<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:
420
diff
changeset
|
42 |
<img alt=" " src="{CDNPATH}/images/spacer.gif" id="ajaxloadicon" /> |
0 | 43 |
</div> |
44 |
<h2 class="pagename">{PAGE_NAME}</h2> |
|
45 |
<div id="ajaxEditContainer"> |