code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">选择</th> <th scope="col">用户名</th> <th scope="col">所属组</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td><input name="sel[]" title="ID:{:$item->id}" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td>{:$item->username}</td> <td>{:$item->groupId|translateId:'groups'}</td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">修改</a> | <a onclick="return del({:$item->id});" href="#@">删除</a></td> </tr>{:/foreach} <tr> <td colspan="5" class="lightGreyBg textL"> <a href="#@" onclick="return selAll('sel[]');">全选</a> | <a href="#@" onclick="return selAnti('sel[]');">反选</a> | <a href="#@" onclick="return dels('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function dels(name) { var ids=''; $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); if(ids.length==0) { alert('您还没有选中要删除的记录'); return false; } ids = ids.substr(0,ids.length-1) if(confirm('确定要删除ID为'+ids+'的记录吗?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'); } return false; } function del(id) { if(confirm('确定要删除?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+id, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'); } return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/user.tpl
Smarty
asf20
3,299
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>【<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加</a>】[<a href="#" class="helpTip" title="可以拖动〖左栏菜单〗或菜单名称进行排序">?</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">选择</th> <th scope="col">默认状态</th> <th scope="col">模块名称</th> <th scope="col">菜单内容</th> <th scope="col">操作</th> </tr> <tbody class="main"> {:foreach item=item from=$i->lists}<tr> <td title="ID:{:$item->id}"><input name="sel[]" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td>{:if $item->hidden}收起{:else}展开{:/if}</td> <td>{:$item->title}</td> <td><a href="#@" title="{:$item->items|nl2br}" class="helpTip">点击查看</a></td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">修改</a> | <a onclick="return del({:$item->id});" href="#@">删除</a></td> </tr>{:/foreach} </tbody> <tr> <td colspan="5" class="lightGreyBg textL"> <a href="#@" onclick="return selAll('sel[]');">全选</a> | <a href="#@" onclick="return selAnti('sel[]');">反选</a> | <a href="#@" onclick="return dels('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function dels(name) { var ids=''; $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); if(ids.length==0) { alert('您还没有选中要删除的记录'); return false; } ids = ids.substr(0,ids.length-1) if(confirm('确定要删除ID为'+ids+'的记录?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/reload'); } return false; } function del(id) { if(confirm('确定要删除ID为'+id+'的记录?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+id, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/reload'); } return false; } function order() { var ids = ''; $(":input").each(function(){ if(ids == '') { ids=this.value; } else { ids+=','+this.value; } }); if(confirm('是否要保存排序结果?')) { $.get('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/order/'+ids); } return false; } $(document).ready(function() { $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); $(function() { $(".main") .sortable({ connectWith: '.main', update: function(event, ui) { order(); }, axis: 'y', cursor: 'move' , delay: 100, opacity: 0.9 }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/menu.tpl
Smarty
asf20
4,573
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } --> </style> </head><body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">排  序:</th> <td width="80%"><input name="ordering" type="text" size="5" id="ordering" value="{:$i->data->ordering}" class="posted" /></td> </tr> <tr> <th width="20%">标  识:</th> <td width="80%"><input name="tag" type="text" size="10" id="tag" value="{:$i->data->tag}" class="posted" {:if $i->data->tag != ''}readonly="readonly" {:/if}/> {:if $i->data->tag != ''}(不能修改){:/if}</td> </tr> <tr> <th>默认状态:</th> <td><select name="hidden" class="posted"> <option value="1" {:if $i->data->hidden}selected="selected"{:/if}>收起菜单</option> <option value="0" {:if !$i->data->hidden}selected="selected"{:/if}>展开菜单</option> </select></td> </tr> <tr> <th>模块名称:</th> <td><input name="title" type="text" size="30" maxlength="20" id="title" value="{:$i->data->title}" class="posted" /></td> </tr> <tr> <th>菜单内容:</th> <td><textarea name="items" cols="60" rows="5" id="items" class="posted">{:$i->data->items}</textarea></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/reload' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/menuMod.tpl
Smarty
asf20
3,446
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">用户名:</th> <td width="80%"><input name="username" type="text" value="{:$i->data->username}" class="posted" /></td> </tr> <tr> <th>密 码:</th> <td><input name="password" type="password" size="20" class="posted" /></td> </tr> <tr> <th>所属组:</th> <td><select name="groupId" class="posted"> {:foreach item=item from=$i->groups} <option value="{:$item->id}" {:if $i->data->groupId == $item->id}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/userMod.tpl
Smarty
asf20
2,929
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <style type="text/css"> <!-- html{ scrollbar-face-color:#eee; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#fff; scrollbar-arrow-color:#fff; scrollbar-base-color:#eee; scrollbar-3dlight-color :#ccc; scrollbar-darkshadow-color:#ccc; scrollbar-track-color: #f9f9f9; } body{background:#666;color:#000;font-size:12px;padding:8px 10px;margin:0; font-family:宋体;} a:link,a:visited{text-decoration:none;color:#000;} a:hover,a:active{text-decoration:underline;color:#000;} ul{padding:0;margin:0;} li{list-style:none; display:block;} .leftMenu .title{padding:2px 8px;margin:3px 0 1px;cursor:pointer;height:18px;line-height:18px;} .leftMenu .mainTitle{padding:2px 8px;margin:3px 0 1px;background:#eee;text-align:center; } .leftMenu .item{margin:0;background:#fff;padding:3px 8px;} .leftMenu .items{margin:0;background:#fff;padding:3px 0;} .hidden{display:none; } .move{ cursor:move; background:#eee url({:$smarty.const.PUBLIC_DIR}/common/image/ui-bg_glass_75_dadada_1x400.png) 50% 50%; } .hand{ background:#eee url({:$smarty.const.PUBLIC_DIR}/common/image/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50%; } .ui-sortable-placeholder { border: 1px dotted #eee; margin:3px 0; visibility: visible !important; height: 50px !important; } .ui-sortable-placeholder * { visibility: hidden; } --> </style> <script language="javascript" type="text/javascript"> function show(key){ $('.item'+key).toggle('fast',function(){ var $str = $('.title'+key).html(); if($str=='+') $('.title'+key).html('-&nbsp;'); else $('.title'+key).html('+'); }); } $(function() { $(".leftMenu") .sortable({ connectWith: '.leftMenu', update: function(event, ui) { order(); }, axis: 'y', cursor: 'move' , delay: 100, handle: '.title', opacity: 0.7 }); $(".title") .mousedown(function(){$(this).removeClass("hand");$(this).addClass("move");}) .mouseup(function(){$(this).removeClass("move");$(this).addClass("hand");}); }); function order() { var ids = ''; $("li").each(function(i){ if(ids == '') { ids=this.id; } else { ids+=','+this.id; } }); if(confirm('是否要保存排序结果?')) { $.get('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/order/'+ids); } return false; } </script> </head> <body> <ul class="leftMenu"> {:foreach key=key item=items from=$i->menu} <li id="{:$items.id}"> <div class="title titleBg hand" onclick="show('{:$key}');"><span class="title{:$key}">{:if $items.hidden}+{:else}-&nbsp;{:/if}</span>&nbsp;{:$items.title}</div > <div class="items item{:$key} {:$items.hidden}"> {:foreach item=item from=$items.items} <div class="item"><span>·</span> <a href="{:$item[1]}" target="main">{:$item[0]}</a>{:if $item[2] != '' } | <a href="{:$item[3]}" target="main">{:$item[2]}</a>{:/if}</div> {:/foreach}</div> </li> {:/foreach} </ul> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/menuList.tpl
Smarty
asf20
3,515
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> ul{padding:2px 0;} li{color:#333;padding:3px 0;} li span{font-weight:bold;color:#666; width:200px; } </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> 01CMS 网站内容管理系统</h1></td> </tr> </table> </div> <div class="content shadow textL"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL"> 快捷操作 </th> </tr> <tr> <td class="textL"> <ul> <li><span>添加文档:</span>{:foreach item=item key=key from= $i->channel}【<a href="{:$smarty.const.BOOT_URL}/Archive/archive/add/0/0/{:$key}">{:$item.name}</a>】{:/foreach}</li> </ul> </td> </tr> </table> </div> <div class="content shadow textL"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL"> 系统约定 </th> </tr> <tr> <td class="textL"> <ul> <li><span>1 、</span>提示、说明、帮助等,都以 <a href="#">[?]</a> 出现,鼠标移上去时显示内容。</li> <li><span>2 、</span>路径、目录、URL等,后面不带斜杠。</li> </ul> </td> </tr> </table> </div> <div class="content shadow textL"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL" width="100">系统常量</th> <th class="textL">常量值</th> </tr> <tr> <th class="textL">ROOT_DIR</th> <td class="textL">{:$smarty.const.ROOT_DIR}</td> </tr> <tr> <th class="textL">ROOT_PATH</th> <td class="textL">{:$smarty.const.ROOT_PATH}</td> </tr> <tr> <th class="textL">SYS_PATH</th> <td class="textL">{:$smarty.const.SYS_PATH}</td> </tr> <tr> <th class="textL">PUBLIC_DIR</th> <td class="textL">{:$smarty.const.PUBLIC_DIR}</td> </tr> <tr> <th class="textL">PUBLIC_PATH</th> <td class="textL">{:$smarty.const.PUBLIC_PATH}</td> </tr> <tr> <th class="textL">BOOT_DIR</th> <td class="textL">{:$smarty.const.BOOT_DIR}</td> </tr> <tr> <th class="textL">BOOT_URL</th> <td class="textL">{:$smarty.const.BOOT_URL}</td> </tr> <tr> <th class="textL">APP_PATH</th> <td class="textL">{:$smarty.const.APP_PATH}</td> </tr> </table> </div> </div> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/body.tpl
Smarty
asf20
3,090
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript"> window.parent.frames.menu.location.reload(); window.setTimeout(function(){window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists';},1000); </script> </head> <body> <div class="wrapper"> </div> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/menuReload.tpl
Smarty
asf20
628
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th width="12%" scope="col">选择</th> <th width="12%" scope="col">组别名称</th> <th width="58%" scope="col">拥有权限</th> <th width="18%" class="center" scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td><input name="sel[]" title="ID:{:$item->id}" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td>{:$item->name}</td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">点击查看/修改拥有的权限</a></td> <td class="center"><a onclick="return del({:$item->id});" href="#@">删除</a></td> </tr>{:/foreach} <tr> <td colspan="5" class="lightGreyBg textL"> <a href="#@" onclick="return selAll('sel[]');">全选</a> | <a href="#@" onclick="return selAnti('sel[]');">反选</a> | <a href="#@" onclick="return dels('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function dels(name) { var ids=''; $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); if(ids.length==0) { alert('您还没有选中要删除的记录'); return false; } ids = ids.substr(0,ids.length-1) if(confirm('确定要删除ID为'+ids+'的记录吗?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'); } return false; } function del(id) { if(confirm('确定要删除?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+id, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'); } return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/group.tpl
Smarty
asf20
3,367
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- .listAuth{line-height:22px;} .listAuth input{border:0;} .listAuth hr{height:1px; color:#ccc;} th{text-align:left;} td{text-align:left;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th>组别名称:</th> <td><input name="name" type="text" size="20" maxlength="20" class="posted" /></td> </tr> <tr> <th>拥有权限:<br /></th> <td class="listAuth"> {:foreach item=item from=$i->auth} <input id="label{:$item->id}" name="auth[]" class="{:if $item->auth == '**'}all{:else}other{:/if} posted" type="checkbox" value="{:$item->auth}" /> <label for="label{:$item->id}"> {:$item->name} </label> {:if $item->line == 1}<hr />{:/if} {:/foreach} </td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " />&nbsp;<input type="reset" onclick="history.go(-1);" value=" 返 回 " /> </td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(".all").click( function () { if(this.checked){ $("input[class='other posted']").each(function(i){ this.checked=false; }); } } ); $(".other").click( function () { if(this.checked){ $("input[class='all posted']").each(function(i){ this.checked=false; }); } } ); $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/groupAdd.tpl
Smarty
asf20
3,091
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- .listAuth{line-height:22px;} .listAuth input{border:0;} .listAuth hr{height:1px; color:#ccc;} th{text-align:right;} td{text-align:left;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th>组别名称:</th> <td><input name="name" type="text" size="20" maxlength="20" value="{:$i->group->name}" class="posted" /></td> </tr> <tr> <th>拥有权限:<br /></th> <td class="listAuth"> {:foreach item=item from=$i->auth} <input id="label{:$item->id}" name="auth[]" type="checkbox" value="{:$item->auth}" {:$item->checked} class="{:if $item->auth == '**'}all{:else}other{:/if} posted" /> <label for="label{:$item->id}"> {:$item->name} </label> {:if $item->line == 1}<hr />{:/if} {:/foreach} </td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " />&nbsp;<input type="reset" onclick="history.go(-1);" value=" 返 回 " /> </td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(".all").click( function () { if(this.checked){ $("input[class='other posted']").each(function(i){ this.checked=false; }); } } ); $(".other").click( function () { if(this.checked){ $("input[class='all posted']").each(function(i){ this.checked=false; }); } } ); $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Admin/groupMod.tpl
Smarty
asf20
3,137
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } .color { color:{:$i->data->color}; cursor:pointer;} #title {color:{:$i->data->color};{:if $i->data->flag|@strpos:"b" !== false}font-weight:bold;{:/if} } {:if $i->data->flag && $i->data->flag|@strpos:"j" !== false}.notJ{:else}.j{:/if}{display:none;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">标 题:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="{:$i->data->title|htmlspecialchars}" /> <input name="color" type="text" size="7" id="color" value="{:$i->data->color}" class="color" /></td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input name='flag[]' type='checkbox' class='noBorder' id='flagsh' value='h' {:php}echo (strpos($this->_tpl_var['i']->data->flag,'h')!==false ? 'checked="checked"' : '');{:/php}> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'{:if $i->data->flag|@strpos:"c" !== false} checked="checked"{:/if}> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'{:if $i->data->flag|@strpos:"p" !== false} checked="checked"{:/if}> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'{:if $i->data->flag|@strpos:"f" !== false} checked="checked"{:/if}> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'{:if $i->data->flag|@strpos:"s" !== false} checked="checked"{:/if}> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'{:if $i->data->flag|@strpos:"j" !== false} checked="checked"{:/if}> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'{:if $i->data->flag|@strpos:"b" !== false} checked="checked"{:/if}> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="{:$i->data->redirectUrl}" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="{:$i->data->viceTitle}" /></td> </tr> <tr> <th>图 片:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="{:$i->data->thumb}" /> <a href='#' title="上传图片" class="buttonBox hidden" id="preView">预览</a> <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId"> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> * (不能选灰色背景的栏目)</td> </tr> {:field fields=$i->addFields data=$i->addData} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ"> <th width="20%">公司简介:</th> <td width="80%"><textarea name="desc" cols="58" rows="6" id="desc">{:$i->data->desc}</textarea></td> </tr> <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr class="notJ"> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="{:$i->data->keywords}" /> (多个时用空格隔开)</td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 0}selected="selected"{:/if}>默认排序</option> <option value="7" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 7}selected="selected"{:/if}>置顶一周</option> <option value="15" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 15}selected="selected"{:/if}>置顶半个月</option> <option value="30" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 30}selected="selected"{:/if}>置顶一个月</option> <option value="90" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 90}selected="selected"{:/if}>置顶三个月</option> <option value="180" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 180}selected="selected"{:/if}>置顶半年</option> <option value="360" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 360}selected="selected"{:/if}>置顶半年</option> </select></td> </tr> <tr class="notJ"> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" {:if $i->data->listed == '1'}checked="checked"{:/if} />是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" {:if $i->data->listed == '0'}checked="checked"{:/if} />否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr class="notJ"> <th>访问控制:</th> <td><select name="visit" id="visit"> <option value="1" {:if $i->data->visit == '1'}selected="selected"{:/if}>访问允许</option> <option value="0" {:if $i->data->visit == '0'}selected="selected"{:/if}>禁止访问</option> </select></td> </tr> <tr class="notJ"> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$i->data->pubTime|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr class="notJ"> <th width="20%">文档模板:</th> <td width="80%">{:$smarty.const.ROOT_PATH}{:$i->Load->var.templatePath}/<input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr class="notJ"> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH}<input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /></td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } $(document).ready(function(){ $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13 }); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $('form').submit(function(){ postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveModCompany.tpl
Smarty
asf20
12,898
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/tooltip.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.boxy.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/boxy.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript"> function selAll(name) { $("input[name='"+name+"']").attr("checked", true); } function selAnti(name) { $("input[name='"+name+"']").each(function(i){ this.checked=!this.checked; }); } function selectIds(name){ var ids=''; $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); if(ids.length==0) { alert('您还没有选中要添加的记录!'); return false; } window.parent.{:$i->p[6]}(ids); return false; } </script> <style type="text/css"> <!-- body{font-size:12px;color:#000;font-family:Verdana;margin:0;padding:0; background:#fff; width:600px;} --> </style> </head> <body> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">#ID</th> <th scope="col">选择</th> <th class="textL" scope="col">标题</th> </tr> {:foreach item=item from=$i->lists}<tr> <td>{:$item->id}</td> <td><input name="sel[]" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td class="textL"><a title="{:$item->categoryName} {:$item->pubTime|date_format:"%Y-%m-%d %H:%M"}" href="{:$item->link}" target="_blank">{:$item->title}</a></td> </tr>{:/foreach} <tr> <td colspan="3" class="lightGreyBg textL"><a href="#@" class="buttonBox" onclick="selAll('sel[]');">全选</a> <a href="#@" class="buttonBox" onclick="selAnti('sel[]');">反选</a> <a href="#@" onclick="selectIds('sel[]');return false;" style="background:#e1e1e1;" class="buttonBox" id="addArchive">插入选中的文档</a> {:$i->pagesCode}</td> </tr> </table> </div> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveSelect.tpl
Smarty
asf20
2,821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/0/{:$i->p[2]}">字段管理</a>]</h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">排  序:</th> <td width="80%"><input name="ordering" type="text" size="4" id="ordering" value="{:$i->data->ordering}" class="posted" /></td> </tr> <tr> <th width="20%">字段提示:</th> <td width="80%"><input name="name" type="text" size="20" id="name" value="{:$i->data->name}" class="posted" /></td> </tr> <tr> <th width="20%">空值提示:</th> <td width="80%"><input name="emptyTip" type="text" size="40" id="emptyTip" value="{:$i->data->emptyTip}" class="posted" /> (允许字段空值则留空) </td> </tr> <tr> <th width="20%">字段名称:</th> <td width="80%"><input name="oldField" type="hidden" size="20" id="oldField" value="{:$i->data->field}" class="posted" /> <input name="field" type="text" size="20" id="field" value="{:$i->data->field}" class="posted" /></td> </tr> <tr> <th>字段类型:</th> <td><select id="selectCode" > <option value='{:$i->data->code|printHtml}'>常用类型参考</option> <option value="text">单行文本</option> <option value="textarea">多行文本域</option> <option value="FCKeditor">编辑器文本域</option> <option value="checkbox">复选框</option> <option value="radio">单选按钮组</option> <option value="select">下拉列表</option> <option value="hidden">隐藏域</option> </select> <input name="type" type="text" id="type" value="{:$i->data->type}" size="40" title="不能带有双引号,请根据需要适当修改参考代码" class="posted" /> <select id="selectType" > <option value="{:$i->data->type}">更多参考...</option> <option value="int(11) NOT NULL DEFAULT 0">int(11)</option> <option value="tinyint(1) NOT NULL DEFAULT 0">tinyint(1)</option> <option value="smallint(6) NOT NULL DEFAULT 0">smallint(6)</option> <option value="mediumint(8) NOT NULL DEFAULT 0">mediumint(8)</option> <option value="varchar(255) NOT NULL">varchar(255)</option> <option value="char(5) NOT NULL">char(5)</option> <option value="set('a','c','c')">set('a','c','c')</option> <option value="enum('a','c','c')">enum('a','c','c')</option> <option value="tinytext">tinytext</option> <option value="text">text</option> <option value="mediumtext">mediumtext</option> <option value="longtext">longtext</option> </select></td> </tr> <tr> <th>表单代码:</th> <td><textarea title="不能带有单引号,请根据需要适当修改参考代码" name="code" cols="60" rows="10" id="code" class="posted">{:$i->data->code|printHtml}</textarea></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1/{:$i->p[2]}' }); }); $("#selectType").change( function() { $("#type").get(0).value = this.value; }); $("#selectCode").change( function() { var code,field; field=$("#field").get(0).value; if(this.value=='text'){ $("#type").get(0).value = "varchar(64) NOT NULL"; code='<!--config{type=text}-->\n<input name="'+field+'" id="'+field+'" size="30" type="text" value="$value" />'; }else if(this.value=='hidden'){ $("#type").get(0).value = "varchar(64) NOT NULL"; code='<!--config{type=hidden}-->\n<input name="'+field+'" id="'+field+'" type="hidden" value="$value" />'; }else if(this.value=='textarea'){ $("#type").get(0).value = "text"; code='<!--config{type=textarea}-->\n<textarea name="'+field+'" id="'+field+'" cols="60" rows="8">$value</textarea>'; }else if(this.value=='FCKeditor'){ $("#type").get(0).value = "text"; code='<!--config{type=FCKeditor}-->\nFCKeditor|Width=100%;Height=500'; }else if(this.value=='checkbox'){ $("#type").get(0).value = "varchar(24) NOT NULL"; code='<!--config{type=checkbox}-->\n<input name="'+field+'" id="'+field+'" type="checkbox" value="1" />'; }else if(this.value=='radio'){ $("#type").get(0).value = "tinyint(1) NOT NULL DEFAULT 0"; code='<!--config{type=radio}-->\n<label><input name="'+field+'" type="radio" value="1" checked="checked" />是</label> \n<label><input name="'+field+'" type="radio" value="0" />否</label>'; }else if(this.value=='select'){ $("#type").get(0).value = "varchar(32) NOT NULL"; code='<!--config{type=select}-->\n<select name="'+field+'">\n <option value="1" selected="selected">1</option>\n <option value="2">2</option>\n</select>'; }else{ code=this.value; } $("#code").get(0).value = code; }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/fieldMod.tpl
Smarty
asf20
7,108
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">#ID</th> <th scope="col">模型名称</th> <th scope="col">表名</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td>{:$item->id}</td> <td>{:$item->name}</td> <td>{:$i->Load->config.mysql.prefix}archive_channel_{:$item->tableId}</td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">修改</a> | <a onclick="del({:$item->id});return false;" href="#@">删除</a> | <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/field/lists/0/{:$item->id}">字段管理</a> | <a href="{:$smarty.const.BOOT_URL}/archive/field/add/0/{:$item->id}">添加字段</a></td> </tr>{:/foreach} <tr> <td colspan="6" class="lightGreyBg textL"> {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function del(id) { if(confirm('删除模型会同时删除相关的栏目和文档,确定要删除?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+id+'/', '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'); } return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/channel.tpl
Smarty
asf20
3,052
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th {text-align:right;} td {text-align:left;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">上级栏目:</th> <td width="80%"><label> <select name="parentId" id="parentId" class="posted"> <option value="0" {:if $i->data->parentId == 0}selected="selected"{:/if}>无(作为顶级栏目)</option> {:foreach item=item from=$i->categories} <option value="{:if $item->id == $i->data->id}-1{:else}{:$item->id}{:/if}" {:if $item->id == $i->data->parentId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> </label></td> </tr> <tr> <th width="20%">栏目类型:</th> <td width="80%"> <label> <input class="noBorder posted" name="type" type="radio" id="radio1" value="1" {:if 1 == $i->data->type}checked="checked"{:/if} /> 栏目列表 </label> &nbsp;&nbsp; <label><input class="noBorder posted" name="type" type="radio" id="radio2" value="2" {:if 2 == $i->data->type}checked="checked"{:/if} /> 栏目封面 </label> &nbsp;&nbsp; <label> <input class="noBorder posted" type="radio" name="type" id="radio0" value="0" {:if 0 == $i->data->type}checked="checked"{:/if} /> 任意链接 </label></td> </tr> <tr> <th>栏目名称:</th> <td> <input name="name" type="text" size="20" id="name" value="{:$i->data->name}" class="posted check" /> * </td> </tr> <tr class="in"> <th>栏目别名:</th> <td><input name="alias" type="text" size="30" maxlength="30" id="alias" value="{:$i->data->alias}" class="posted" /> <input name="pinyin" id="pinyin1" type="radio" value="1" class="posted noBorder" /><label for="pinyin1">拼音</label> <input name="pinyin" id="pinyin2" type="radio" value="2" class="posted noBorder" /><label for="pinyin2">拼音首字母</label> <input name="pinyin" id="pinyin3" type="radio" value="3" class="posted noBorder" checked="checked" /><label for="pinyin3">自定义</label> [<a href="#@" class="helpTip" title="允许字符:A-Z a-z 0-9 - _<br />别名主要用于URL中显示<br />默认为拼音">?</a>] </td> </tr> <tr class="in" id="channelIdTr"> <th>绑定模型:</th> <td><label> <select name="channelId" id="channelId" class="posted check"> {:foreach item=item key=key from=$i->channels} <option value="{:$key}" {:if $key == $i->data->channelId}selected="selected"{:/if}>{:$item.name}</option> {:/foreach} </select> </label> *</td> </tr> <tr class="in" id="categoryTemplateNameTr"> <th>栏目模板:</th> <td>/template/{:$i->Load->var.style}/<input name="categoryTemplateName" type="text" id="categoryTemplateName" class="inputLine posted check" value="{:$i->data->categoryTemplateName}" size="30" /> </td> </tr> <tr class="in" id="archiveTemplateNameTr"> <th>默认文档模板:</th> <td>/template/{:$i->Load->var.style}/<input name="archiveTemplateName" type="text" id="archiveTemplateName" class="inputLine posted check" value="{:$i->data->archiveTemplateName}" size="30" /> </td> </tr> <tr class="in" id="archiveUrlTr"> <th>默认文档URL:</th> <td><input name="archiveUrl" type="text" id="archiveUrl" class="inputLine posted check" value="{:$i->data->archiveUrl}" size="40" /> <label> <select name="regulation" id="regulation" onchange="$('#archiveUrl').val(this.value);"> <option value="" selected="selected">URL参考规则</option> <option value="{:$i->Load->var.htmlSaveDir}/[alias]/%Y/%m%d/[id].html">栏目别名/年/月日</option> <option value="{:$i->Load->var.htmlSaveDir}/[alias]/%Y/%m/%d/[id].html">栏目别名/年/月/日</option> <option value="{:$i->Load->var.htmlSaveDir}/%Y/%m%d/[id].html">年/月日</option> <option value="{:$i->Load->var.htmlSaveDir}/%Y/%m/%d/[id].html">年/月/日</option> </select> </label> [<a href="#@" class="helpTip" title="[alias]表示当前的栏目别名<br />[id]表示文档ID<br />%Y%m%d用于格式化文档添加日期<br />%Y表示年,%m表示月,%d表示日">?</a>] </td> </tr> <tr class="in"> <th><strong>列表访问:</strong></th> <td><input name="visit" id="visit1" type="radio" value="1" class="posted noBorder" {:if 1 == $i->data->visit}checked="checked"{:/if} /><label for="visit1">静态</label> <input name="visit" id="visit2" type="radio" value="2" class="posted noBorder" {:if 2 == $i->data->visit}checked="checked"{:/if} /><label for="visit2">动态</label> <input name="visit" id="visit0" type="radio" value="0" class="posted noBorder" {:if '0' == $i->data->visit}checked="checked"{:/if} /><label for="visit0">自动</label> </td> </tr> <tr class="in"> <th><strong>列表大小:</strong></th> <td><input name="pageSize" type="text" size="10" id="pageSize" value="{:$i->data->pageSize}" class="posted check" /> [<a href="#@" class="helpTip" title="栏目列表每页多少条记录">?</a>]</td> </tr> <tr> <th>导航显示:</th> <td> <label> <input class="noBorder posted" type="radio" name="isHidden" value="0" {:if 0 == $i->data->isHidden}checked="checked"{:/if} /> 显示 </label> <label> <input class="noBorder posted" type="radio" name="isHidden" value="1" {:if 1 == $i->data->isHidden}checked="checked"{:/if} /> 隐藏 </label> [<a href="#@" class="helpTip" title="是否在导航中显示">?</a>] </td> </tr> <tr class="in"> <th><strong>关键词:</strong></th> <td><input name="keywords" type="text" size="50" id="keywords" value="{:$i->data->keywords}" class="posted" /></td> </tr> <tr class="in"> <th><strong>描 述</strong>:</th> <td><textarea name="desc" rows="3" id="desc" class="posted">{:$i->data->desc}</textarea></td> </tr> <tr class="out"> <th>链接地址:</th> <td><input name="link" type="text" size="60" id="link" value="{:$i->data->link}" class="posted check" /></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /> </td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript"> var typeId = $("input:checked[name='type']").val(); switch(typeId) { case '1':$("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").show();$(".out").hide();break; case '2':$("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr,.out").hide();break; case '0':$(".in").hide();$(".out").show();break; } var channel = new Array(); {:foreach item=item key=key from=$i->channels} channel[{:$key}] = "{:$item.tableId}"; {:/foreach} $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1' }); $("#parentId").change(function(){ if(this.value == -1) { alert('不能选择自身ID'); this.value = 0; return false; } }); $("input[name='pinyin']").click(function(){ if(this.value == 3) { $("#alias").show(); } else { $("#alias").hide(); } }); $("input[name='type']").click(function(){ var channelId = $("#channelId").val(); if(this.value == 1) { var categoryTemplate = (channelId > 0) ? channel[channelId]+'List' : 'list'; var archiveTemplate = (channelId > 0) ? channel[channelId]+'Show' : 'show'; $(".in").show(); $(".out").hide(); if($("#categoryTemplateName").val() == '') $("#categoryTemplateName").val(categoryTemplate+'.tpl'); if($("#archiveTemplateName").val() == '') $("#archiveTemplateName").val(archiveTemplate+'.tpl'); $("#archiveTemplateNameTr,#archiveUrlTr,#channelIdTr").show(); } else if(this.value == 2) { $(".in").show(); $(".out").hide(); $("#archiveTemplateNameTr,#archiveUrlTr,#channelIdTr").hide(); } else if(this.value == 0) { $(".in").hide(); $(".out").show(); } }); $("#channelId").change(function(){ var typeId = $("input:checked[name='type']").val(); if(confirm('是否自动更新栏目模板和文档默认模板?')) { if(typeId == 1) { var categoryTemplate = (this.value > 0) ? channel[this.value]+'List' : 'list'; var archiveTemplate = (this.value > 0) ? channel[this.value]+'Show' : 'show'; $("#categoryTemplateName").val(categoryTemplate+'.tpl'); $("#archiveTemplateName").val(archiveTemplate+'.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").show(); } else if(typeId == 2) { var value = (this.value > 0) ? channel[this.value]+'Index' : 'index'; $("#categoryTemplateName").val(value+'.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").hide(); } } }); $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/categoryMod.tpl
Smarty
asf20
11,680
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add/0/{:$i->categoryId}/{:$i->channelId}">添加</a>]</span></h1></td> </tr> </table> </div> <div class="title shadow"> <table width="100%" border="0" cellspacing="1"> <tr> <td><form action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/" method="get"> ID:<input class="keyWord" name="id" type="text" value="{:$i->keyWord.id}" size="8" /> 标题:<input class="keyWord" name="title" type="text" value="{:$i->keyWord.title}" size="20" /> 审核:<select class="keyWord" name="pass"> <option value="">-不限-</option> <option value="0" {: if $i->keyWord.pass == '0'}selected="selected"{:/if}>待审核</option> <option value="1" {: if $i->keyWord.pass == '1'}selected="selected"{:/if}>已通过</option> <option value="2" {: if $i->keyWord.pass == '2'}selected="selected"{:/if}>未通过</option> </select> <input name="" value="搜 索" type="submit" /> <input name="" type="reset" value="清 除" onclick="$('.keyWord').each(function(){this.value = '';});return false;" /> <input name="" type="reset" value="全 部" onclick="window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/';return false;" /> </form></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">#ID</th> <th scope="col">选择</th> <th class="textL" scope="col">标题</th> <th scope="col">所属栏目</th> <th scope="col">发布时间</th> <th scope="col" class="textL">审核状态 =&gt; 操作</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td>{:$item->id}</td> <td><input name="sel[]" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td class="textL"><a href="{:$smarty.const.ROOT_DIR}/index.php/data/archive/{:$item->id}" target="_blank">{:$item->title}</a></td> <td>{:$item->categoryName}</td> <td>{:$item->pubTime|date_format:"%Y-%m-%d %H:%M"}</td> <td class="textL" id="set{:$item->id}"><span class="deepGrey">【{:if $item->pass == 0}待审核{:elseif $item->pass == 1}已通过{:elseif $item->pass == 2}未通过{:/if}】 =></span> {:if $item->pass == 0} 【<a onclick="return getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/{:$item->id}/1');" href="#">通过</a>】【<a onclick="return getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/{:$item->id}/2');" href="#">不通过</a>】 {:elseif $item->pass == 1} 【<a onclick="return getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/{:$item->id}/2');" href="#">不通过</a>】{:elseif $item->pass == 2} 【<a onclick="return getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/{:$item->id}/1');" href="#">通过</a>】 {:/if}</td> <td class="textL" id="set{:$item->id}"><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}/{:$i->p[2]}">修改</a> | <a onclick="del({:$item->id});return false;" href="#@">删除</a></td> </tr>{:/foreach} <tr> <td colspan="7" class="lightGreyBg textL"> <a href="#@" onclick="selAll('sel[]');">全选</a> | <a href="#@" onclick="selAnti('sel[]');">反选</a> | <a href="#@" onclick="del(0,'sel[]');">删除</a> | <a href="#@" onclick="batPass(1);">通过审核</a> | <a href="#@" onclick="batPass(2);">不通过审核</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function batPass(status) { var ids = ''; $("input[name='sel[]']").each(function(i){ if(this.checked) { if(ids == '') { ids=this.value; } else { ids+=','+this.value; } } }); if(ids.length==0) { alert('您还没有选中要进行处理的记录'); return false; } if(confirm('确定要批量审核ID为'+ids+'的记录?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/'+ids+'/'+status, '{:$i->curUrl}'); } } function setPass(id,status) { if(status == 1) { $("#set"+id).html('<span class="deepGrey">【已通过】 =></span> 【<a onclick="return getDialog(\'{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/'+id+'/2\');" href="#">不通过</a>】'); } else if(status == 2) { $("#set"+id).html('<span class="deepGrey">【未通过】 =></span> 【<a onclick="return getDialog(\'{:$smarty.const.BOOT_URL}/{:$i->c}/setPass/'+id+'/1\');" href="#">通过</a>】'); } } function del(id, name) { var ids=''; if(name != undefined) { $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); ids = ids.substr(0,ids.length-1); } else if(id > 0) { ids = id; } if(ids.length==0) { alert('您还没有选中要删除的记录'); return false; } if(confirm('确定要删除ID为'+ids+'的记录?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/0/{:$i->p[2]}/{:$i->p[3]}'); } return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archive.tpl
Smarty
asf20
6,937
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .out { display:none; } --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">上级栏目:</th> <td width="80%"><label> <select name="parentId" id="parentId" class="posted"> <option value="0" selected="selected">无(作为顶级栏目)</option> {:foreach item=item from=$i->categories} <option value="{:$item->id}" {:if $item->id == $i->data->id}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> </label></td> </tr> <tr> <th width="20%">栏目类型:</th> <td width="80%"><label> <input class="noBorder posted" name="type" type="radio" id="radio1" value="1" checked="checked" /> 栏目列表 </label> &nbsp;&nbsp; <label><input class="noBorder posted" name="type" type="radio" id="radio2" value="2" /> 栏目封面 </label> &nbsp;&nbsp; <label> <input class="noBorder posted" type="radio" name="type" id="radio0" value="0" /> 任意链接 </label></td> </tr> <tr> <th>栏目名称:</th> <td><input name="name" type="text" id="name" value="" size="30" maxlength="30" class="posted check" /> *</td> </tr> <tr class="in"> <th>栏目别名:</th> <td><input name="alias" type="text" size="30" maxlength="30" id="alias" value="" class="posted hidden" /> <input name="pinyin" id="pinyin1" type="radio" value="1" checked="checked" class="posted noBorder" /><label for="pinyin1">拼音</label> <input name="pinyin" id="pinyin2" type="radio" value="2" class="posted noBorder" /><label for="pinyin2">拼音首字母</label> <input name="pinyin" id="pinyin3" type="radio" value="3" class="posted noBorder" /><label for="pinyin3">自定义</label> [<a href="#@" class="helpTip" title="允许字符:A-Z a-z 0-9 - _<br />别名主要用于URL中显示<br />默认为拼音">?</a>]</td> </tr> <tr class="in" id="channelIdTr"> <th>绑定模型:</th> <td><label> <select name="channelId" id="channelId" class="posted check"> <option value="">请选择模型</option> {:foreach item=item key=key from=$i->channels} <option value="{:$key}">{:$item.name}</option> {:/foreach} </select> </label> *</td> </tr> <tr class="in" id="categoryTemplateNameTr"> <th>栏目模板:</th> <td>/template/{:$i->Load->var.style}/<input name="categoryTemplateName" type="text" id="categoryTemplateName" class="inputLine posted check" value="" size="30" /> </td> </tr> <tr class="in" id="archiveTemplateNameTr"> <th>默认文档模板:</th> <td>/template/{:$i->Load->var.style}/<input name="archiveTemplateName" type="text" id="archiveTemplateName" class="inputLine posted check" value="" size="30" /> </td> </tr> <tr class="in" id="archiveUrlTr"> <th>默认文档URL:</th> <td><input name="archiveUrl" type="text" id="archiveUrl" class="inputLine posted check" value="{:$i->Load->var.htmlSaveDir}/[alias]/%Y/%m%d/[id].html" size="40" /> <label> <select name="regulation" id="regulation" onchange="$('#archiveUrl').val(this.value);"> <option value="{:$i->Load->var.htmlSaveDir}/[alias]/%Y/%m%d/[id].html" selected="selected">栏目别名/年/月日</option> <option value="{:$i->Load->var.htmlSaveDir}/[alias]/%Y/%m/%d/[id].html">栏目别名/年/月/日</option> <option value="{:$i->Load->var.htmlSaveDir}/%Y/%m%d/[id].html">年/月日</option> <option value="{:$i->Load->var.htmlSaveDir}/%Y/%m/%d/[id].html">年/月/日</option> </select> </label> [<a href="#@" class="helpTip" title="[alias]表示当前的栏目别名<br />[id]表示文档ID<br />%Y%m%d用于格式化文档添加日期<br />%Y表示年,%m表示月,%d表示日">?</a>] </td> </tr> <tr class="in"> <th><strong>列表访问:</strong></th> <td><input name="visit" id="visit1" type="radio" value="1" class="posted noBorder" /><label for="visit1">静态</label> <input name="visit" id="visit2" type="radio" value="2" class="posted noBorder" /><label for="visit2">动态</label> <input name="visit" id="visit0" type="radio" value="0" class="posted noBorder" checked="checked" /><label for="visit0">自动</label> </td> </tr> <tr class="in"> <th><strong>列表大小:</strong></th> <td><input name="pageSize" type="text" size="10" id="pageSize" value="20" class="posted check" /> [<a href="#@" class="helpTip" title="栏目列表每页多少条记录">?</a>]</td> </tr> <tr> <th>导航显示:</th> <td> <label> <input name="isHidden" type="radio" class="noBorder posted" value="0" checked="checked" />显示 </label> <label> <input class="noBorder posted" type="radio" name="isHidden" value="1" />隐藏 </label> [<a href="#@" class="helpTip" title="是否在导航中显示">?</a>] </td> </tr> <tr class="in"> <th><strong>关键词:</strong></th> <td><input name="keywords" type="text" size="50" id="keywords" value="" class="posted" /></td> </tr> <tr class="in"> <th><strong>描 述</strong>:</th> <td><textarea name="desc" rows="3" id="desc" class="posted"></textarea></td> </tr> <tr class="out"> <th>链接地址:</th> <td><input name="link" type="text" size="60" id="link" value="" class="posted check" /> *</td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript"> var channel = new Array(); {:foreach item=item key=key from=$i->channels} channel[{:$key}] = "{:$item.tableId}"; {:/foreach} $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert{:/if}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1' }); $("input[name='pinyin']").click(function(){ if(this.value == 3) { $("#alias").show(); } else { $("#alias").hide(); } }); $("input[name='type']").click(function(){ var channelId = $("#channelId").val(); if(this.value == 1) { var categoryTemplate = (channelId > 0) ? channel[channelId]+'List' : 'list'; var archiveTemplate = (channelId > 0) ? channel[channelId]+'Show' : 'show'; $(".in").show(); $(".out").hide(); $("#categoryTemplateName").val(categoryTemplate+'.tpl'); $("#archiveTemplateName").val(archiveTemplate+'.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").show(); } else if(this.value == 2) { $(".in").show(); $(".out").hide(); $("#categoryTemplateName").val('categoryIndex.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").hide(); } else if(this.value == 0) { $(".in").hide(); $(".out").show(); } }); $("#channelId").change(function(){ var typeId = $("input:checked[name='type']").val(); if(typeId == 1) { var categoryTemplate = (this.value > 0) ? channel[this.value]+'List' : 'list'; var archiveTemplate = (this.value > 0) ? channel[this.value]+'Show' : 'show'; $("#categoryTemplateName").val(categoryTemplate+'.tpl'); $("#archiveTemplateName").val(archiveTemplate+'.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").show(); } else if(typeId == 2) { var value = (this.value > 0) ? channel[this.value]+'Index' : 'index'; $("#categoryTemplateName").val(value+'.tpl'); $("#archiveTemplateNameTr,#pageSizeTr,#archiveUrlTr,#channelIdTr").hide(); } }); $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/categoryAdd.tpl
Smarty
asf20
10,511
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } .color { color:#000000; cursor:pointer;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/insert/0/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">公司名称:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="" /> <input name="color" type="text" size="7" id="color" value="" class="color" /> </td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input class='noBorder' type='checkbox' name='flag[]' id='flagsh' value='h'> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j hidden"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="" /> *</td> </tr> <tr> <th>图 片:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="" /> <a href='#' title="上传图片" class="buttonBox hidden" id="preView">预览</a> <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId" onchange="if(!this.value){alert('请选择白色背景的栏目');this.value = 0;return false;}"> <option value="0">--请选择栏目--</option> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> *</td> </tr> {:field fields=$i->addFields} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ"> <th width="20%">公司简介:</th> <td width="80%"><textarea name="desc" cols="58" rows="8" id="desc"></textarea></td> </tr> <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();return false;">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();return false;">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="" /> (多个时用空格隔开)</td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" selected="selected">默认排序</option> <option value="7">置顶一周</option> <option value="15">置顶半个月</option> <option value="30">置顶一个月</option> <option value="90">置顶三个月</option> <option value="180">置顶半年</option> <option value="360">置顶一年</option> </select></td> </tr> <tr> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" checked="checked" /> 是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" /> 否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr> <th>访问控制:</th> <td> <select name="visit" id="visit"> <option value="0" selected="selected">允许访问</option> <option value="1">禁止访问</option> </select> </td> </tr> <tr> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr> <th width="20%">文档模板:</th> <td width="80%">{:$smarty.const.ROOT_PATH}{:$i->Load->var.templatePath}/ <input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH} <input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /> </td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } $(document).ready(function(){ $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13 }); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $('form').submit(function(){ postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveAddCompany.tpl
Smarty
asf20
11,274
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> 文档系统 => 添加文档</h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col" class="textL">请先选择您要添加的内容类型:</th> </tr> <tr> <td class="textL font14" style="padding:16px;"> {:foreach item=item key=key from=$i->Load->data("archiveChannel")} 【<a href="{:$smarty.const.BOOT_URL}/Archive/archive/add/0/0/{:$key}">{:$item.name}</a>】 {:/foreach} </td> </tr> </table> </div> </div> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/channelSelect.tpl
Smarty
asf20
1,140
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/tooltip.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.boxy.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/boxy.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}/{:$i->p[3]}" target="actionFrame" onsubmit="javascript:return actionFrame();"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">完整标题:</th> <td width="80%"><input class="inputtitle" name="title" type="text" size="60" id="title" value="" /> *</td> </tr> <tr> <th width="20%">简短标题:</th> <td width="80%"><input class="inputtitle" name="briefTitle" type="text" size="40" id="briefTitle" value="" title="可不填,默认和完整标题相同" /> <select name="color" id="color"> <option value="">颜色</option> <option value="#000" style="background-color:#000"></option> <option value="#fff" style="background-color:#fff"></option> <option value="green" style="background-color:green"></option> <option value="maroon" style="background-color:maroon"></option> <option value="olive" style="background-color:olive"></option> <option value="navy" style="background-color:navy"></option> <option value="purple" style="background-color:purple"></option> <option value="gray" style="background-color:gray"></option> <option value="#ff0" style="background-color:#ff0"></option> <option value="#0f0" style="background-color:#0f0"></option> <option value="#0ff" style="background-color:#0ff"></option> <option value="#f0f" style="background-color:#f0f"></option> <option value="red" style="background-color:red"></option> <option value="#00f" style="background-color:#00f"></option> <option value="teal" style="background-color:teal"></option> </select> (在列表中显示)</td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input class='noBorder' type='checkbox' name='flag[]' id='flagsh' value='h'><label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'><label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'><label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'><label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'><label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'><label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'><label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j hidden"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="{:$i->data->thumb}" /> 【<a href='#' title="上传图片" id="upload">上传图片</a>】</td> </tr> <tr class="notJ"> <th>栏 目:</th> <td><select name="categoryId" id="categoryId"> <option value="">--请选择栏目--</option> {:foreach item=item from=$i->category} <option {:$item->style} value="{:$item->id}" {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> * (不能选灰色背景的栏目)</td> </tr> {:field fields=$i->addFields} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="" /></td> </tr> <tr class="notJ"> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc"></textarea></td> </tr> <tr> <th>文档排序:</th> <td> <select name="ordering" id="ordering"> <option value="0" selected="selected">默认排序</option> <option value="7">置顶一周</option> <option value="15">置顶半个月</option> <option value="30">置顶一个月</option> <option value="90">置顶三个月</option> <option value="180">置顶半年</option> <option value="360">置顶一年</option> </select></td> </tr> <tr class="notJ"> <th>列表显示:</th> <td> <label><input class="noBorder" name="listed" type="radio" value="1" checked="checked" />是</label> <label><input name="listed" class="noBorder" type="radio" value="0" />否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr class="notJ"> <th>访问权限:</th> <td><select name="visit" id="visit"> <option value="0" selected="selected">无任何访问限制</option> <option value="1">VIP1及以上等级</option> <option value="2">VIP2及以上等级</option> <option value="3">VIP3及以上等级</option> <option value="4">VIP4及以上等级</option> <option value="5">VIP5及以上等级</option> <option value="6">VIP6及以上等级</option> <option value="-1">禁止任何人访问</option> </select></td> </tr> <tr class="notJ"> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <script language="javascript" type="text/javascript"> $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#upload").click( function () { if($("#uploadFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="uploadFrame" src="{:$smarty.const.BOOT_URL}/file/upload/show" width="400" height="100" frameborder="0" scrolling="no"></iframe>', {title:'上传图片', afterHide:function() {remove();}}); return false; } } ); $("#thumb").focus( function () { if($.trim($("#thumb").get(0).value)!='') { new Boxy('<img src="'+$("#thumb").get(0).value+'">', {title:'缩略图'}); } } ); $("#thumb").blur( function () { $(".boxy-wrapper").hide("fast"); } ); function hide(){ $(".boxy-wrapper").remove(); Boxy.DEFAULTS.title = '上传成功'; new Boxy('<img src="'+$("#thumb").get(0).value+'">'); window.setTimeout("doHide();",2000); } function actionFrame() { $("#submit").get(0).disabled=true; new Boxy('<iframe frameborder="0" scrolling="auto" width="330" height="120" id="actionFrame" name="actionFrame"></iframe>', {title:'提示信息',closeable:false}); return true; } function hideAlertTrue(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'; return true; } function hideAlertFalse(){ $(".boxy-wrapper").remove(); $("#submit").get(0).disabled=false; return false; } function doAgain(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->Uri->getPathInfo()}'; return true; } function listMore(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'; return true; } function doHide(){ $(".boxy-wrapper").hide("slow"); remove(); } function upload(url){ $('#thumb').val(url); } $("#addNode").click( function () { $("select").hide(); if($('#newNodeName').tpl()===null) { new Boxy('<form action="" method="get">节点名称:<input type="text" name="newNodeName" id="newNodeName" value="" /> [<a href="#@" onclick="newNode();return false;">确定</a>]</form>', {title:'增加节点', afterHide:function() {remove();}}); } return false; } ); $("#addArchive").click( function () { if($("#addArchiveFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="addArchiveFrame" src="{:$smarty.const.BOOT_URL}/Archive/archive/lists/0/0/0/0/select/insertSpecIds" width="620" height="400" frameborder="0" scrolling="auto"></iframe>', {title:'选择文档', afterHide:function() {remove();}}); return false; } } ); $("#addRelative").click( function () { if($("#addRelativeFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="addRelativeFrame" src="{:$smarty.const.BOOT_URL}/Archive/archive/lists/0/0/0/0/select/insertRelativeIds" width="620" height="400" frameborder="0" scrolling="auto"></iframe>', {title:'选择文档', afterHide:function() {remove();}}); return false; } } ); function remove() { $(".boxy-wrapper").remove(); $("select").show(); } function newNode(){ var startBr="\n"; if($("#newNodeName").val()=='') { alert('节点名称不能为空'); return false; } if($("#specCode").val()==''){ startBr=""; } $("#specCode").val($("#specCode").val()+startBr+$("#newNodeName").val()+":"); remove(); return false; } var textObj; function insertSpecIds(ids){ if(typeof(textObj) == 'object' && textObj.caretPos) { textObj.caretPos.text+=ids; } else { var specValue = $("#specCode").val() +ids; $("#specCode").val(specValue); } remove(); return false; } function insertRelativeIds(ids){ $("#relative").val($("#relative").val() +ids); remove(); return false; } function setCaret(o){ textObj = o; if(textObj.createTextRange){ textObj.caretPos=document.selection.createRange().duplicate(); } } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveAddSpec.tpl
Smarty
asf20
13,067
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } .color { color:{:$i->data->color}; cursor:pointer;} #title {color:{:$i->data->color};{:if $i->data->flag|@strpos:"b" !== false}font-weight:bold;{:/if} } {:if $i->data->flag && $i->data->flag|@strpos:"j" !== false}.notJ{:else}.j{:/if}{display:none;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">标 题:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="{:$i->data->title|htmlspecialchars}" /> <input name="color" type="text" size="7" id="color" value="{:$i->data->color}" class="color" /></td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input name='flag[]' type='checkbox' class='noBorder' id='flagsh' value='h' {:php}echo (strpos($this->_tpl_var['i']->data->flag,'h')!==false ? 'checked="checked"' : '');{:/php}> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'{:if $i->data->flag|@strpos:"c" !== false} checked="checked"{:/if}> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'{:if $i->data->flag|@strpos:"p" !== false} checked="checked"{:/if}> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'{:if $i->data->flag|@strpos:"f" !== false} checked="checked"{:/if}> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'{:if $i->data->flag|@strpos:"s" !== false} checked="checked"{:/if}> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'{:if $i->data->flag|@strpos:"j" !== false} checked="checked"{:/if}> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'{:if $i->data->flag|@strpos:"b" !== false} checked="checked"{:/if}> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="{:$i->data->redirectUrl}" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="{:$i->data->viceTitle}" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="{:$i->data->thumb}" /> <a href='#' title="上传图片" class="buttonBox hidden" id="preView">预览</a> <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId"> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> * (不能选灰色背景的栏目)</td> </tr> <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="{:$i->data->author}" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="{:$i->data->source}" /></td> </tr> {:field fields=$i->addFields data=$i->addData} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr class="notJ"> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="{:$i->data->keywords}" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc">{:$i->data->desc}</textarea></td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 0}selected="selected"{:/if}>默认排序</option> <option value="7" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 7}selected="selected"{:/if}>置顶一周</option> <option value="15" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 15}selected="selected"{:/if}>置顶半个月</option> <option value="30" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 30}selected="selected"{:/if}>置顶一个月</option> <option value="90" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 90}selected="selected"{:/if}>置顶三个月</option> <option value="180" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 180}selected="selected"{:/if}>置顶半年</option> <option value="360" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 360}selected="selected"{:/if}>置顶半年</option> </select></td> </tr> <tr class="notJ"> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" {:if $i->data->listed == '1'}checked="checked"{:/if} />是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" {:if $i->data->listed == '0'}checked="checked"{:/if} />否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr class="notJ"> <th>访问控制:</th> <td><select name="visit" id="visit"> <option value="1" {:if $i->data->visit == '1'}selected="selected"{:/if}>访问允许</option> <option value="0" {:if $i->data->visit == '0'}selected="selected"{:/if}>禁止访问</option> </select></td> </tr> <tr class="notJ"> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$i->data->pubTime|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr class="notJ"> <th width="20%">文档模板:</th> <td width="80%">/template/{:$i->Load->var.style}/<input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr class="notJ"> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH}<input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /></td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } $(document).ready(function(){ $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13 }); $('form').submit(function(){ postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveMod.tpl
Smarty
asf20
13,237
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/tooltip.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.boxy.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/boxy.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript"> $(document).ready(function() { $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5, duration:1000}); }); function selAll(name) { $("input[name='"+name+"']").attr("checked", true); } function selAnti(name) { $("input[name='"+name+"']").each(function(i){ this.checked=!this.checked; }); } function del(name){ var ids=''; $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); if(ids.length==0) { alert('您还没有选中要删除的记录!'); return false; } ids = ids.substr(0,ids.length-1) if(confirm('确定要删除ID为'+ids+'的记录吗?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists', 3, 'width:250px;text-align:center;'); } } </script> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">#ID</th> <th scope="col">选择</th> <th scope="col">昵称</th> <th scope="col">IP</th> <th scope="col">评论时间</th> <th scope="col">评论内容</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td>{:$item->id}</td> <td><input name="sel[]" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td>{:$item->uname|default:'匿名网友'}</td> <td>{:$item->ip}</td> <td>{:$item->time|date_format:"%Y-%m-%d %H:%M:%S"}</td> <td title="{:$item->message}" class="helpTip">点击查看</td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">修改</a> | <a onclick="if(confirm('确定要删除?')){getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/{:$item->id}', '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists', 3, 'width:250px;text-align:center;');}return false;" href="#@">删除</a></td> </tr>{:/foreach} <tr> <td colspan="7" class="lightGreyBg textL"> <a href="#@" onclick="selAll('sel[]');">全选</a> | <a href="#@" onclick="selAnti('sel[]');">反选</a> | <a href="#@" onclick="dels('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/comment.tpl
Smarty
asf20
3,726
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.mydialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add/0/{:$i->p[2]}">添加字段</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">排序</th> <th scope="col">字段提示</th> <th scope="col">字段名</th> <th scope="col">类型</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists}<tr> <td>{:$item->ordering}</td> <td>{:$item->name}</td> <td>{:$item->field}</td> <td>{:$item->type}</td> <td><a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}/{:$i->p[2]}">修改</a> | <a onclick="if(confirm('确定要删除?'))del({:$item->id},'{:$item->field}');return false;" href="#@">删除</a></td> </tr>{:/foreach} <tr> <td colspan="6" class="lightGreyBg textL"> {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function del(id,field) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+id+'/{:$i->p[2]}/'+field, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/0/{:$i->p[2]}'); return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/field.tpl
Smarty
asf20
3,407
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!--config[ th {text-align:right;} td {text-align:left;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/0/{:$i->p[2]}">字段管理</a>]</h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">排  序:</th> <td width="80%"><input name="ordering" type="text" size="4" id="ordering" value="0" class="posted" /></td> </tr> <tr> <th width="20%">字段提示:</th> <td width="80%"><input name="name" type="text" size="20" id="name" value="" class="posted" /></td> </tr> <tr> <th width="20%">空值提示:</th> <td width="80%"><input name="emptyTip" type="text" size="40" id="emptyTip" value="" class="posted" /> (允许字段空值则留空)</td> </tr> <tr> <th width="20%">字段名称:</th> <td width="80%"><input name="field" type="text" size="20" id="field" value="" class="posted" /></td> </tr> <tr> <th>字段类型:</th> <td><select id="selectCode" > <option value=''>常用类型参考</option> <option value="text">单行文本</option> <option value="textarea">多行文本域</option> <option value="FCKeditor">编辑器文本域</option> <option value="checkbox">复选框</option> <option value="radio">单选按钮组</option> <option value="select">下拉列表</option> <option value="hidden">隐藏域</option> </select> <input name="type" type="text" id="type" value="" size="40" title="不能带有双引号,请根据需要适当修改参考代码" class="posted" /> <select id="selectType" > <option value="">更多参考...</option> <option value="int(11) NOT NULL DEFAULT 0">int(11)</option> <option value="tinyint(1) NOT NULL DEFAULT 0">tinyint(1)</option> <option value="smallint(6) NOT NULL DEFAULT 0">smallint(6)</option> <option value="mediumint(8) NOT NULL DEFAULT 0">mediumint(8)</option> <option value="varchar(255) NOT NULL">varchar(255)</option> <option value="char(5) NOT NULL">char(5)</option> <option value="set('a','c','c')">set('a','c','c')</option> <option value="enum('a','c','c')">enum('a','c','c')</option> <option value="tinytext">tinytext</option> <option value="text">text</option> <option value="mediumtext">mediumtext</option> <option value="longtext">longtext</option> </select></td> </tr> <tr> <th>表单代码:</th> <td><textarea title="不能带有双引号,请根据需要适当修改参考代码" name="code" cols="60" rows="10" id="code" class="posted"></textarea></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1/{:$i->p[2]}' }); }); $("#selectType").change( function() { $("#type").get(0).value = this.value; }); $("#selectCode").change( function() { var code,field; field=$("#field").get(0).value; if(this.value=='text'){ $("#type").get(0).value = "varchar(64) NOT NULL"; code='<!--config{type=text}-->\n<input name="'+field+'" id="'+field+'" size="30" type="text" value="$value" />'; }else if(this.value=='hidden'){ $("#type").get(0).value = "varchar(64) NOT NULL"; code='<!--config{type=hidden}-->\n<input name="'+field+'" id="'+field+'" type="hidden" value="$value" />'; }else if(this.value=='textarea'){ $("#type").get(0).value = "text"; code='<!--config{type=textarea}-->\n<textarea name="'+field+'" id="'+field+'" cols="60" rows="8">$value</textarea>'; }else if(this.value=='FCKeditor'){ $("#type").get(0).value = "text"; code='<!--config{type=FCKeditor}-->\nFCKeditor|Width=100%;Height=500'; }else if(this.value=='checkbox'){ $("#type").get(0).value = "varchar(24) NOT NULL"; code='<!--config{type=checkbox}-->\n<input name="'+field+'" id="'+field+'" type="checkbox" value="1" />'; }else if(this.value=='radio'){ $("#type").get(0).value = "tinyint(1) NOT NULL DEFAULT 0"; code='<!--config{type=radio}-->\n<label><input name="'+field+'" type="radio" value="1" checked="checked" />是</label> \n<label><input name="'+field+'" type="radio" value="0" />否</label>'; }else if(this.value=='select'){ $("#type").get(0).value = "varchar(32) NOT NULL"; code='<!--config{type=select}-->\n<select name="'+field+'">\n <option value="1" selected="selected">1</option>\n <option value="2">2</option>\n</select>'; }else{ code=this.value; } $("#code").get(0).value = code; }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/fieldAdd.tpl
Smarty
asf20
6,808
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } .color { color:#000000; cursor:pointer;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/insert/0/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">标 题:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="" /> <input name="color" type="text" size="7" id="color" value="#000000" class="color" /> </td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input class='noBorder' type='checkbox' name='flag[]' id='flagsh' value='h'> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j hidden"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="" /> <a href='#' title="预览图片" class="buttonBox hidden" id="preView">预览</a> <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId" onchange="if(!this.value){alert('请选择白色背景的栏目');this.value = 0;return false;}"> <option value="0">--请选择栏目--</option> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> *</td> </tr> <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="" /></td> </tr> {:field fields=$i->addFields} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();return false;">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();return false;">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc"></textarea></td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" selected="selected">默认排序</option> <option value="7">置顶一周</option> <option value="15">置顶半个月</option> <option value="30">置顶一个月</option> <option value="90">置顶三个月</option> <option value="180">置顶半年</option> <option value="360">置顶一年</option> </select></td> </tr> <tr> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" checked="checked" /> 是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" /> 否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr> <th>访问控制:</th> <td> <select name="visit" id="visit"> <option value="0" selected="selected">允许访问</option> <option value="1">禁止访问</option> </select> </td> </tr> <tr> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr> <th width="20%">文档模板:</th> <td width="80%">/template/{:$i->Load->var.style}/ <input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH} <input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /> </td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } $(document).ready(function(){ $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13 }); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $('form').submit(function(){ postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveAdd.tpl
Smarty
asf20
11,768
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} <span>[<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/add">添加栏目</a>] [<a href="#" class="helpTip" title="可以上下拖动栏目名称进行排序">?</a>]</span></h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col">#ID</th> <th scope="col">选择</th> <th class="textL" scope="col">栏目名称</th> <th scope="col">类型</th> <th scope="col">访问</th> <th scope="col">隐藏</th> <th scope="col">操作</th> </tr> <tbody class="main"> {:foreach item=item from=$i->lists}<tr> <td>{:$item->id}</td> <td><input name="sel[]" type="checkbox" value="{:$item->id}" class="noBorder" /></td> <td class="textL"> {:$item->name} {:if $item->alias != '' && $item->type != '0'} ({:$item->alias}) {:/if}</td> <td> {:if $item->type == 1} {:$item->channelName}列表 {:elseif $item->type == 2} 栏目封面 {:else} 任意链接 {:/if}</td> <td> {:if $item->type == '0'} 跳转 {:elseif $item->visit == 1} 静态 {:elseif $item->visit == 2} 动态 {:else} 自动 {:/if} </td> <td> {:if $item->isHidden} 是 {:else} 否 {:/if}</td> <td> {:if $item->type == 1} <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/archive/lists/0/{:$item->id}">管理文档</a> | <a target="_blank" href="{:$smarty.const.ROOT_DIR}/boot.php/data/category/{:$item->id}">预览</a> | {:elseif $item->type == 2} <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/archive/lists/0/{:$item->id}">管理文档</a> | <a target="_blank" href="{:$smarty.const.ROOT_DIR}/boot.php/data/category/{:$item->id}">预览</a> | {:else} <a target="_blank" href="{:$item->link}">预览</a> | {:/if} <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/mod/{:$item->id}">修改</a> | <a onclick="del({:$item->id});" href="#@">删除</a></td> </tr>{:/foreach} </tbody> <tr> <td colspan="7" class="lightGreyBg textL"> <a href="#@" onclick="selAll('sel[]');">全选</a> | <a href="#@" onclick="selAnti('sel[]');">反选</a> | <a href="#@" onclick="del(0);">删除</a></td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function() { $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); function del(id) { var ids=''; if(id == 0) { $("input:checked[name='sel[]']").each(function(i){ ids+=this.value+','; }); ids = ids.substr(0,ids.length-1); } else if(id > 0) { ids = id; } if(ids.length==0) { alert('您还没有选中要删除的记录'); return false; } if(confirm('删除栏目会同时删除相关的子栏目及相关栏目下的全部文档,确定要删除ID为'+ids+'的栏目?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del/'+ids, '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1'); } return false; } function order() { var ids = ''; $("input[name='sel[]']").each(function(){ if(ids == '') { ids=this.value; } else { ids+=','+this.value; } }); getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/ordering/'+ids); return false; } $(function() { $(".main") .sortable({ connectWith: '.main', update: function(event, ui) { order(); }, axis: 'y', cursor: 'move' , delay: 100, opacity: 0.9 }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/category.tpl
Smarty
asf20
5,593
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th {text-align:right;} td {text-align:left;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">模型名称:</th> <td width="80%"><input name="name" type="text" size="20" id="name" value="{:$i->data->name}" class="posted" /></td> </tr> <tr> <th>数据表名:</th> <td>{:$i->Config->config.mysql.prefix}archive_channel_<input name="tableId" type="text" id="tableId" value="{:$i->data->tableId}" size="10" maxlength="20" class="posted" /> <input name="oldTableId" type="hidden" id="oldTableId" value="{:$i->data->tableId}" size="10" maxlength="30" class="posted inputLine" /></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /> </td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/update/{:$i->p[1]}', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/channelMod.tpl
Smarty
asf20
2,736
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } object{ padding-top:-8px; margin:0;} .template { border:none; border-bottom:1px #999 solid; } .color { color:{:$i->data->color}; cursor:pointer;} #title {color:{:$i->data->color};{:if $i->data->flag|@strpos:"b" !== false}font-weight:bold;{:/if} } {:if $i->data->flag && $i->data->flag|@strpos:"j" !== false}.notJ{:else}.j{:/if}{display:none;} .pictureData{ border:solid 1px #ccc; margin:0 5px 5px 0; float:left; padding:5px; text-align:center;} .pictureData input{ border:none; border-bottom:1px #999 dashed;} .pictureData img{padding:2px;cursor:move;} .pictureDesc{} .uploadButtonArea{ padding:5px 0;} .manualData{border:solid 1px #ccc; margin:0 5px 5px 0; padding:5px; background:#eee;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/update/{:$i->p[1]}/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">标 题:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="{:$i->data->title|htmlspecialchars}" /> <input name="color" type="text" size="7" id="color" value="{:$i->data->color}" class="color" /></td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input name='flag[]' type='checkbox' class='noBorder' id='flagsh' value='h' {:php}echo (strpos($this->_tpl_var['i']->data->flag,'h')!==false ? 'checked="checked"' : '');{:/php}> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'{:if $i->data->flag|@strpos:"c" !== false} checked="checked"{:/if}> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'{:if $i->data->flag|@strpos:"p" !== false} checked="checked"{:/if}> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'{:if $i->data->flag|@strpos:"f" !== false} checked="checked"{:/if}> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'{:if $i->data->flag|@strpos:"s" !== false} checked="checked"{:/if}> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'{:if $i->data->flag|@strpos:"j" !== false} checked="checked"{:/if}> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'{:if $i->data->flag|@strpos:"b" !== false} checked="checked"{:/if}> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="{:$i->data->redirectUrl}" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="{:$i->data->viceTitle}" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="{:$i->data->thumb}" /> <a href='#' title="上传图片" class="buttonBox hidden" id="preView">预览</a> <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId"> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId || $item->type != 1}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> * </td> </tr> <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="{:$i->data->author}" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="{:$i->data->source}" /></td> </tr> <tr class="notJ"> <th width="20%">图片内容:</th> <td width="80%"> <input name="content" type="hidden" size="30" id="content" value="" /> <div id="pictureList"></div> <div class="clear"></div> <div id="manualList"></div> <div id="fileQueuePicture"></div> <div class="uploadButtonArea"><input type="file" name="uploadifyPicture" id="uploadifyPicture" size="2" />【<a href="#@" id="addButton">增加网址输入框</a>】</div> </td> </tr> <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#@" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr class="notJ"> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="{:$i->data->keywords}" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc">{:$i->data->desc}</textarea></td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 0}selected="selected"{:/if}>默认排序</option> <option value="7" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 7}selected="selected"{:/if}>置顶一周</option> <option value="15" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 15}selected="selected"{:/if}>置顶半个月</option> <option value="30" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 30}selected="selected"{:/if}>置顶一个月</option> <option value="90" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 90}selected="selected"{:/if}>置顶三个月</option> <option value="180" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 180}selected="selected"{:/if}>置顶半年</option> <option value="360" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 360}selected="selected"{:/if}>置顶半年</option> </select></td> </tr> <tr class="notJ"> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" {:if $i->data->listed == '1'}checked="checked"{:/if} />是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" {:if $i->data->listed == '0'}checked="checked"{:/if} />否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr class="notJ"> <th>访问控制:</th> <td><select name="visit" id="visit"> <option value="1" {:if $i->data->visit == '1'}selected="selected"{:/if}>访问允许</option> <option value="0" {:if $i->data->visit == '0'}selected="selected"{:/if}>禁止访问</option> </select></td> </tr> <tr class="notJ"> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$i->data->pubTime|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr class="notJ"> <th width="20%">文档模板:</th> <td width="80%">/template/{:$i->Load->var.style}/<input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr class="notJ"> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH}<input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /></td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> var countManualUrl = 1; var countPicturnData = 1; var content = "{:$i->addData->content}"; var pictures = content.split("{!}"); for(var i=0; i<pictures.length; i++) { var pictureData = pictures[i].split("{#}"); var file = pictureData[0]; var thumb = (pictureData[1].length > 0) ? pictureData[1] : file; var desc = pictureData[2]; addPicture(file,thumb,desc); } function removeHtml(id) { $('#'+id).fadeOut("slow",function(){$('#'+id).remove();}); } function showImg(id) { if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var v = $("#"+id).val(); if(v != "") { $('<div class="ui-dialog-message"><img src="' + v + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } } function setContent() { var v='', s=''; $(".pictureData").each(function(i){ var url = $(this).find('.pictureUrl').val(); var thumb = $(this).find('.pictureThumbUrl').attr('src'); var desc = $(this).find('.pictureDesc').val(); if(url!='') { if(v=='') { s=''; } else { s="{!}"; } v += s+url+'{#}'+thumb+'{#}'+desc; } }); $("#content").val(v); } function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } function uploadedPicture(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { var file = $(response).find("#file").html(); var thumb = $(response).find("#thumb").html(); addPicture(file,thumb,''); } } function addManualPicture(manualDataId,fileId,descId) { var file = $('#'+fileId).val(); var desc = $('#'+descId).val(); addPicture(file,'',desc); $('#'+manualDataId).hide('slow',function(){$('#'+manualDataId).remove();}); } function addPicture(file,thumb,desc) { if(!file) return false; if($('#pictureData0').length > 0) { $('#pictureData0').remove(); } thumb = thumb ? thumb : file; $("#pictureList").append('<div class="pictureData" id="pictureData'+countPicturnData+'"><img alt="拖动图片进行排序" class="pictureThumbUrl" width="{:$i->uploadSetting.thumbWidth}" height="{:$i->uploadSetting.thumbHeight}" src="'+thumb+'" /><br />【<a href="javascript:removeHtml(\'pictureData'+countPicturnData+'\');">删除</a>】描述:<input type="text" size="20" class="pictureDesc" name="pictureDesc" value="'+desc+'" /><input type="hidden" class="pictureUrl" name="pictureUrl" value="'+file+'" /></div>'); countPicturnData++; } $(document).ready(function(){ $("#pictureList").sortable({ connectWith: '#pictureList', cursor: 'move', handle: 'img', delay: 0, opacity: 0.6 }); $("#uploadifyPicture").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueuePicture', 'auto' : true, 'multi' : true, 'onComplete' : function(e,queueId,fileObj,response,data){uploadedPicture(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadBatButton.gif', 'width' : 120, 'height' : 13, 'fileDesc' : '*.jpg;*.gif;*.png', 'fileExt' : '*.jpg;*.gif;*.png' }); $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13, 'fileDesc' : '*.jpg;*.gif;*.png', 'fileExt' : '*.jpg;*.gif;*.png' }); $("#addButton").click( function () { var id = countManualUrl; $("#manualList").append('<div class="manualData" id="manualData'+id+'">地址'+id+':<input type="text" size="60" class="manualUrl" id="manualUrl'+id+'" value="" />【<a href="javascript:showImg(\'manualUrl'+id+'\');">预览</a>】<br />描述'+id+':<input type="text" size="60" class="manualDesc" id="manualDesc'+id+'" value="" />【<a href="javascript:addManualPicture(\'manualData'+id+'\',\'manualUrl'+id+'\',\'manualDesc'+id+'\');">确定</a>】</div>'); countManualUrl++; return false; } ); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $('form').submit(function(){ setContent(); postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveModPicture.tpl
Smarty
asf20
18,172
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/tooltip.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.boxy.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/common/boxy.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'j')!==false ? '.notJ{display:none;}' : '.j{display:none;}');{:/php} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/{:if $i->p[0] eq "mod"}update/{:$i->p[1]}{:elseif $i->p[0] eq "add"}insert/0{:/if}/{:$i->p[2]}/{:$i->p[3]}" target="actionFrame" onsubmit="javascript:return actionFrame();"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">完整标题:</th> <td width="80%"><input class="inputtitle" name="title" type="text" size="60" id="title" value="{:$i->data->title|htmlspecialchars}" /> *</td> </tr> <tr> <th width="20%">简短标题:</th> <td width="80%"><input class="inputtitle" name="briefTitle" type="text" size="40" id="briefTitle" value="{:$i->data->briefTitle|htmlspecialchars}" title="可不填,默认和完整标题相同" /> <select name="color" id="color"> <option value="">颜色</option> <option value="#000" style="background-color:#000" {:if $i->data->color == '#000'}selected="selected"{:/if}></option> <option value="#fff" style="background-color:#fff" {:if $i->data->color == '#fff'}selected="selected"{:/if}></option> <option value="green" style="background-color:green" {:if $i->data->color == 'green'}selected="selected"{:/if}></option> <option value="maroon" style="background-color:maroon" {:if $i->data->color == 'maroon'}selected="selected"{:/if}></option> <option value="olive" style="background-color:olive" {:if $i->data->color == 'olive'}selected="selected"{:/if}></option> <option value="navy" style="background-color:navy" {:if $i->data->color == 'navy'}selected="selected"{:/if}></option> <option value="purple" style="background-color:purple" {:if $i->data->color == 'purple'}selected="selected"{:/if}></option> <option value="gray" style="background-color:gray" {:if $i->data->color == 'gray'}selected="selected"{:/if}></option> <option value="#ff0" style="background-color:#ff0" {:if $i->data->color == '#ff0'}selected="selected"{:/if}></option> <option value="#0f0" style="background-color:#0f0" {:if $i->data->color == '#0f0'}selected="selected"{:/if}></option> <option value="#0ff" style="background-color:#0ff" {:if $i->data->color == '#0ff'}selected="selected"{:/if}></option> <option value="#f0f" style="background-color:#f0f" {:if $i->data->color == '#f0f'}selected="selected"{:/if}></option> <option value="red" style="background-color:red" {:if $i->data->color == 'red'}selected="selected"{:/if}></option> <option value="#00f" style="background-color:#00f" {:if $i->data->color == '#00f'}selected="selected"{:/if}></option> <option value="teal" style="background-color:teal" {:if $i->data->color == 'teal'}selected="selected"{:/if}></option> </select> (在列表中显示)</td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input name='flag[]' type='checkbox' class='noBorder' id='flagsh' value='h' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'h')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'c')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'p')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'f')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'s')!==false ? 'checked="checked"' : '');{:/php}><label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'j')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b' {:php}echo (strpos($this->_tpl_vars['i']->data->flag,'b')!==false ? 'checked="checked"' : '');{:/php}><label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="{:$i->data->redirectUrl}" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="{:$i->data->viceTitle}" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="{:$i->data->thumb}" /> [<a href='#' title="上传图片" id="upload">上传图片</a>]</td> </tr> <tr class="notJ"> <th>栏 目:</th> <td><select name="categoryId" id="categoryId"> {:foreach item=item from=$i->category} <option {:$item->style} value="{:$item->id}" {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> * (不能选灰色背景的栏目)</td> </tr> {:field fields=$i->addFields data=$i->addData} <tr class="notJ"> <th width="20%">{:$name}:</th> <td width="80%"> {:$code} </td> </tr> {:/field} <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="{:$i->data->author}" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="{:$i->data->source}" /></td> </tr> <tr class="notJ"> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="{:$i->data->keywords}" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc">{:$i->data->desc}</textarea></td> </tr> <tr> <th>文档排序:</th> <td> <select name="ordering" id="ordering"> <option value="0" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 0}selected="selected"{:/if}>默认排序</option> <option value="7" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 7}selected="selected"{:/if}>置顶一周</option> <option value="15" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 15}selected="selected"{:/if}>置顶半个月</option> <option value="30" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 30}selected="selected"{:/if}>置顶一个月</option> <option value="90" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 90}selected="selected"{:/if}>置顶三个月</option> <option value="180" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 180}selected="selected"{:/if}>置顶半年</option> <option value="360" {:if ($i->data->ordering - $i->data->pubTime) / 86400 == 360}selected="selected"{:/if}>置顶半年</option> </select></td> </tr> <tr class="notJ"> <th>列表显示:</th> <td> <label><input class="noBorder" name="listed" type="radio" value="1" {:if $i->data->listed == '1'}checked="checked"{:/if} />是</label> <label><input name="listed" class="noBorder" type="radio" value="0" {:if $i->data->listed == '0'}checked="checked"{:/if} />否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr class="notJ"> <th>访问权限:</th> <td><select name="visit" id="visit"> <option value="0" selected="selected">无任何访问限制</option> <option value="1">VIP1及以上等级</option> <option value="2">VIP2及以上等级</option> <option value="3">VIP3及以上等级</option> <option value="4">VIP4及以上等级</option> <option value="5">VIP5及以上等级</option> <option value="6">VIP6及以上等级</option> <option value="-1">禁止任何人访问</option> </select></td> </tr> <tr class="notJ"> <th>访问权限:</th> <td><select name="visit" id="visit"> <option value="0" {:if $i->data->visit == '0'}selected="selected"{:/if}>无任何访问限制</option> <option value="1" {:if $i->data->visit == '1'}selected="selected"{:/if}>VIP1及以上等级</option> <option value="2" {:if $i->data->visit == '2'}selected="selected"{:/if}>VIP2及以上等级</option> <option value="3" {:if $i->data->visit == '3'}selected="selected"{:/if}>VIP3及以上等级</option> <option value="4" {:if $i->data->visit == '4'}selected="selected"{:/if}>VIP4及以上等级</option> <option value="5" {:if $i->data->visit == '5'}selected="selected"{:/if}>VIP5及以上等级</option> <option value="6" {:if $i->data->visit == '6'}selected="selected"{:/if}>VIP6及以上等级</option> <option value="-1" {:if $i->data->visit == '-1'}selected="selected"{:/if}>禁止任何人访问</option> </select></td> </tr> <tr class="notJ"> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$i->data->pubTime|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <script language="javascript" type="text/javascript"> $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#upload").click( function () { if($("#uploadFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="uploadFrame" src="{:$smarty.const.BOOT_URL}/file/upload/show" width="400" height="100" frameborder="0" scrolling="no"></iframe>', {title:'上传图片', afterHide:function() {remove();}}); return false; } } ); $("#thumb").focus( function () { if($.trim($("#thumb").get(0).value)!='') { new Boxy('<img src="'+$("#thumb").get(0).value+'">', {title:'缩略图'}); } } ); $("#thumb").blur( function () { $(".boxy-wrapper").hide("fast"); } ); function hide(){ $(".boxy-wrapper").remove(); Boxy.DEFAULTS.title = '上传成功'; new Boxy('<img src="'+$("#thumb").get(0).value+'">'); window.setTimeout("doHide();",2000); } function actionFrame() { $("#submit").get(0).disabled=true; new Boxy('<iframe frameborder="0" scrolling="auto" width="330" height="120" id="actionFrame" name="actionFrame"></iframe>', {title:'提示信息',closeable:false}); return true; } function hideAlertTrue(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'; return true; } function hideAlertFalse(){ $(".boxy-wrapper").remove(); $("#submit").get(0).disabled=false; return false; } function doAgain(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->Uri->getPathInfo()}'; return true; } function listMore(){ $(".boxy-wrapper").remove(); window.location.href='{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists'; return true; } function doHide(){ $(".boxy-wrapper").hide("slow"); remove(); } function upload(url){ $('#thumb').val(url); } $("#addNode").click( function () { $("select").hide(); if($('#newNodeName').tpl()===null) { new Boxy('<form action="" method="get">节点名称:<input type="text" name="newNodeName" id="newNodeName" value="" /> [<a href="#@" onclick="newNode();return false;">确定</a>]</form>', {title:'增加节点', afterHide:function() {remove();}}); } return false; } ); $("#addArchive").click( function () { if($("#addArchiveFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="addArchiveFrame" src="{:$smarty.const.BOOT_URL}/Archive/archive/lists/0/0/0/0/select/insertSpecIds" width="620" height="400" frameborder="0" scrolling="auto"></iframe>', {title:'选择文档', afterHide:function() {remove();}}); return false; } } ); $("#addRelative").click( function () { if($("#addRelativeFrame").tpl()===null) { $("select").hide(); new Boxy('<iframe id="addRelativeFrame" src="{:$smarty.const.BOOT_URL}/Archive/archive/lists/0/0/0/0/select/insertRelativeIds" width="620" height="400" frameborder="0" scrolling="auto"></iframe>', {title:'选择文档', afterHide:function() {remove();}}); return false; } } ); function remove() { $(".boxy-wrapper").remove(); $("select").show(); } function newNode(){ var startBr="\n"; if($("#newNodeName").val()=='') { alert('节点名称不能为空'); return false; } if($("#specCode").val()==''){ startBr=""; } $("#specCode").val($("#specCode").val()+startBr+$("#newNodeName").val()+":"); remove(); return false; } var textObj; function insertSpecIds(ids){ if(typeof(textObj) == 'object' && textObj.caretPos) { textObj.caretPos.text+=ids; } else { var specValue = $("#specCode").val() +ids; $("#specCode").val(specValue); } remove(); return false; } function insertRelativeIds(ids){ $("#relative").val($("#relative").val() +ids); remove(); return false; } function setCaret(o){ textObj = o; if(textObj.createTextRange){ textObj.caretPos=document.selection.createRange().duplicate(); } } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveModSpec.tpl
Smarty
asf20
16,681
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/uploadify.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .template { border:none; border-bottom:1px #999 solid; } .color { color:#000000; cursor:pointer;} .pictureData{ border:solid 1px #ccc; margin:0 5px 5px 0; float:left; padding:5px; text-align:center;} .pictureData input{ border:none; border-bottom:1px dashed #999;} .pictureData img{padding:2px;cursor:move;} .pictureDesc{} .uploadButtonArea{ padding:5px 0;} .manualData{border:solid 1px #ccc; margin:0 5px 5px 0; padding:5px; background:#eee;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/insert/0/{:$i->p[2]}/{:$i->p[3]}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">标 题:</th> <td width="80%"><input class="inputtitle showcolor" name="title" type="text" size="60" id="title" value="" /> <input name="color" type="text" size="7" id="color" value="#000000" class="color" /> </td> </tr> <tr> <th width="20%">属 性:</th> <td width="80%"><input class='noBorder' type='checkbox' name='flag[]' id='flagsh' value='h'> <label for="flagsh"> 头条[h]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsc' value='c'> <label for="flagsc"> 推荐[c]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsp' value='p'> <label for="flagsp"> 图文[p]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsf' value='f'> <label for="flagsf"> 幻灯[f]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagss' value='s'> <label for="flagss"> 滚动[s]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsj' value='j'> <label for="flagsj"> 跳转[a]</label> <input class='noBorder' type='checkbox' name='flag[]' id='flagsb' value='b'> <label for="flagsb"> 加粗[b]</label></td> </tr> <tr class="j hidden"> <th width="20%">跳转地址:</th> <td width="80%"><input name="redirectUrl" type="text" size="60" id="redirectUrl" value="" /> *</td> </tr> <tr class="notJ"> <th width="20%">副标题:</th> <td width="80%"><input name="viceTitle" type="text" size="60" id="viceTitle" value="" /></td> </tr> <tr> <th>缩略图:</th> <td><input title="点击查看图片" name="thumb" type="text" size="50" id="thumb" value="" /> 【<a href='#' title="上传图片" id="preView">预览</a>】 <input type="file" name="uploadify" id="uploadify" size="2" /> <div id="fileQueue"></div></td> </tr> <tr> <th>栏 目:</th> <td><select name="categoryId" id="categoryId" onchange="if(!this.value){alert('请选择白色背景的栏目');this.value = 0;return false;}"> <option value="0">--请选择栏目--</option> {:foreach item=item from=$i->category} <option {:if $item->channelId != $i->channelId || $item->type != 1}style="background:#ccc;" value="-1"{:else}value="{:$item->id}"{:/if} {:if $item->id == $i->categoryId}selected="selected"{:/if}>{:$item->name}</option> {:/foreach} </select> *</td> </tr> <tr class="notJ"> <th>作 者:</th> <td><input name="author" type="text" size="30" id="author" value="" /></td> </tr> <tr class="notJ"> <th>来 源:</th> <td><input name="source" type="text" size="30" id="source" value="" /></td> </tr> <tr class="notJ"> <th width="20%">图片内容:</th> <td width="80%"> <input name="content" type="hidden" size="30" id="content" value="" /> <div id="pictureList"> <div class="pictureData" id="pictureData0">提示:上传图片后可以拖动图片进行排序</div> </div> <div class="clear"></div> <div id="manualList"></div> <div id="fileQueuePicture"></div> <div class="uploadButtonArea"><input type="file" name="uploadifyPicture" id="uploadifyPicture" size="2" />【<a href="#@" id="addButton">增加网址输入框</a>】</div> </td> </tr> <tr class="notJ" id="advShow"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advItems').show();$('#advHide').show();$('#advShow').hide();return false;">显示高级选项</a>】</td> </tr> <tr class="notJ hidden" id="advHide"> <th width="20%">&nbsp;</th> <td width="80%">【<a href="#" onclick="$('#advShow').show();$('#advHide').hide();$('#advItems').hide();return false;">隐藏高级选项</a>】</td> </tr> <tbody class="notJ hidden" id="advItems"> <tr> <th width="20%">关键词:</th> <td width="80%"><input name="keywords" type="text" size="50" id="keywords" value="" /> (多个时用空格隔开)</td> </tr> <tr class="notJ"> <th width="20%">摘 要:</th> <td width="80%"><textarea name="desc" cols="58" rows="4" id="desc"></textarea></td> </tr> <tr> <th>文档排序:</th> <td><select name="ordering" id="ordering"> <option value="0" selected="selected">默认排序</option> <option value="7">置顶一周</option> <option value="15">置顶半个月</option> <option value="30">置顶一个月</option> <option value="90">置顶三个月</option> <option value="180">置顶半年</option> <option value="360">置顶一年</option> </select></td> </tr> <tr> <th>列表显示:</th> <td><label> <input class="noBorder" name="listed" type="radio" value="1" checked="checked" /> 是</label> <label> <input name="listed" class="noBorder" type="radio" value="0" /> 否</label> (如果选否则不会在首页和列表页中出现)</td> </tr> <tr> <th>访问控制:</th> <td> <select name="visit" id="visit"> <option value="0" selected="selected">允许访问</option> <option value="1">禁止访问</option> </select> </td> </tr> <tr> <th width="20%">发布日期:</th> <td width="80%"><input name="pubTime" type="text" size="20" id="pubTime" value="{:$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"} " /></td> </tr> <tr> <th width="20%">文档模板:</th> <td width="80%">/template/{:$i->Load->var.style}/ <input name="templateName" type="text" size="30" value="" id="templateName" class="inputLine" /></td> </tr> <tr> <th width="20%" nowrap="nowrap">生成文档:</th> <td width="80%">{:$smarty.const.ROOT_PATH} <input name="fileName" type="text" size="30" value="" id="fileName" class="inputLine" /> </td> </tr> </tbody> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.upload.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/swfobject.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.uploadify.v2.1.0.min.js"></script> <script language="javascript" type="text/javascript"> var countManualUrl = 1; var countPicturnData = 1; function removeHtml(id) { $('#'+id).fadeOut("slow",function(){$('#'+id).remove();}); } function showImg(id) { if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var v = $("#"+id).val(); if(v != "") { $('<div class="ui-dialog-message"><img src="' + v + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } } function setContent() { var v='', s=''; $(".pictureData").each(function(i){ var url = $(this).find('.pictureUrl').val(); var thumb = $(this).find('.pictureThumbUrl').attr('src'); var desc = $(this).find('.pictureDesc').val(); if(url!='') { if(v=='') { s=''; } else { s="{!}"; } v += s+url+'{#}'+thumb+'{#}'+desc; } }); $("#content").val(v); } function upload(url) { $("#thumb").val(url); $("#preView").show(); } function uploaded(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { $("#preView").show(); var file = $(response).find("#file").html(); $("#thumb").val(file); } } function uploadedPicture(e,queueId,fileObj,response,data) { var error = $(response).find("#error").html(); if(error != '') { alert(error); } else { var file = $(response).find("#file").html(); var thumb = $(response).find("#thumb").html(); addPicture(file,thumb,''); } } function addManualPicture(manualDataId,fileId,descId) { var file = $('#'+fileId).val(); var desc = $('#'+descId).val(); addPicture(file,'',desc); $('#'+manualDataId).hide('slow',function(){$('#'+manualDataId).remove();}); } function addPicture(file,thumb,desc) { if(!file) return false; if($('#pictureData0').length > 0) { $('#pictureData0').remove(); } thumb = thumb ? thumb : file; $("#pictureList").append('<div class="pictureData" id="pictureData'+countPicturnData+'"><img alt="拖动图片进行排序" class="pictureThumbUrl" width="{:$i->uploadSetting.thumbWidth}" height="{:$i->uploadSetting.thumbHeight}" src="'+thumb+'" /><br />【<a href="javascript:removeHtml(\'pictureData'+countPicturnData+'\');">删除</a>】描述:<input type="text" size="20" class="pictureDesc" name="pictureDesc" value="'+desc+'" /><input type="hidden" class="pictureUrl" name="pictureUrl" value="'+file+'" /></div>'); countPicturnData++; } $(document).ready(function(){ $("#pictureList").sortable({ connectWith: '#pictureList', cursor: 'move', handle: 'img', delay: 0, opacity: 0.6 }); $("#uploadifyPicture").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueuePicture', 'auto' : true, 'multi' : true, 'onComplete' : function(e,queueId,fileObj,response,data){uploadedPicture(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadBatButton.gif', 'width' : 120, 'height' : 13, 'fileDesc' : '*.jpg;*.gif;*.png', 'fileExt' : '*.jpg;*.gif;*.png' }); $("#uploadify").uploadify({ 'uploader' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadify.swf', 'script' : '{:$smarty.const.BOOT_URL}/file/upload', 'cancelImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/cancel.png', 'queueID' : 'fileQueue', 'auto' : true, 'multi' : false, 'onComplete' : function(e,queueId,fileObj,response,data){uploaded(e,queueId,fileObj,response,data);}, 'buttonImg' : '{:$smarty.const.PUBLIC_DIR}/common/image/uploadButton.gif', 'width' : 90, 'height' : 13, 'fileDesc' : '*.jpg;*.gif;*.png', 'fileExt' : '*.jpg;*.gif;*.png' }); $("#addButton").click( function () { var id = countManualUrl; $("#manualList").append('<div class="manualData" id="manualData'+id+'">地址'+id+':<input type="text" size="60" class="manualUrl" id="manualUrl'+id+'" value="" />【<a href="javascript:showImg(\'manualUrl'+id+'\');">预览</a>】<br />描述'+id+':<input type="text" size="60" class="manualDesc" id="manualDesc'+id+'" value="" />【<a href="javascript:addManualPicture(\'manualData'+id+'\',\'manualUrl'+id+'\',\'manualDesc'+id+'\');">确定</a>】</div>'); countManualUrl++; return false; } ); if($("#thumb").val() != "") { $("#preView").show(); } $("#categoryId").change(function(){ if(this.value == -1) { alert('不能选择灰色背景的栏目'); this.value = 0; return false; } }); $("#preView").click(function(){ if($('.ui-dialog').length > 0) { $('.ui-dialog').remove(); } if($('.ui-dialog-message').length > 0) { $('.ui-dialog-message').remove(); } var thumbValue = $("#thumb").val(); if(thumbValue != "") { $('<div class="ui-dialog-message"><img src="' + thumbValue + '" onload="if(this.width > 350)this.width = 350;" /></div>').dialog({ title:'图片预览', resizable : false, width : 380 }); } }); $('form').submit(function(){ setContent(); postDialog(); }); $("#flagsj").click( function () { if(this.checked){ $(".j").show(); $(".notJ").hide(); }else{ $(".j").hide(); $(".notJ").show(); } } ); $("#color").colorpicker(); $("#flagsb").click( function () { if(this.checked){ $("#title").css("font-weight","bold"); }else{ $("#title").css("font-weight","normal"); } } ); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/archiveAddPicture.tpl
Smarty
asf20
16,558
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} => {:if $i->p[0] eq "mod"}修改{:elseif $i->p[0] eq "add"} 添加{:/if} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">模型名称:</th> <td width="80%"><input name="name" type="text" size="20" id="name" value="" class="posted" /></td> </tr> <tr> <th>数据表名:</th> <td>{:$i->Config->config.mysql.prefix}archive_channel_ <input name="tableId" type="text" size="10" maxlength="30" id="tableId" value="" class="posted inputLine" /></td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/insert', goUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/-1' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Archive/channelAdd.tpl
Smarty
asf20
2,562
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL">一键更新</th> </tr> <tr> <td class="textL"><input name="update" value="开始更新" type="button" onclick="window.location.href='{:$smarty.const.BOOT_URL}/html/update/all';" /></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL">更新首页</th> </tr> <tr> <td class="textL">模板文件:/template/{:$i->Load->var.style}/{:$i->Load->var.homepageTemplateName}</td> </tr> <tr> <td class="textL">生成文件:{:$smarty.const.ROOT_PATH}/{:$i->Load->var.homepageFileName} [<a href="#@" class="helpTip" title="首页模板和生成的文件名可以在〖全局变量〗里修改">?</a>]</td> </tr> <tr> <td class="textL"><input name="update" value="开始更新" type="button" onclick="window.location.href='{:$smarty.const.BOOT_URL}/html/update/homepage';" /></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL">更新栏目</th> </tr> <tr> <td class="textL">选择栏目:<select name="categoryId" id="categoryId" onchange="if(!this.value){alert('请选择白色背景的栏目');this.value = 0;return false;}"> <option value="0">--所有栏目--</option> {:foreach item=item from=$i->category} <option value="{:$item->id}">{:$item->name}</option> {:/foreach} </select></td> </tr> <tr> <td class="textL"><input name="update" value="开始更新" type="button" onclick="window.location.href='{:$smarty.const.BOOT_URL}/html/update/category/'+$('#categoryId').val();" /></td> </tr> </table> </div> <div class="content shadow"> <form action="{:$smarty.const.BOOT_URL}/html/update/archive" method="get" > <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL">更新文档</th> </tr> <tr> <td class="textL"> <select name="limitTime" onchange="if(this.value == 1)$('#timeArea').show();else $('#timeArea').hide();"><option value="0" selected="selected">不限时间</option><option value="1">时间范围</option></select> <span id="timeArea" class="hidden"> <input value="0000-00-00 00:00:00" name="startTime" id="startTime" size="18" /> → <input value="{:$smarty.now|date_format:'%Y-%m-%d'} 23:59:59" name="endTime" id="endTime" size="18" /> </span></td> </tr> <tr> <td class="textL"> <select name="limitId" onchange="if(this.value == 1)$('#idArea').show();else $('#idArea').hide();"><option value="0" selected="selected">不限ID</option><option value="1">ID范围</option></select> <span id="idArea" class="hidden"> <input value="0" name="startId" id="startId" size="10" class="" /> → <input value="0" name="endId" id="endId" size="10" class="" /> [<a href="#@" class="helpTip" title="0表示不限制">?</a>]</span></td> </tr> <tr> <td class="textL"><input name="update" type="submit" value="开始更新" type="button" /></td> </tr> </table> </form> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL">更新单页文档</th> </tr> <tr> <td class="textL"><input name="update" value="开始更新" type="button" onclick="window.location.href='{:$smarty.const.BOOT_URL}/html/update/single';" /></td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.datepicker.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function() { $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); $("#startTime").datepicker({ dateFormat: 'yy-mm-dd', maxDate: '+0', changeMonth: true, changeYear: true,onSelect: function(dateText) { this.value += ' 00:00:00' }}); $("#endTime").datepicker({ dateFormat: 'yy-mm-dd' , maxDate: '+0', changeMonth: true, changeYear: true,onSelect: function(dateText) { this.value += ' 23:59:59' } }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Html/index.tpl
Smarty
asf20
6,249
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> #progress{ width:99%; height:22px;border:1px solid #666;margin:6px 0} #progressBar{ width:1%; height:22px; background:url({:$smarty.const.PUBLIC_DIR}/common/image/progressbar.gif);} #info{padding:0px 2px; color:#888; line-height:18px;} #status{padding:5px 2px;} </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th class="textL" id="tip">正在更新...</th> </tr> <tr> <td class="textL"> <div id="progress"><div id="progressBar"></div></div> <div id="info"></div> <div id="status">正在更新...</div> </td> </tr> </table> </div> </div> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/Html/update.tpl
Smarty
asf20
1,457
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .action,a.action:link,a.action:visited,a.action:hover{ font-weight:normal;} a.dir:link,a.dir:visited{ text-decoration:none; font-weight:bold; color:#000;} a.dir:hover{ text-decoration:underline; font-weight:bold; color:#F00;} </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col" class="textL action">{:if $i->param.dir != ''}【<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}?dir={:$i->param.dir|@dirname}">↑上级目录</a>】{:else}【上级目录】{:/if}【/{:$i->param.dir}】</th> </tr> {:foreach item=item from=$i->lists} <tr> {:if $item.type == 'dir'} <td class="textL">【目录】<a class="dir" href="?dir={:$i->param.dir}/{:$item.name}">{:$item.name}</a></td> {:else} <td class="textL">〖文件〗<a href="javascript:openFile('{:$i->param.urlPrefix}/{:$i->param.dir}/{:$item.name}');">{:$item.name}</a></td> {:/if} </tr> {:/foreach} <tr> <td class="lightGreyBg textL">{:$i->pagesCode}</td> </tr> </table> </div> </div> <script language="javascript" type="text/javascript"> function openFile( fileUrl ) { window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; window.top.close() ; window.top.opener.focus(); return false; } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/fckeditor.tpl
Smarty
asf20
2,029
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- th { text-align:right; } td { text-align:left; } .color{ cursor:pointer; background:url({:$smarty.const.PUBLIC_DIR}/common/image/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50%;} --> </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <form> <table width="100%" border="0" cellspacing="1"> <tr> <th width="20%">文件保存路径规则:</th> <td width="80%">{:$smarty.const.PUBLIC_PATH}/upload/<input name="uploadPath" type="text" id="uploadPath" value="{:$i->data.uploadPath}" size="20" class="posted check inputLine" /> [<a href="#@" title="Y表示年,m表示月,d表示日" class="helpTip">?</a>]</td> </tr> <tr> <th width="20%">允许上传的文件类型:</th> <td width="80%"><input name="allowedTypes" type="text" id="allowedTypes" value="{:$i->data.allowedTypes}" size="60" class="posted check" /></td> </tr> <tr> <th width="20%">允许上传的最大尺寸:</th> <td width="80%"><input name="maxSize" type="text" id="maxSize" value="{:$i->data.maxSize}" size="10" class="posted check inputLine" />KB</td> </tr> <tr> <th width="20%">图片最大宽度:</th> <td width="80%"><input name="width" type="text" id="width" value="{:$i->data.width}" size="10" class="posted check inputLine" />px</td> </tr> <tr> <th width="20%">图片最大高度:</th> <td width="80%"><input name="height" type="text" id="height" value="{:$i->data.height}" size="10" class="posted check inputLine" />px</td> </tr> <tr> <th width="20%">缩略图默认宽度:</th> <td width="80%"><input name="thumbWidth" type="text" id="thumbWidth" value="{:$i->data.thumbWidth}" size="10" class="posted check inputLine" />px</td> </tr> <tr> <th width="20%">缩略图默认高度:</th> <td width="80%"><input name="thumbHeight" type="text" id="thumbHeight" value="{:$i->data.thumbHeight}" size="10" class="posted check inputLine" />px</td> </tr> <tr> <th width="20%">缩略图填充颜色:</th> <td width="80%"><input name="thumbPadColor" type="text" id="thumbPadColor" style="color:{:$i->data.thumbPadColor}" onclick="$(this).colorpicker();" value="{:$i->data.thumbPadColor}" size="7" class="posted check color" /></td> </tr> <tr> <th width="20%">缩略图识别标志:</th> <td width="80%"><input name="thumbMarker" type="text" id="thumbMarker" value="{:$i->data.thumbMarker}" size="20" class="posted check" /></td> </tr> <tr> <th width="20%">水印类型:</th> <td width="80%"> <label><input name="wmType" class="noBorder posted" type="radio" value="overlay"{:if $i->data.wmType == 'overlay'} checked="checked"{:/if} />图片</label> <label><input name="wmType" class="noBorder posted" type="radio" value="text"{:if $i->data.wmType == 'text'} checked="checked"{:/if} />文字</label> <label><input name="wmType" class="noBorder posted" type="radio" value="0"{:if $i->data.wmType == '0'} checked="checked"{:/if} />无</label> </td> </tr> <tr> <th width="20%">水印文字:</th> <td width="80%"><input name="wmText" type="text" id="wmText" value="{:$i->data.wmText}" size="40" class="posted check" /> [<a href="#@" title="水印支持的文字以字体文体而定<br />如:上传中文字体文件后即可支持中文" class="helpTip">?</a>]</td> </tr> <tr> <th width="20%">水印字体文件路径:</th> <td width="80%">{:$smarty.const.SYS_PATH}/data/font/<input name="wmFontPath" type="text" id="wmFontPath" value="{:$i->data.wmFontPath}" size="20" class="posted check inputLine" /></td> </tr> <tr> <th width="20%">水印文字颜色:</th> <td width="80%"><input name="wmFontColor" type="text" id="wmFontColor" onclick="$(this).colorpicker();" style="color:{:$i->data.wmFontColor}" value="{:$i->data.wmFontColor}" size="7" class="posted check color" /></td> </tr> <tr> <th width="20%">水印文字阴影颜色:</th> <td width="80%"><input name="wmShadowColor" type="text" id="wmShadowColor" onclick="$(this).colorpicker();" style="color:{:$i->data.wmShadowColor}" value="{:$i->data.wmShadowColor}" size="7" class="posted check color" /></td> </tr> <tr> <th width="20%">水印字体大小:</th> <td width="80%"><input name="wmFontSize" type="text" id="wmFontSize" value="{:$i->data.wmFontSize}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印文字阴影距离:</th> <td width="80%"><input name="wmShadowDistance" type="text" id="wmShadowDistance" value="{:$i->data.wmShadowDistance}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印水平偏移:</th> <td width="80%"><input name="wmHorOffset" type="text" id="wmHorOffset" value="{:$i->data.wmHorOffset}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印垂直偏移:</th> <td width="80%"><input name="wmVrtOffset" type="text" id="wmVrtOffset" value="{:$i->data.wmVrtOffset}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印边距调整:</th> <td width="80%"><input name="wmPadding" type="text" id="wmPadding" value="{:$i->data.wmPadding}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印图片路径:</th> <td width="80%">{:$smarty.const.SYS_PATH}/data/mark/<input name="wmOverlayPath" type="text" id="wmOverlayPath" value="{:$i->data.wmOverlayPath}" size="20" class="posted check inputLine" /></td> </tr> <tr> <th width="20%">水印透明度:</th> <td width="80%"><input name="wmOpacity" type="text" id="wmOpacity" value="{:$i->data.wmOpacity}" size="5" class="posted check" /></td> </tr> <tr> <th width="20%">水印水平位置:</th> <td width="80%"> <label><input name="wmHorAlignment" class="noBorder posted" type="radio" value="L"{:if $i->data.wmHorAlignment == 'L'} checked="checked"{:/if} />左</label> <label><input name="wmHorAlignment" class="noBorder posted" type="radio" value="C"{:if $i->data.wmHorAlignment == 'C'} checked="checked"{:/if} />中</label> <label><input name="wmHorAlignment" class="noBorder posted" type="radio" value="R"{:if $i->data.wmHorAlignment == 'R'} checked="checked"{:/if} />右</label> </td> </tr> <tr> <th width="20%">水印垂直位置:</th> <td width="80%"> <label><input name="wmVrtAlignment" class="noBorder posted" type="radio" value="T"{:if $i->data.wmVrtAlignment == 'T'} checked="checked"{:/if} />上</label> <label><input name="wmVrtAlignment" class="noBorder posted" type="radio" value="M"{:if $i->data.wmVrtAlignment == 'M'} checked="checked"{:/if} />中</label> <label><input name="wmVrtAlignment" class="noBorder posted" type="radio" value="B"{:if $i->data.wmVrtAlignment == 'B'} checked="checked"{:/if} />下</label> </td> </tr> <tr> <th>&nbsp;</th> <td><input type="submit" id="submit" value=" 修 改 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.post.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.colorpicker.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); $("form").post({ sendUrl:'{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/update' }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/setting.tpl
Smarty
asf20
9,951
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>上传文件</title> </head> <script> parent.{:$i->function}('{:$i->fileUrl}'{:if $i->p[3]},'{:$i->p[3]}'{:/if}); parent.hide({:if $i->p[3]}'{:$i->p[3]}'{:/if}); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/uploadSuccess.tpl
Smarty
asf20
452
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <form id="form1" method="post" action="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/update/{:$i->p[1]}?dir={:$i->param.dir}&ext={:$i->param.ext}&edit={:$i->param.edit}&filename={:$i->param.filename}" target="autoFrame"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col" class="textL">编辑:{:$i->param.dir}/{:$i->param.filename}</th> </tr> <tr> <td><textarea name="content" cols="60" rows="25" id="content">{:$i->content|escape:html}</textarea></td> </tr> <tr> <td class="textL lightGreyBg"><input type="submit" value=" 提 交 " /> &nbsp; <input type="reset" onclick="history.go(-1);" value=" 返 回 " /></td> </tr> </table> </form> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function(){ $('form').submit(function(){ postDialog(); }); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/edit.tpl
Smarty
asf20
2,539
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .action,a.action:link,a.action:visited,a.action:hover{ font-weight:normal;} a.dir:link,a.dir:visited{ text-decoration:none; font-weight:bold; color:#000;} a.dir:hover{ text-decoration:underline; font-weight:bold; color:#F00;} </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col"><input name="selAction" id="selAction" title="全选/取消" type="checkbox" value="" onclick="if(this.checked){selAll('sel[]');}else{selNone('sel[]');}" class="noBorder" /></th> <th scope="col" class="textL action">{:if $i->param.dir != ''}【<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/{:$i->p[1]}?edit={:$i->param.edit}&ext={:$i->param.ext}&dir={:$i->param.dir|@dirname}">↑上级目录</a>】{:else}【上级目录】{:/if}【/{:$i->param.dir}】</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists} <tr> {:if $item.type == 'dir'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">【目录】<a class="dir" href="?edit={:$i->param.edit}&ext={:$i->param.ext}&dir={:$i->param.dir}/{:$item.name}">{:$item.name}</a></td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:elseif $item.type == 'image'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗<a href="{:$i->param.urlPrefix}/{:$i->param.dir}/{:$item.name}" onclick="return openFile(this.href);" target="_blank" class="helpTip" title="<img src='{:$i->param.urlPrefix}/{:$i->param.dir}/{:$item.name}' onload='if(this.width > 250)this.width = 250;' />">{:$item.name}</a></td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:elseif $item.type == 'txt'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗<a href="{:$i->param.urlPrefix}/{:$i->param.dir}/{:$item.name}" onclick="return openFile(this.href);" target="_blank">{:$item.name}</a></td> <td> <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/edit/show/attachment?filename={:$item.name}&dir={:$i->param.dir}&ext={:$i->param.ext}&edit={:$i->param.edit}">修改</a> | <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:else} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗<a href="{:$i->param.urlPrefix}/{:$i->param.dir}/{:$item.name}" onclick="return openFile(this.href);" target="_blank">{:$item.name}</a></td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:/if} </tr> {:/foreach} <tr> <td colspan="3" class="lightGreyBg textL"> <a href="#@" onclick="selAll('sel[]');$('#selAction').attr('checked', true);return false;">全选</a> | <a href="#@" onclick="return selAnti('sel[]');">反选</a> | <a href="#@" onclick="return del('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function del(name,id) { var ids=''; if(id == undefined) { $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); ids = ids.substr(0,ids.length-1); } else { ids = id; } if(ids.length==0) { alert('您还没有选中要删除的文件或目录'); return false; } if(confirm('确定删除?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del?files='+ids+'&dir={:$i->param.dir}', '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/{:$i->p[1]}?dir={:$i->param.dir}&ext={:$i->param.ext}&edit={:$i->param.edit}'); } return false; } $(document).ready(function(){ $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); function openFile( fileUrl ) { {:if $i->param.edit} window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; window.top.close() ; window.top.opener.focus(); return false; {:else} return true; {:/if} } </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/attachment.tpl
Smarty
asf20
6,176
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{:$i->title}</title> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <style type="text/css"> .action,a.action:link,a.action:visited,a.action:hover{ font-weight:normal;} a.dir:link,a.dir:visited{ text-decoration:none; font-weight:bold; color:#000;} a.dir:hover{ text-decoration:underline; font-weight:bold; color:#F00;} </style> </head> <body> <div class="wrapper"> <div class="title shadow titleBg"> <table width="100%" border="0" cellspacing="1"> <tr> <td><h1> {:$i->title} </h1></td> </tr> </table> </div> <div class="content shadow"> <table width="100%" border="0" cellspacing="1"> <tr class="titleBg"> <th scope="col"><input name="selAction" id="selAction" title="全选/取消" type="checkbox" value="" onclick="if(this.checked){selAll('sel[]');}else{selNone('sel[]');}" class="noBorder" /></th> <th scope="col" class="textL action">{:if $i->param.dir != ''}【<a href="{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/{:$i->p[1]}?edit={:$i->param.edit}&ext={:$i->param.ext}&dir={:$i->param.dir|@dirname}">↑上级目录</a>】{:else}【上级目录】{:/if}【/{:$i->param.dir}】</th> <th scope="col">操作</th> </tr> {:foreach item=item from=$i->lists} <tr> {:if $item.type == 'dir'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">【目录】<a class="dir" href="?edit={:$i->param.edit}&ext={:$i->param.ext}&dir={:$i->param.dir}/{:$item.name}">{:$item.name}</a></td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:elseif $item.type == 'image'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗{:$item.name}</td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:elseif $item.type == 'txt'} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗{:$item.name}</td> <td> <a href="{:$smarty.const.BOOT_URL}/{:$i->c}/edit/show/template?filename={:$item.name}&dir={:$i->param.dir}&ext={:$i->param.ext}&edit={:$i->param.edit}">修改</a> | <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:else} <td><input name="sel[]" title="Name:{:$item.name}" type="checkbox" value="{:$item.name}" class="noBorder" /></td> <td class="textL">〖文件〗{:$item.name}</td> <td> <a onclick="del('','{:$item.name}'); return false;" href="#@">删除</a> </td> {:/if} </tr> {:/foreach} <tr> <td colspan="3" class="lightGreyBg textL"> <a href="#@" onclick="selAll('sel[]');$('#selAction').attr('checked', true);return false;">全选</a> | <a href="#@" onclick="return selAnti('sel[]');">反选</a> | <a href="#@" onclick="return del('sel[]');">删除</a> | {:$i->pagesCode}</td> </tr> </table> </div> </div> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script> <script language="javascript" type="text/javascript"> function del(name,id) { var ids=''; if(id == undefined) { $("input:checked[name='"+name+"']").each(function(i){ ids+=this.value+','; }); ids = ids.substr(0,ids.length-1); } else { ids = id; } if(ids.length==0) { alert('您还没有选中要删除的文件或目录'); return false; } if(confirm('确定删除?')) { getDialog('{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/del?files='+ids+'&dir={:$i->param.dir}', '{:$smarty.const.BOOT_URL}/{:$i->c}/{:$i->m}/lists/{:$i->p[1]}?dir={:$i->param.dir}&ext={:$i->param.ext}&edit={:$i->param.edit}'); } return false; } $(document).ready(function(){ $(".helpTip").tooltip({cssClass:"tooltip", xOffset:30, opacity:5}); }); </script> </body> </html>
01cms
01cms/branches/1.0/01cms/view/File/template.tpl
Smarty
asf20
5,431
<link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/common.js"></script>
01cms
01cms/branches/1.0/01cms/view/Common/javascript.html
HTML
asf20
824
<link href="{:$smarty.const.PUBLIC_DIR}/common/style/tooltip.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/ui.all.css" rel="stylesheet" type="text/css" /> <link href="{:$smarty.const.PUBLIC_DIR}/common/style/admin.css" rel="stylesheet" type="text/css" /> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.core.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.draggable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.resizable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.dialog.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/ui.sortable.js"></script> <script language="javascript" type="text/javascript" src="{:$smarty.const.PUBLIC_DIR}/common/js/jquery.tooltip.js"></script>
01cms
01cms/branches/1.0/01cms/view/Common/javascript.tpl
Smarty
asf20
1,159
<?php /** * 后台 - 入口文件 * * 入口文件须定义以下常量: * * ROOT_PATH 服务器上的安装路径 * ROOT_DIR 用于访问的安装目录 * BOOT_DIR 用于访问的入口目录 * BOOT_URL 用于访问的入口地址 * PUBLIC_PATH 服务器上的站点公共静态资源路径 * PUBLIC_DIR 用于访问的站点公共静态资源目录 * APP_PATH 定义APP路径 * SYS_PATH 定义01MVC框架路径 * * @package 01CMS * @subpackage www * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ $port = ($_SERVER['SERVER_PORT'] == '80') ? '' : ':' . $_SERVER['SERVER_PORT']; $curUrl = 'http://' . $_SERVER['SERVER_NAME'] . $port . $_SERVER['SCRIPT_NAME']; if(isset($_GET['c_'])) { unset($_GET['c_']); } define('ROOT_PATH', ereg_replace('[\\/]+', '/', realpath('../'))); define('APP_PATH', ereg_replace('[\\/]+', '/', dirname(__FILE__))); define('SYS_PATH', ROOT_PATH . '/01mvc'); define('BOOT_DIR', str_replace('/' . basename($curUrl), '', $curUrl)); define('BOOT_URL', $curUrl); define('ROOT_DIR', substr(BOOT_DIR, 0, strrpos(BOOT_DIR, '/'))); define('PUBLIC_PATH', ROOT_PATH . '/public'); define('PUBLIC_DIR', ROOT_DIR . '/public'); //启动... require SYS_PATH . '/boot.php'; //END
01cms
01cms/branches/1.0/01cms/index.php
PHP
asf20
1,337
<?php /** * HTML生成控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class HtmlController extends Controller { public $title = '更新内容'; public $Db; public $Model; public $all = FALSE; function __construct () { parent::__construct(); $User = model('User'); if (! $User->isLogined()) { redirect('admin/login?url=' . getCurUrl()); } if (! $User->checkAuth()) { exit('您的权限不足'); } if(!defined('staticHtml')) { define('staticHtml',TRUE); } $this->Db = model('Db'); $this->Model = model('Html'); } function index () { $this->category = model('Category')->getChildren (0, 1); $this->Load->view('smarty'); } function update ($action = '', $id = 0) { $this->Load->view('smarty'); ini_set('max_execution_time', 0); ob_implicit_flush(1); if ($action == 'homepage') { $this->homepage(); } else if ($action == 'category') { $this->category($id); } else if ($action == 'archive') { $this->archive(); } else if ($action == 'all') { $this->all = TRUE; $this->homepage(); $this->category($id); $this->archive(); $time = $this->getTime(); $this->output('tip', '一键更新', 'html'); $this->output('status', "更新完毕,共用去{$time}分钟。【<a href='" . BOOT_URL . "/html/index'>返回</a>】", 'html'); } } function homepage () { $this->output('tip', '更新首页', 'html'); $this->progress(20); $this->Model->indexHtml('write'); $this->progress(100); if ($this->all) { $this->output('info', "首页更新完毕。"); $this->output('status', "开始更新栏目...", 'html'); } else { $this->output('status', "成功更新首页【<a href='" . BOOT_URL . "/html/index'>返回</a>】", 'html'); } } function category ($id = 0) { $this->output('tip', '更新栏目', 'html'); $category = model('Category')->getData(); if ($id > 0) { $this->progress(20); $this->Model->writeCategoryHtml($id); $this->progress(100); $this->output('status', "成功更新栏目:{$category[$id]['name']}【<a href='" . BOOT_URL . "/html/index'>返回</a>】", 'html'); } else { $count = count($category['ids']); $i = 1; foreach ($category['ids'] as $id) { $this->Model->writeCategoryHtml($id); $percent = ceil($i / $count * 100); $time = $this->getTime(); $this->progress($percent); $this->output('status', "正在更新栏目:已完成{$percent}% (共有{$count}个栏目,已更新{$i}个,已用去{$time}分钟)", 'html'); //sleep(1); $i ++; } if ($this->all) { $this->output('info', "<br />栏目更新完毕(共更新了{$count}个栏目)。"); $this->output('status', "开始更新文档...", 'html'); } else { $this->output('status', "全部栏目更新完毕,共更新了{$count}个栏目,用去{$time}分钟。【<a href='" . BOOT_URL . "/html/index'>返回</a>】", 'html'); } } } function archive () { $data = $this->Load->query('limitTime,startTime,endTime,limitId,startId,endId'); $where = 'where pass = 1 '; if ($data['limitTime'] > 0) { $startTime = strtotime($data['startTime']); $endTime = strtotime($data['endTime']); if ($startTime > 0) { $where .= ' and addTime >' . $startTime; } if ($endTime > 0) { $where .= ' and addTime <' . $endTime; } } if ($data['limitId'] > 0) { if ($data['startId'] > 0) { $where .= ' and id >' . $data['startId']; } if ($data['endId'] > 0) { $where .= ' and id <' . $data['endId']; } } $count = $this->Db->getRow("select count(*) as num from @@__archive_archive {$where}"); $count = $count->num; $this->output('tip', '更新文档', 'html'); $this->Db->query("select id from @@__archive_archive {$where}", 'updateArchive'); $i = 1; while ($row = $this->Db->getNextRow('updateArchive')) { $this->Model->writeArchiveHtml($row->id); $percent = ceil($i / $count * 100); $time = $this->getTime(); $this->progress($percent); $this->output('status', "正在更新文档:已完成{$percent}% (共有{$count}篇文档,已更新{$i}篇,已用去{$time}分钟)", 'html'); //sleep(1); $i ++; } if ($this->all) { $this->output('info', "<br />文档更新完毕(共更新了{$count}篇文档)。"); $this->output('status', "文档更新完毕", 'html'); } else { $this->output('status', "更新完毕,共更新了{$count}篇文档,用去{$time}分钟 。【<a href='" . BOOT_URL . "/html/index'>返回</a>】", 'html'); } //sleep(1); } private function getTime () { $time = (time() - TIME) / 60; $time = round($time, 2); return $time; } private function progress ($percent) { if ($percent == 100) { echo "<script>$('#progressBar').css({'width':'100%','background':'url(" . PUBLIC_DIR . "/common/image/progressbarstatic.gif)'});</script>"; } else { echo "<script>$('#progressBar').css({'width':'{$percent}%'});</script>"; } @ob_flush(); @flush(); } private function output ($id, $content, $type = 'append') { echo '<script>$("#' . $id . '").' . $type . '("' . $content . '");</script>'; @ob_flush(); @flush(); } }
01cms
01cms/branches/1.0/01cms/controller/HtmlController.php
PHP
asf20
7,132
<?php /** * 通用控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class CommonController extends Controller { function __construct () { parent::__construct(); } /** * 验证码 * * @access public */ function validateCode () { Session::validateCode(); } }
01cms
01cms/branches/1.0/01cms/controller/CommonController.php
PHP
asf20
464
<?php /** * 默认控制器 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class IndexController extends Controller { function index () { redirect('admin'); } } //END
01cms
01cms/branches/1.0/01cms/controller/IndexController.php
PHP
asf20
309
<?php /** * 后台系统管理 - 控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class AdminController extends Controller { public $title = '后台系统管理'; public $User; function __construct () { parent::__construct(); if ($this->m != 'login') { $this->User = model('User'); if (! $this->User->isLogined()) { redirect('admin/login'); } } if (! in_array($this->m, array('login', 'logout', 'index', 'top', 'menu', 'body'))) { if (! $this->User->checkAuth()) { showError('您的权限不足'); } } } function index () { $this->Load->view('smarty'); } function login ($action = '') { if ($action == 'check') { $data = $this->Load->post('validateCode|验证码不能为空,username|用户名不能为空,password|密码不能为空'); if ($error = $this->Load->getError()) { response($error); } if (! Session::checkCode('validateCode', $data['validateCode'])) { response('验证码不正确'); } if (model('User')->login($data)) { response('登陆成功', TRUE); } else { response(model('User')->getError()); } } else { $url = $this->Load->get('url', 'one'); $this->url = empty($url) ? BOOT_URL . '/admin/index' : $url; $this->Load->view('smarty'); } } function logout () { $this->User->logout(); redirect('admin/login'); } function help () { echo '建设中...'; } function menu ($action = '', $id = 0) { if (empty($action)) { $this->menu = $this->User->getMenu(); $this->Load->view('smarty', 'list'); } else if ($action == 'reload') { $this->Load->view('smarty', 'reload'); } else if ($action == 'order') { header('Cache-Control:no-cache, must-revalidate'); $this->table = '@@__admin_menu'; model()->ordering($id); } else { $this->title .= ' => 菜单管理'; if ($action == 'update' || $action == 'insert') { $this->data = $this->Load->post('title|模块名称不能为空,items|菜单内容为能为空,hidden'); if ($error = $this->Load->getError()) { response($error); } } $this->id = $id; $this->order = 'ordering asc'; $this->action($action); } } function top () { $this->Load->view('smarty'); } function body () { $this->channel = $this->Load->model("Channel")->getData(); $this->Load->view('smarty'); } function user ($action = 0, $id = '') { $this->title .= ' => 用户管理'; switch ($action) { case 'lists': { $groups = $this->User->getGroups(); foreach ($groups as $group) { $groupsArr[$group->id] = $group->name; } $this->groups = $groupsArr; break; } case 'add': { $this->groups = $this->User->getGroups(); break; } case 'insert': { $data = $this->Load->post('username|用户名不能为空,password|密码不能为空,groupId|请选择用户组'); if ($error = $this->Load->getError()) { response($error); } $this->User->addUser($data); if ($error = $this->User->getError()) { response($error); } else { response('添加成功', TRUE); } break; } case 'mod': { $this->groups = $this->User->getGroups(); break; } case 'update': { $data = $this->Load->post("username|用户名不能为空,groupId|请选择用户组|password"); if ($error = $this->Load->getError()) { response($error); } $data['id'] = $id; $this->User->modUser($data); if ($error = $this->User->getError()) { response($error); } else { response('修改成功', TRUE); } $this->data = $data; break; } //No default } $this->id = $id; $this->action($action); } function group ($action = 0, $id = '') { $this->title .= ' => 组别管理'; $id = ereg_replace('[^0-9,]', '', $id); if ($action == 'update' || $action == 'insert') { $name = $this->Load->post('name|组别名称不能为空'); if ($error = $this->Load->getError()) { response($error); } $auth = $this->Load->post('auth|您还没有选择权限'); if ($error = $this->Load->getError()) { response($error); } $this->data['name'] = $name['name']; $this->data['auth'] = implode(',,', $auth['auth']); } switch ($action) { case 'add': { $this->auth = $this->User->getAuths(); break; } case 'insert': { $this->User->addGroup($this->data); if ($error = $this->User->getError()) { response($error); } else { response('添加成功', TRUE); } break; } case 'mod': { $this->auth = $this->User->getAuths(); $this->group = $this->User->getGroup("id = {$id}"); $groupAuth = explode(',,', $this->group->auth); $count = count($this->auth); for ($i = 0; $i < $count; $i ++) { if (in_array($this->auth[$i]->auth, $groupAuth)) { $this->auth[$i]->checked = 'checked="checked"'; } else { $this->auth[$i]->checked = ''; } } break; } case 'update': { $this->data['id'] = $id; $this->User->modGroup($this->data); if ($error = $this->User->getError()) { response($error); } else { response('修改成功', TRUE); } break; } //No default } $this->id = $id; $this->action($action); } function auth ($action = '', $id = 0) { $this->title .= ' => 权限管理'; if ($action == 'update' || $action == 'insert') { $this->data = $this->Load->post('ordering,line,name|名称不能为空,auth|权限内容不能为空'); if ($error = $this->Load->getError()) { response($error); } } $this->id = $id; $this->order = 'ordering asc'; $this->action($action); } }
01cms
01cms/branches/1.0/01cms/controller/AdminController.php
PHP
asf20
9,136
<?php /** * 文件上传控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class FileController extends Controller { public $title = '文件管理'; function __construct () { parent::__construct(); if (! model('User')->isLogined()) { redirect('admin/login'); } if (! model('User')->checkAuth()) { exit('您的权限不足'); } } /** * 获取相关参数 * * @param string $type * @return array * @access private */ private function getParameters ($type) { if ($type == 'attachment') { $this->title = '附件管理'; $param['pathPrefix'] = PUBLIC_PATH . '/upload'; $param['urlPrefix'] = PUBLIC_DIR . '/upload'; } else if ($type == 'template') { $this->title = '模板管理'; $param['pathPrefix'] = ROOT_PATH . '/template/'; } else { throw new Exception('参数错误'); } $var = $this->Load->query('url,ext,edit,filename,dir,files'); if (! empty($var['dir'])) { $var['dir'] = trim($var['dir'], "\\/."); } $param['path'] = $param['pathPrefix'] . '/' . $var['dir']; if (! is_dir($param['path'])) { trigger_error('路径不存在或无权操作:' . $param['path']); } if (empty($var)) { $var = array('url'=>'', 'ext'=>'', 'edit'=>'', 'dir'=>''); } return array_merge($var, $param); } function edit ($action = '', $type = '') { $this->param = $param = $this->getParameters($type); $file = $param['path'] . '/' . $param['filename']; if ($action == 'update') { $content = $this->Load->post('content', 'one'); file_put_contents($file, stripslashes($content)); responseToParent('保存成功', BOOT_URL . "/file/{$type}/lists?dir={$param['dir']}&ext={$param['ext']}&edit={$param['edit']}"); } else { $this->content = file_get_contents($file); $this->Load->view('Smarty'); } } function template ($action = '', $start = 0) { $this->param = $param = $this->getParameters('template'); if ($action == 'del') { $this->delFiles($param['path'], $param['files']); response('删除成功', TRUE); } else if ($action == 'lists') { $this->lists = $this->getFileLists($param['path'], $param['ext'], $start); $this->Load->view('Smarty'); } } function attachment ($action = '', $start = 0) { $this->param = $param = $this->getParameters('attachment'); if ($action == 'del') { $this->delFiles($param['path'], $param['files']); response('删除成功', TRUE); } else if ($action == 'lists') { $this->lists = $this->getFileLists($param['path'], $param['ext'], $start); $this->Load->view('Smarty'); } } function fckeditor ($start = 0) { $this->param = $param = $this->getParameters('attachment'); $this->lists = $this->getFileLists($param['path'], 'jpg,gif,jpeg,png,JPG,GIF,JPEG,PNG', $start); $this->Load->view('Smarty'); } private function getFileLists ($path, $extName = '', $start = 0, $pageSize = 20) { if ($extName != '') { $dirs = glob($path . '/[0-9A-Za-z_-]*', GLOB_ONLYDIR); $files = glob($path . '/[0-9A-Za-z_-]*{' . $extName . '}', GLOB_BRACE); $files = array_merge($dirs, $files); } else { $files = glob($path . '/[0-9A-Za-z_-]*' . $extName, GLOB_BRACE); } $count = count($files); if ($start > $count) { $start = $count; } $types = array('gif'=>'image', 'jpg'=>'image', 'jpeg'=>'image', 'png'=>'image', 'jpe'=>'image', 'tpl'=>'txt', 'txt'=>'txt', 'html'=>'txt', 'htm'=>'txt', 'php'=>'txt'); $listDir = array(); $listFile = array(); for ($i = $start; $i < ($pageSize + $start) && $i < $count; $i ++) { $basename = basename($files[$i]); $isDir = is_dir($files[$i]) ? 1 : 0; if ($isDir) { $listDir[] = array('name'=>$basename, 'type'=>'dir'); } else { $fileSize = filesize($files[$i]); $fileExt = strtolower(substr($basename, strrpos($basename, '.') + 1)); $fileType = isset($types[$fileExt]) ? $types[$fileExt] : ''; $listFile[] = array('name'=>$basename, 'type'=>$fileType, 'isNew'=>0, 'fileSize'=>$fileSize); } } lib('Pagination')->createLinks(array('pageParam'=>2, 'totalRows'=>$count, 'pageSize'=>$pageSize)); return array_merge($listDir, $listFile); } private function delFiles ($path, $files) { $files = explode(',', $files); foreach ($files as $file) { $fileName = $path . '/' . $file; if (is_dir($fileName)) { clearDirs($fileName); @rmdir($fileName); } else { @unlink($fileName); } } } function setting ($action = '') { $this->title .= ' => 上传设置'; if ($action == 'lists') { $this->data = data('uploadSetting'); $this->Load->view('Smarty'); } else if ($action == 'update') { $str = 'uploadPath|文件保存路径规则不能为空,allowedTypes,maxSize,thumbWidth,thumbHeight,thumbPadColor,thumbMarker,'; $str .= 'width,height,wmText,wmType,wmFontSize,wmFontPath,wmFontColor,wmShadowColor,wmShadowDistance,wmShadowDistance,'; $str .= 'wmVrtAlignment,wmHorAlignment,wmOpacity,wmPadding,wmOverlayPath,wmHorOffset,wmVrtOffset'; $data = $this->Load->post($str); if ($error = $this->Load->getError()) { response($error); } $sta = lib('Write')->phpArray(SYS_PATH . '/data/uploadSetting.php', $data); $message = ($sta > 0) ? '修改成功(' . $sta / 1000 . 'K)' : '修改失败'; response($message); } } function upload ($field = 'Filedata') { $setting = data('uploadSetting'); $config = array(); $config['uploadPath'] = PUBLIC_PATH . '/upload/' . date(trim($setting['uploadPath']), TIME) . '/'; $config['allowedTypes'] = $setting['allowedTypes']; $config['maxSize'] = $setting['maxSize']; makeDirs($config['uploadPath']); $upload = lib('Upload'); $upload->initialize($config); $upload->doUpload($field); $data = $upload->data(); if ($upload->errorMsg != '') { echo "<div><div id='file'></div><div id='error'>{$upload->errorMsg}</div></div>"; exit(); } $fileUrl = str_replace(ROOT_PATH, ROOT_DIR, $data['fullPath']); if ($data['isImage']) { $image = lib('ImageLib'); $config = array(); $config['sourceImage'] = $data['fullPath']; $config['createThumb'] = ($setting['createThumb'] == '1') ? TRUE : FALSE; $config['thumbWidth'] = $setting['thumbWidth']; $config['thumbHeight'] = $setting['thumbHeight']; $config['thumbPadColor'] = $setting['thumbPadColor']; $config['thumbMarker'] = $setting['thumbMarker']; $config['maintainRatio'] = TRUE; $config['width'] = $setting['width']; $config['height'] = $setting['height']; $config['wmType'] = $setting['wmType']; $config['wmText'] = $setting['wmText']; $config['wmFontSize'] = $setting['wmFontSize']; $config['wmFontPath'] = SYS_PATH . '/data/font/' . $setting['wmFontPath']; $config['wmFontColor'] = $setting['wmFontColor']; $config['wmShadowColor'] = $setting['wmShadowColor']; $config['wmShadowDistance'] = $setting['wmShadowDistance']; $config['wmVrtAlignment'] = $setting['wmVrtAlignment']; $config['wmHorAlignment'] = $setting['wmHorAlignment']; $config['wmVrtOffset'] = $setting['wmVrtOffset']; $config['wmHorOffset'] = $setting['wmHorOffset']; $config['wmOpacity'] = $setting['wmOpacity']; $config['wmPadding'] = $setting['wmPadding']; $config['wmOverlayPath'] = SYS_PATH . '/data/mark/' . $setting['wmOverlayPath']; $image->initialize($config); $image->thumb(); $image->resize(); if ($setting['wmType'] != '0') { $image->watermark(); } if ($image->errorMsg != '') { echo "<div><div id='file'></div><div id='error'>{$image->errorMsg}</div></div>"; exit(); } echo "<div><div id='file'>{$fileUrl}</div><div id='thumb'>" . getThumb($fileUrl) . "</div><div id='error'></div></div>"; exit(); } else { echo "<div><div id='file'>{$fileUrl}</div><div id='thumb'>" . getThumb($fileUrl) . "</div><div id='error'></div></div>"; exit(); } } }
01cms
01cms/branches/1.0/01cms/controller/FileController.php
PHP
asf20
10,481
<?php /** * 文档系统 - 控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class ArchiveController extends Controller { public $title = '文档系统'; public $Db; function __construct () { parent::__construct(); if (! model('User')->isLogined()) { redirect('admin/login?url=' . getCurUrl()); } if (! model('User')->checkAuth()) { exit('您的权限不足'); } $this->Db = model('Db'); } function channel ($action = 0, $id = '', $table = '', $select = 0) { $this->title = $this->title . ' => 模型管理'; if ($action == 'insert' || $action == 'update') { $this->data = $this->Load->post('name|模型名称不能空,tableId|表后缀不能为空'); if ($error = $this->Load->getError()) { response($error); } if ($action == 'insert') { $this->Db->query("CREATE TABLE `@@__archive_channel_{$this->data['tableId']}` (`id` int(11) NOT NULL AUTO_INCREMENT,`archiveId` int(11) NOT NULL,`categoryId` int(11) NOT NULL, PRIMARY KEY (`id`))ENGINE=MyISAM;"); } else if ($action == 'update') { $table = $this->Load->post('tableId,oldTableId'); if ($table['tableId'] != $table['oldTableId']) { $this->Db->query("RENAME TABLE `@@__archive_channel_{$table['oldTableId']}` TO `@@__archive_channel_{$table['tableId']}` ;"); } } } else if ($action == 'del') { model('Channel', $id)->delete(); } else if ($action == 'lists' && $select == '1') { $this->templateSuffix = 'select'; } else if ($action == 'lists' && $id == - 1) { model('Channel', $id)->writeChannel(); } $this->id = $id; $this->action($action); } function field ($action = 0, $id = '', $channelId = '', $field = '') { $Channel = model('Channel', $channelId); $this->title = $this->title . ' => 模型管理 => ' . $Channel->name . ' => 字段管理'; $this->where = 'channelId=' . $channelId; if ($action == 'insert' || $action == 'update') { $this->data = $this->Load->post('ordering,name,field|字段名不能为空,type|类型不能为空,code,emptyTip'); if ($error = $this->Load->getError()) { response($error); } $this->data['channelId'] = $channelId; if ($action == 'insert') { $this->Db->query("ALTER TABLE `@@__archive_channel_{$Channel->tableId}` ADD `{$this->data['field']}` {$this->data['type']}"); } else if ($action == 'update') { $oldField = $this->Load->post('oldField', 'one'); if ($oldField != $this->data['field']) { $this->Db->query("ALTER TABLE `@@__archive_channel_{$Channel->tableId}` CHANGE `{$oldField}` `{$this->data['field']}` {$this->data['type']}"); } } } else if ($action == 'del') { $this->Db->query("ALTER TABLE `@@__archive_channel_{$Channel->tableId}` DROP `{$field}`"); } else if ($action == 'lists') { if ($id == - 1) { $Channel->updateFiledList(); } $this->order = 'channelId asc, ordering asc'; } $this->id = $id; $this->action($action); } function category ($action = 0, $id = '') { $this->title = $this->title . ' => 栏目管理'; if ($action != 'ordering') { $Cagetory = model('Category', $id); } if ($action == 'lists') { $this->lists = $Cagetory->getChildren(0, 1); $channels = model('Channel')->getData(); $count = count($this->lists); for ($i = 0; $i < $count; $i ++) { if ($this->lists[$i]->type == 1) { $this->lists[$i]->channelName = $channels["{$this->lists[$i]->channelId}"]['name']; } } if ($id == - 1) { $Cagetory->writeCategory(); } } else if ($action == 'add' || $action == 'mod') { $this->categories = $Cagetory->getChildren(0, 1); $this->channels = model('Channel')->getData(); } else if ($action == 'insert' || $action == 'update') { $type = $this->Load->post('type', 'one'); if ($type == 1) { $this->data = $this->Load->post('parentId,name|栏目名称不能为空,alias,channelId|您还没有选择模型,isHidden,desc,keywords,type,categoryTemplateName|栏目模板不能为空,archiveTemplateName|文档模板不能为空,pageSize|列表大小不能为空,archiveUrl|文档URL不能为空,link,visit'); } else if ($type == 2) { $this->data = $this->Load->post('parentId,name|栏目名称不能为空,alias,isHidden,desc,keywords,type,categoryTemplateName|栏目模板不能为空,pageSize,visit'); } else { $this->data = $this->Load->post('parentId,name|栏目名称不能为空,isHidden,desc,keywords,type,link|链接地址不能为空'); } if ($error = $this->Load->getError()) { response($error); } //处理别名 if ($type != 0) { $pinyin = $this->Load->post('pinyin', 'one'); switch ($pinyin) { case 1: { $this->data['alias'] = String::pinyin($this->data['name'], 0); break; } case 2: { $this->data['alias'] = String::pinyin($this->data['name'], 1); break; } default: { $this->data['alias'] = empty($this->data['alias']) ? String::pinyin($this->data['name']) : $this->data['alias']; } } } } else if ($action == 'del') { $Cagetory->delete(); } $this->id = $id; $this->action($action); } function archive ($action = 0, $id = 0, $categoryId = 0, $channelId = 0, $templateSuffix = '') { $this->uploadSetting = data('uploadSetting'); $this->curUrl = getCurUrl (); if ($action == 'insert' || $action == 'update') { $data = $this->Load->post('title|标题不能为空,ordering,flag,viceTitle,color,redirectUrl,categoryId|您还没有选择栏目,source,author,pass,keywords,desc,thumb,listed,visit,pubTime,fileName,templateName'); if ($error = $this->Load->getError()) { responseToParent($error); } $data['flag'] = empty($data['flag']) ? '' : implode(',', $_POST['flag']); $data['addTime'] = TIME; $data['pass'] = ($action == 'insert') ? $this->Load->var['pass'] : $data['pass']; $data['pubTime'] = strtotime($data['pubTime']); $data['ordering'] = $data['pubTime'] + $data['ordering'] * 86400; $Category = model('Category', $data['categoryId']); $Channel = model('Channel', $Category->channelId); $addData = $this->Load->post($Channel->fieldList); if ($error = $this->Load->getError()) { responseToParent($error); } if (isset($addData['content']) && empty($data['desc'])) { $data['desc'] = cnSubstr(strip_tags($addData['content']), 0, 100); } } switch ($action) { case 'lists': { $where = '1'; $queryVars = $this->Load->query('id,title,pass'); if ($queryVars) { $this->keyWord = slashQuotes($queryVars,'strip'); $where = empty($queryVars['id']) ? $where : $where . " AND id='{$queryVars['id']}'"; $where = empty($queryVars['title']) ? $where : $where . " AND title like '%{$queryVars['title']}%'"; $where = (isset($queryVars['pass']) && $queryVars['pass'] != '') ? $where . " AND pass='{$queryVars['pass']}'" : $where; } if ($categoryId > 0) { $Category = model('Category', $categoryId); $Channel = model('Channel', $Category->channelId); $sonId = model('Category', $categoryId)->allSonIds; if (empty($sonId)) { $where .= " AND categoryId = {$categoryId}"; } else { $where .= " AND categoryId in ({$categoryId},{$sonId})"; } } else if ($channelId > 0) { $Channel = model('Channel', $channelId); $where .= " AND categoryId in ({$Channel->categoryIds})"; } $this->where = $where; $this->categoryId = $categoryId; $this->channelId = $channelId; $this->order = 'ordering desc'; $this->Db->pageParam = 5; $lists = $this->Db->lists(); $count = count($lists); for ($i = 0; $i < $count; $i ++) { $lists[$i]->title = htmlspecialchars($lists[$i]->title); $flag = explode(',', $lists[$i]->flag); if (in_array('p', $flag)) { $lists[$i]->title .= '[图]'; } $lists[$i]->categoryName = model('Category', $lists[$i]->categoryId)->name; $weight = in_array('b', $flag) ? 'font-weight:bold;' : ''; $color = empty($lists[$i]->color) ? '' : "color:{$lists[$i]->color};"; $style = $color . $weight; if (! empty($style)) { $lists[$i]->title = '<span style="' . $style . '">' . $lists[$i]->title . '</span>'; } $lists[$i]->link = in_array('j', $flag) ? $lists[$i]->redirectUrl : BOOT_URL . '/' . $lists[$i]->fileName; } $this->lists = $lists; $templateSuffix = empty($templateSuffix) ? '' : $templateSuffix; $this->Load->view('smarty', $templateSuffix); break; } case 'add': { if (empty($channelId) && empty($categoryId)) { redirect('archive/channel/lists/0/0/1'); } else { if ($categoryId > 0) { $Category = model('Category', $categoryId); $channelId = $Category->channelId; //如果是栏目封面,转向频道选择页面 if (empty($channelId)) { redirect('archive/channel/lists/0/0/1'); } } $Channel = model('Channel', $channelId); $this->addFields = $Channel->getAddFields($channelId); $this->category = model('Category', $categoryId)->getChildren(0, 1, 1); $this->categoryId = $categoryId; $this->channelId = $channelId; $tableId = ucfirst($Channel->tableId); if (file_exists(APP_PATH . '/view/' . $this->c . '/' . $this->m . 'Add' . $tableId . '.tpl')) { $this->Load->view('smarty', 'add' . $tableId); } else { $this->Load->view('smarty', 'add'); } } break; } case 'insert': { model('Archive')->insertArchive($data, $addData, $Channel->tableId); responseToParent('添加成功', BOOT_URL . '/archive/archive/lists/0/' . $data['categoryId'], 1); break; } case 'mod': { $Archive = model('Archive', $id); $Category = model('Category', $Archive->categoryId); $Channel = model('Channel', $Category->channelId); $this->data = $Archive->data; $this->addData = $Channel->getAddData($id, - 1); $this->addFields = $Channel->getAddFields(); $this->category = $Category->getChildren(0, 1, 1); $this->categoryId = $this->data->categoryId; $this->channelId = $Channel->id; $tableId = ucfirst($Channel->tableId); if (file_exists(APP_PATH . '/view/' . $this->c . '/' . $this->m . 'Mod' . $tableId . '.tpl')) { $this->Load->view('smarty', 'mod' . $tableId); } else { $this->Load->view('smarty', 'mod'); } break; } case 'update': { model('Archive')->updateArchive($data, $addData, $Channel->tableId, $id); responseToParent('修改成功', BOOT_URL . '/archive/archive/lists/0/' . $data['categoryId'] . '/' . $channelId); break; } case 'del': { model('Archive')->delArchive($id); $this->curUrl = getCurUrl(); response('删除成功', TRUE); break; } } } function setPass ($id, $status) { $sta = model('Db')->update(array('pass'=>$status), "id in ({$id})", '@@__archive_archive'); response('设置成功', $sta, "setPass({$id},{$status});"); } }
01cms
01cms/branches/1.0/01cms/controller/ArchiveController.php
PHP
asf20
16,373
<?php /** * 系统设置控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class SettingController extends Controller { public $title = '全局设置'; function __construct () { parent::__construct(); $User = model('User'); if (! $User->isLogined()) { redirect('admin/login?url=' . getCurUrl()); } if (! $User->checkAuth()) { exit('您的权限不足'); } } function vars ($action = '', $id = 0) { $this->title .= ' => 系统变量'; if ($action == 'lists' && $id > 0) { $rows = model('Db')->getRows('select `name`, `value` from `@@__setting_vars`'); $setting = array(); foreach ($rows as $row) { $key = $row->name; $setting[$key] = $row->value; } lib('Write')->phpArray(SYS_PATH . '/config/var.php', $setting); } if ($action == 'update' || $action == 'insert') { $this->data = $this->Load->post('info,name|变量名不能为空,value|变量值不能为空,type'); if ($error = $this->Load->getError()) { response($error); } } $this->id = $id; $this->where = 'sort = 0'; $this->action($action); } function ad ($action = '') { $this->title .= ' => 广告管理'; if ($action == 'lists') { $this->data = data('adSetting'); $this->Load->view('Smarty'); } else if ($action == 'update') { $str = 'uploadPath|文件保存路径规则不能为空,allowedTypes,maxSize,thumbWidth,thumbHeight,thumbPadColor,thumbMarker,'; $str .= 'width,height,wmText,wmType,wmFontSize,wmFontPath,wmFontColor,wmShadowColor,wmShadowDistance,wmShadowDistance,'; $str .= 'wmVrtAlignment,wmHorAlignment,wmOpacity,wmPadding,wmOverlayPath,wmHorOffset,wmVrtOffset'; $data = $this->Load->post($str); if ($error = $this->Load->getError()) { response($error); } $sta = lib('Write')->phpArray(SYS_PATH . '/data/adSetting.php', $data); $message = ($sta > 0) ? '修改成功(' . $sta / 1000 . 'K)' : '修改失败'; response($message); } } function link ($action = '') { $this->title .= ' => 友情链接'; if ($action == 'lists') { $this->data = data('linkSetting'); $this->Load->view('Smarty'); } else if ($action == 'update') { $str = 'uploadPath|文件保存路径规则不能为空,allowedTypes,maxSize,thumbWidth,thumbHeight,thumbPadColor,thumbMarker,'; $str .= 'width,height,wmText,wmType,wmFontSize,wmFontPath,wmFontColor,wmShadowColor,wmShadowDistance,wmShadowDistance,'; $str .= 'wmVrtAlignment,wmHorAlignment,wmOpacity,wmPadding,wmOverlayPath,wmHorOffset,wmVrtOffset'; $data = $this->Load->post($str); if ($error = $this->Load->getError()) { response($error); } $sta = lib('Write')->phpArray(SYS_PATH . '/data/linkSetting.php', $data); $message = ($sta > 0) ? '修改成功(' . $sta / 1000 . 'K)' : '修改失败'; response($message); } } } /* End of file /01CMS/application/controller/SettingController.php */
01cms
01cms/branches/1.0/01cms/controller/SettingController.php
PHP
asf20
4,023
<?php /** * 数据库管理控制器类 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class DatabaseController extends Controller { public $title = '数据库管理'; private $outputNum = 0; function __construct () { parent::__construct(); if (! model('User')->isLogined()) { redirect('admin/login'); } if (! model('User')->checkAuth()) { exit('您的权限不足'); } } function backup ($action = '', $name = '') { $Model = model('Db'); if ($action == "showCreate") { if ($name != '') { $Model->query("SHOW CREATE TABLE " . $this->Load->config['mysql']['database'] . "." . $name); $data = $Model->getNextRow(0, 'array', MYSQL_NUM); response('<pre>' . $data[1] . '</pre>'); } } else if ($action == "optimize") { $status = $Model->query("OPTIMIZE TABLE `$name` "); response('优化成功:' . $name, '优化失败:' . $Model->getError(), $status); } else if ($action == "repair") { $status = $Model->query("REPAIR TABLE `$name` "); response('修复成功:' . $name, '修复失败:' . $Model->getError(), $status); } else { $this->title .= ' => 数据备份'; $tableArray = $this->Load->post('selected'); $rows = $Model->getRows('show tables', 0, 'array', MYSQL_NUM); $countRows = count($rows); for ($i = 0; $i < $countRows; $i ++) { $count = $Model->getRow("select count(*) as count from {$rows[$i][0]}"); if (empty($tableArray['selected'])) { $checked = ereg("^{$this->Load->config['mysql']['prefix']}", $rows[$i][0]) ? 'checked="checked"' : ''; } else { $checked = in_array($rows[$i][0], $tableArray['selected']) ? 'checked="checked"' : ''; } $left = array('name'=>$rows[$i][0], 'count'=>$count->count, 'checked'=>$checked); $i ++; if (isset($rows[$i][0])) { $count = $Model->getRow("select count(*) as count from {$rows[$i][0]}"); if (empty($tableArray['selected'])) { $checked = ereg("^{$this->Load->config['mysql']['prefix']}", $rows[$i][0]) ? 'checked="checked"' : ''; } else { $checked = in_array($rows[$i][0], $tableArray['selected']) ? 'checked="checked"' : ''; } $right = array('name'=>$rows[$i][0], 'count'=>$count->count, 'checked'=>$checked); } else { $right = array('name'=>''); } $tables[] = array('left'=>$left, 'right'=>$right); } $this->tables = $tables; $this->Load->view('smarty'); if ($action == "backup" && ! empty($tableArray['selected'])) { $this->output('getDialog("","top");', FALSE); ini_set('max_execution_time', 0); ob_implicit_flush(1); $backupDir = APP_PATH . '/data/backup'; clearDirs($backupDir); $this->output('备份目录:' . $backupDir); $backupFile = $backupDir . "/tables_struct_" . substr(md5(time() . mt_rand(1000, 5000)), 0, 16) . ".sql"; $fp = fopen($backupFile, "w"); foreach ($tableArray['selected'] as $table) { fwrite($fp, "DROP TABLE IF EXISTS `$table`;\r\n\r\n"); $Model->query("SHOW CREATE TABLE " . $this->Load->config['mysql']['database'] . "." . $table, 0, 'array', MYSQL_BOTH); $row = $Model->getNextRow(0, 'array', MYSQL_NUM); $tableStruct = eregi_replace("AUTO_INCREMENT=([0-9]{1,})[ \r\n\t]{1,}", "", $row[1]); fwrite($fp, '' . $tableStruct . ";\r\n\r\n"); } fclose($fp); $this->output('成功备份:数据库' . $this->Load->config['mysql']['database'] . '的表结构'); foreach ($tableArray['selected'] as $table) { $fields = $backupString = ''; $intable = "INSERT INTO `{$table}` VALUES("; $fieldsResource = mysql_list_fields($this->Load->config['mysql']['database'], $table, $Model->linkId); $j = 0; while ($fieldObject = mysql_fetch_field($fieldsResource)) { $fields[$j] = trim($fieldObject->name); $j ++; } $fieldsD = $j - 1; $fileCount = 0; $Model->query("Select * From `{$table}` "); while ($backupData = $Model->getNextRow(0, 'array')) { $line = $intable; for ($j = 0; $j <= $fieldsD; $j ++) { if ($j < $fieldsD) { $line .= "'" . $this->replaceLine(addslashes($backupData[$fields[$j]])) . "',"; } else { $line .= "'" . $this->replaceLine(addslashes($backupData[$fields[$j]])) . "');\r\n"; } } $backupString .= $line; if (strlen($backupString) > 2097152) { $backupFile = "{$backupDir}/{$table}_{$fileCount}_" . substr(md5(time() . mt_rand(1000, 5000)), 0, 16) . ".sql"; $fp = fopen($backupFile, "w"); fwrite($fp, $backupString); fclose($fp); $fileCount ++; $backupString = ''; } } if ($backupString != '') { $backupFile = "{$backupDir}/{$table}_{$fileCount}_" . substr(md5(time() . mt_rand(1000, 5000)), 0, 16) . ".sql"; $fp = fopen($backupFile, "w"); fwrite($fp, $backupString); fclose($fp); } $this->output("成功备份:{$table}"); sleep(1); } $this->output('所选数据备份完毕!'); } } } function revert ($action = '') { $this->title .= ' => 数据还原'; $tableArray = $this->Load->post('selected,struct,del'); if (empty($tableArray['selected'])) { $this->structChecked = 'checked="checked"'; $this->delChecked = 'checked="checked"'; } else { $this->structChecked = empty($tableArray['struct']) ? '' : 'checked="checked"'; $this->delChecked = empty($tableArray['del']) ? '' : 'checked="checked"'; } $rows = Array(); $backupDir = APP_PATH . '/data/backup'; $dh = dir($backupDir); $this->structFile = ''; while (($fileName = $dh->read()) !== false) { if (! ereg('sql$', $fileName)) { continue; } if (ereg('tables_struct', $fileName)) { $this->structFile = $fileName; } else if (filesize("{$backupDir}/{$fileName}") > 0) { $rows[] = $fileName; } } $dh->close(); $countRows = count($rows); for ($i = 0; $i < $countRows; $i ++) { if (empty($tableArray['selected'])) { $checked = ereg("^{$this->Load->config['mysql']['prefix']}", $rows[$i]) ? 'checked="checked"' : ''; } else { $checked = in_array($rows[$i], $tableArray['selected']) ? 'checked="checked"' : ''; } $left = array('name'=>$rows[$i], 'checked'=>$checked); $i ++; if (isset($rows[$i])) { if (empty($tableArray['selected'])) { $checked = ereg("^{$this->Load->config['mysql']['prefix']}", $rows[$i]) ? 'checked="checked"' : ''; } else { $checked = in_array($rows[$i], $tableArray['selected']) ? 'checked="checked"' : ''; } $right = array('name'=>$rows[$i], 'checked'=>$checked); } else { $right = array('name'=>''); } $tables[] = array('left'=>$left, 'right'=>$right); } $this->tables = empty($tables) ? array() : $tables; $this->Load->view('smarty'); if ($action == 'revert') { $this->output('getDialog("","top");', FALSE); ini_set('max_execution_time', 0); ob_implicit_flush(1); $this->output('开始还原...'); $Model = model('Db'); if (! empty($tableArray['struct'])) { $sql = ''; $fp = fopen("{$backupDir}/{$tableArray['struct']}", 'r'); while (! feof($fp)) { $sql .= fgets($fp, 1024); } fclose($fp); $querys = explode(';', $sql); foreach ($querys as $query) { if (trim($query) != '') { $Model->query(trim($query) . ';'); } } if (! empty($tableArray['del'])) { @unlink("{$backupDir}/{$tableArray['struct']}"); } $this->output("成功还原:表结构信息({$tableArray['struct']})"); } foreach ($tableArray['selected'] as $table) { $ok = 0; if (filesize("{$backupDir}/$table") > 0) { $fp = fopen("{$backupDir}/$table", 'r'); while (! feof($fp)) { $line = trim(fgets($fp, 512 * 1024)); if ($line == "") { continue; } $status = $Model->query($line); if ($status) { $ok ++; } } fclose($fp); } if (! empty($tableArray['del'])) { @unlink("{$backupDir}/{$table}"); } $this->output("成功还原:{$table}({$ok}条记录)"); sleep(1); } $this->output('所选数据还原完毕!'); } } private function output ($info, $updateHtml = true) { if ($updateHtml) { if ($this->outputNum > 0) { echo '<script>$(".ui-dialog-message").append("<br />' . $info . '");</script>'; } else { echo '<script>$(".ui-dialog-message").html("' . $info . '");</script>'; } $this->outputNum = $this->outputNum + 1; } else { echo '<script>' . $info . '</script>'; } @ob_flush(); @flush(); } private function replaceLine ($str) { $str = str_replace("\r", '\r', $str); $str = str_replace("\n", '\n', $str); return $str; } } /* End of file /01CMS/application/controller/SettingController.php */
01cms
01cms/branches/1.0/01cms/controller/DatabaseController.php
PHP
asf20
13,161
<?php /** * 列出模型自定义字段 * * @package 01CMS * @subpackage plugin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ function smarty_block_field ($params, $content, $smarty, &$repeat) { static $fields; if (is_null($content)) { $fields = $params['fields']; } if ($o = current($fields)) { $smarty->assign('name', $o->name); $startPos = strpos($o->code, '<!--config{'); $endPos = strpos($o->code, '}-->'); if ($startPos === FALSE || $endPos === FALSE) { return '自定义字段配置出错'; } $configString = substr($o->code, $startPos + 11, $endPos - $startPos - 11); $configArr = explode(';', $configString); foreach ($configArr as $configItem) { list ($k, $v) = explode('=', $configItem); $config[$k] = $v; } $o->code = substr($o->code, $endPos + 4); if ($config['type'] == 'FCKeditor') { $FCKeditor = lib('FCKeditor', $o->field); $items = explode(';', $o->code); foreach ($items as $item) { if (empty($item)) { continue; } list ($k, $v) = explode('=', $item); $FCKeditor->$k = $v; if (isset($params['data']->{$o->field})) { $FCKeditor->Value = $params['data']->{$o->field}; } } $o->code = $FCKeditor->CreateHtml(); } else { if (isset($params['data']->{$o->field})) { $o->code = str_replace('$value', $params['data']->{$o->field}, $o->code); } else { $o->code = str_replace('$value', '', $o->code); } } $smarty->assign('code', stripcslashes($o->code)); next($fields); $repeat = true; } else { $repeat = false; } return $content; }
01cms
01cms/branches/1.0/01cms/plugin/block.field.php
PHP
asf20
2,240
<?php /** * FCKeditor * * @package 01CMS * @subpackage admin * @return bool */ function FCKeditor_IsCompatibleBrowser () { if (isset($_SERVER)) { $sAgent = $_SERVER['HTTP_USER_AGENT']; } else { global $HTTP_SERVER_VARS; if (isset($HTTP_SERVER_VARS)) { $sAgent = $HTTP_SERVER_VARS['HTTP_USER_AGENT']; } else { global $HTTP_USER_AGENT; $sAgent = $HTTP_USER_AGENT; } } if (strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false) { $iVersion = (float) substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3); return ($iVersion >= 5.5); } else if (strpos($sAgent, 'Gecko/') !== false) { $iVersion = (int) substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8); return ($iVersion >= 20030210); } else if (strpos($sAgent, 'Opera/') !== false) { $fVersion = (float) substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4); return ($fVersion >= 9.5); } else if (preg_match("|AppleWebKit/(\d+)|i", $sAgent, $matches)) { $iVersion = $matches[1]; return ($matches[1] >= 522); } else return false; } class FCKeditor { /** * Name of the FCKeditor instance. * * @access protected * @var string */ public $InstanceName; /** * Path to FCKeditor relative to the document root. * * @var string */ public $BasePath; /** * Width of the FCKeditor. * Examples: 100%, 600 * * @var mixed */ public $Width; /** * Height of the FCKeditor. * Examples: 400, 50% * * @var mixed */ public $Height; /** * Name of the toolbar to load. * * @var string */ public $ToolbarSet; /** * Initial value. * * @var string */ public $Value; /** * This is where additional configuration can be passed. * Example: * $oFCKeditor->Config['EnterMode'] = 'br'; * * @var array */ public $Config; /** * Main Constructor. * Refer to the _samples/php directory for examples. * * @param string $instanceName */ public function __construct ($instanceName) { $this->InstanceName = $instanceName; $this->BasePath = BOOT_DIR . '/public/FCKeditor/'; $this->Width = '100%'; $this->Height = '200'; $this->ToolbarSet = '01cms'; $this->Value = ''; $this->Config = array(); } /** * Display FCKeditor. * */ public function Create () { echo $this->CreateHtml(); } /** * Return the HTML code required to run FCKeditor. * * @return string */ public function CreateHtml () { $HtmlValue = htmlspecialchars($this->Value); $Html = ''; if ($this->IsCompatible()) { if (isset($_GET['fcksource']) && $_GET['fcksource'] == "true") $File = 'fckeditor.original.html'; else $File = 'fckeditor.html'; $Link = "{$this->BasePath}editor/{$File}?InstanceName={$this->InstanceName}"; if ($this->ToolbarSet != '') $Link .= "&amp;Toolbar={$this->ToolbarSet}"; //Upload path $Link .= "&amp;ROOT_DIR=" . ROOT_DIR . "&amp;PUBLIC_DIR=" . PUBLIC_DIR . "&amp;BOOT_URL=" . BOOT_URL; // Render the linked hidden field. $Html .= "<input class=\"posted\" type=\"hidden\" id=\"{$this->InstanceName}\" name=\"{$this->InstanceName}\" value=\"{$HtmlValue}\" style=\"display:none\" />"; // Render the configurations hidden field. $Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}___Config\" value=\"" . $this->GetConfigFieldString() . "\" style=\"display:none\" />"; // Render the editor IFRAME. $Html .= "<iframe id=\"{$this->InstanceName}___Frame\" src=\"{$Link}\" width=\"{$this->Width}\" height=\"{$this->Height}\" frameborder=\"0\" scrolling=\"no\"></iframe>"; } else { if (strpos($this->Width, '%') === false) $WidthCSS = $this->Width . 'px'; else $WidthCSS = $this->Width; if (strpos($this->Height, '%') === false) $HeightCSS = $this->Height . 'px'; else $HeightCSS = $this->Height; $Html .= "<textarea name=\"{$this->InstanceName}\" rows=\"4\" cols=\"40\" style=\"width: {$WidthCSS}; height: {$HeightCSS}\">{$HtmlValue}</textarea>"; } return $Html; } /** * Returns true if browser is compatible with FCKeditor. * * @return boolean */ public function IsCompatible () { return FCKeditor_IsCompatibleBrowser(); } /** * Get settings from Config array as a single string. * * @access protected * @return string */ public function GetConfigFieldString () { $sParams = ''; $bFirst = true; foreach ($this->Config as $sKey => $sValue) { if ($bFirst == false) $sParams .= '&amp;'; else $bFirst = false; if ($sValue === true) $sParams .= $this->EncodeConfig($sKey) . '=true'; else if ($sValue === false) $sParams .= $this->EncodeConfig($sKey) . '=false'; else $sParams .= $this->EncodeConfig($sKey) . '=' . $this->EncodeConfig($sValue); } return $sParams; } /** * Encode characters that may break the configuration string * generated by GetConfigFieldString(). * * @access protected * @param string $valueToEncode * @return string */ public function EncodeConfig ($valueToEncode) { $chars = array('&' => '%26', '=' => '%3D', '"' => '%22'); return strtr($valueToEncode, $chars); } }
01cms
01cms/branches/1.0/01cms/lib/FCKeditor.php
PHP
asf20
6,538
<?php /** * 文档 - 函数 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class Archive { public static function check($status) { } }
01cms
01cms/branches/1.0/01cms/lib/Archive.php
PHP
asf20
272
<?php /** * 后台用户模型 * * @package 01CMS * @subpackage admin * @author rolong at vip.qq.com * @version 1.0.0 * @link http://www.01cms.com */ class UserModel extends UserAbstractModel { /** * 设置用户类型前缀 * * @return void */ protected function setUserTypePrefix () { $this->prefix = 'admin_'; } }
01cms
01cms/branches/1.0/01cms/model/UserModel.php
PHP
asf20
415
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines some constants used by the editor. These constants are also * globally available in the page where the editor is placed. */ // Editor Instance Status. var FCK_STATUS_NOTLOADED = window.parent.FCK_STATUS_NOTLOADED = 0 ; var FCK_STATUS_ACTIVE = window.parent.FCK_STATUS_ACTIVE = 1 ; var FCK_STATUS_COMPLETE = window.parent.FCK_STATUS_COMPLETE = 2 ; // Tristate Operations. var FCK_TRISTATE_OFF = window.parent.FCK_TRISTATE_OFF = 0 ; var FCK_TRISTATE_ON = window.parent.FCK_TRISTATE_ON = 1 ; var FCK_TRISTATE_DISABLED = window.parent.FCK_TRISTATE_DISABLED = -1 ; // For unknown values. var FCK_UNKNOWN = window.parent.FCK_UNKNOWN = -9 ; // Toolbar Items Style. var FCK_TOOLBARITEM_ONLYICON = window.parent.FCK_TOOLBARITEM_ONLYICON = 0 ; var FCK_TOOLBARITEM_ONLYTEXT = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 1 ; var FCK_TOOLBARITEM_ICONTEXT = window.parent.FCK_TOOLBARITEM_ICONTEXT = 2 ; // Edit Mode var FCK_EDITMODE_WYSIWYG = window.parent.FCK_EDITMODE_WYSIWYG = 0 ; var FCK_EDITMODE_SOURCE = window.parent.FCK_EDITMODE_SOURCE = 1 ; var FCK_IMAGES_PATH = 'images/' ; // Check usage. var FCK_SPACER_PATH = 'images/spacer.gif' ; var CTRL = 1000 ; var SHIFT = 2000 ; var ALT = 4000 ; var FCK_STYLE_BLOCK = 0 ; var FCK_STYLE_INLINE = 1 ; var FCK_STYLE_OBJECT = 2 ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/fckconstants.js
JavaScript
asf20
1,968
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Creation and initialization of the "FCK" object. This is the main * object that represents an editor instance. * (Gecko specific implementations) */ FCK.Description = "FCKeditor for Gecko Browsers" ; FCK.InitializeBehaviors = function() { // When calling "SetData", the editing area IFRAME gets a fixed height. So we must recalculate it. if ( window.onresize ) // Not for Safari/Opera. window.onresize() ; FCKFocusManager.AddWindow( this.EditorWindow ) ; this.ExecOnSelectionChange = function() { FCK.Events.FireEvent( "OnSelectionChange" ) ; } this._ExecDrop = function( evt ) { if ( FCK.MouseDownFlag ) { FCK.MouseDownFlag = false ; return ; } if ( FCKConfig.ForcePasteAsPlainText ) { if ( evt.dataTransfer ) { var text = evt.dataTransfer.getData( 'Text' ) ; text = FCKTools.HTMLEncode( text ) ; text = FCKTools.ProcessLineBreaks( window, FCKConfig, text ) ; FCK.InsertHtml( text ) ; } else if ( FCKConfig.ShowDropDialog ) FCK.PasteAsPlainText() ; evt.preventDefault() ; evt.stopPropagation() ; } } this._ExecCheckCaret = function( evt ) { if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) return ; if ( evt.type == 'keypress' ) { var keyCode = evt.keyCode ; // ignore if positioning key is not pressed. // left or up arrow keys need to be processed as well, since <a> links can be expanded in Gecko's editor // when the caret moved left or up from another block element below. if ( keyCode < 33 || keyCode > 40 ) return ; } var blockEmptyStop = function( node ) { if ( node.nodeType != 1 ) return false ; var tag = node.tagName.toLowerCase() ; return ( FCKListsLib.BlockElements[tag] || FCKListsLib.EmptyElements[tag] ) ; } var moveCursor = function() { var selection = FCKSelection.GetSelection() ; var range = selection.getRangeAt(0) ; if ( ! range || ! range.collapsed ) return ; var node = range.endContainer ; // only perform the patched behavior if we're at the end of a text node. if ( node.nodeType != 3 ) return ; if ( node.nodeValue.length != range.endOffset ) return ; // only perform the patched behavior if we're in an <a> tag, or the End key is pressed. var parentTag = node.parentNode.tagName.toLowerCase() ; if ( ! ( parentTag == 'a' || ( !FCKBrowserInfo.IsOpera && String(node.parentNode.contentEditable) == 'false' ) || ( ! ( FCKListsLib.BlockElements[parentTag] || FCKListsLib.NonEmptyBlockElements[parentTag] ) && keyCode == 35 ) ) ) return ; // our caret has moved to just after the last character of a text node under an unknown tag, how to proceed? // first, see if there are other text nodes by DFS walking from this text node. // - if the DFS has scanned all nodes under my parent, then go the next step. // - if there is a text node after me but still under my parent, then do nothing and return. var nextTextNode = FCKTools.GetNextTextNode( node, node.parentNode, blockEmptyStop ) ; if ( nextTextNode ) return ; // we're pretty sure we need to move the caret forcefully from here. range = FCK.EditorDocument.createRange() ; nextTextNode = FCKTools.GetNextTextNode( node, node.parentNode.parentNode, blockEmptyStop ) ; if ( nextTextNode ) { // Opera thinks the dummy empty text node we append beyond the end of <a> nodes occupies a caret // position. So if the user presses the left key and we reset the caret position here, the user // wouldn't be able to go back. if ( FCKBrowserInfo.IsOpera && keyCode == 37 ) return ; // now we want to get out of our current parent node, adopt the next parent, and move the caret to // the appropriate text node under our new parent. // our new parent might be our current parent's siblings if we are lucky. range.setStart( nextTextNode, 0 ) ; range.setEnd( nextTextNode, 0 ) ; } else { // no suitable next siblings under our grandparent! what to do next? while ( node.parentNode && node.parentNode != FCK.EditorDocument.body && node.parentNode != FCK.EditorDocument.documentElement && node == node.parentNode.lastChild && ( ! FCKListsLib.BlockElements[node.parentNode.tagName.toLowerCase()] && ! FCKListsLib.NonEmptyBlockElements[node.parentNode.tagName.toLowerCase()] ) ) node = node.parentNode ; if ( FCKListsLib.BlockElements[ parentTag ] || FCKListsLib.EmptyElements[ parentTag ] || node == FCK.EditorDocument.body ) { // if our parent is a block node, move to the end of our parent. range.setStart( node, node.childNodes.length ) ; range.setEnd( node, node.childNodes.length ) ; } else { // things are a little bit more interesting if our parent is not a block node // due to the weired ways how Gecko's caret acts... var stopNode = node.nextSibling ; // find out the next block/empty element at our grandparent, we'll // move the caret just before it. while ( stopNode ) { if ( stopNode.nodeType != 1 ) { stopNode = stopNode.nextSibling ; continue ; } var stopTag = stopNode.tagName.toLowerCase() ; if ( FCKListsLib.BlockElements[stopTag] || FCKListsLib.EmptyElements[stopTag] || FCKListsLib.NonEmptyBlockElements[stopTag] ) break ; stopNode = stopNode.nextSibling ; } // note that the dummy marker below is NEEDED, otherwise the caret's behavior will // be broken in Gecko. var marker = FCK.EditorDocument.createTextNode( '' ) ; if ( stopNode ) node.parentNode.insertBefore( marker, stopNode ) ; else node.parentNode.appendChild( marker ) ; range.setStart( marker, 0 ) ; range.setEnd( marker, 0 ) ; } } selection.removeAllRanges() ; selection.addRange( range ) ; FCK.Events.FireEvent( "OnSelectionChange" ) ; } setTimeout( moveCursor, 1 ) ; } this.ExecOnSelectionChangeTimer = function() { if ( FCK.LastOnChangeTimer ) window.clearTimeout( FCK.LastOnChangeTimer ) ; FCK.LastOnChangeTimer = window.setTimeout( FCK.ExecOnSelectionChange, 100 ) ; } this.EditorDocument.addEventListener( 'mouseup', this.ExecOnSelectionChange, false ) ; // On Gecko, firing the "OnSelectionChange" event on every key press started to be too much // slow. So, a timer has been implemented to solve performance issues when typing to quickly. this.EditorDocument.addEventListener( 'keyup', this.ExecOnSelectionChangeTimer, false ) ; this._DblClickListener = function( e ) { FCK.OnDoubleClick( e.target ) ; e.stopPropagation() ; } this.EditorDocument.addEventListener( 'dblclick', this._DblClickListener, true ) ; // Record changes for the undo system when there are key down events. this.EditorDocument.addEventListener( 'keydown', this._KeyDownListener, false ) ; // Hooks for data object drops if ( FCKBrowserInfo.IsGecko ) { this.EditorWindow.addEventListener( 'dragdrop', this._ExecDrop, true ) ; } else if ( FCKBrowserInfo.IsSafari ) { this.EditorDocument.addEventListener( 'dragover', function ( evt ) { if ( !FCK.MouseDownFlag && FCK.Config.ForcePasteAsPlainText ) evt.returnValue = false ; }, true ) ; this.EditorDocument.addEventListener( 'drop', this._ExecDrop, true ) ; this.EditorDocument.addEventListener( 'mousedown', function( ev ) { var element = ev.srcElement ; if ( element.nodeName.IEquals( 'IMG', 'HR', 'INPUT', 'TEXTAREA', 'SELECT' ) ) { FCKSelection.SelectNode( element ) ; } }, true ) ; this.EditorDocument.addEventListener( 'mouseup', function( ev ) { if ( ev.srcElement.nodeName.IEquals( 'INPUT', 'TEXTAREA', 'SELECT' ) ) ev.preventDefault() }, true ) ; this.EditorDocument.addEventListener( 'click', function( ev ) { if ( ev.srcElement.nodeName.IEquals( 'INPUT', 'TEXTAREA', 'SELECT' ) ) ev.preventDefault() }, true ) ; } // Kludge for buggy Gecko caret positioning logic (Bug #393 and #1056) if ( FCKBrowserInfo.IsGecko || FCKBrowserInfo.IsOpera ) { this.EditorDocument.addEventListener( 'keypress', this._ExecCheckCaret, false ) ; this.EditorDocument.addEventListener( 'click', this._ExecCheckCaret, false ) ; } // Reset the context menu. FCK.ContextMenu._InnerContextMenu.SetMouseClickWindow( FCK.EditorWindow ) ; FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument ) ; } FCK.MakeEditable = function() { this.EditingArea.MakeEditable() ; } // Disable the context menu in the editor (outside the editing area). function Document_OnContextMenu( e ) { if ( !e.target._FCKShowContextMenu ) e.preventDefault() ; } document.oncontextmenu = Document_OnContextMenu ; // GetNamedCommandState overload for Gecko. FCK._BaseGetNamedCommandState = FCK.GetNamedCommandState ; FCK.GetNamedCommandState = function( commandName ) { switch ( commandName ) { case 'Unlink' : return FCKSelection.HasAncestorNode('A') ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ; default : return FCK._BaseGetNamedCommandState( commandName ) ; } } // Named commands to be handled by this browsers specific implementation. FCK.RedirectNamedCommands = { Print : true, Paste : true } ; // ExecuteNamedCommand overload for Gecko. FCK.ExecuteRedirectedNamedCommand = function( commandName, commandParameter ) { switch ( commandName ) { case 'Print' : FCK.EditorWindow.print() ; break ; case 'Paste' : try { // Force the paste dialog for Safari (#50). if ( FCKBrowserInfo.IsSafari ) throw '' ; if ( FCK.Paste() ) FCK.ExecuteNamedCommand( 'Paste', null, true ) ; } catch (e) { if ( FCKConfig.ForcePasteAsPlainText ) FCK.PasteAsPlainText() ; else FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security' ) ; } break ; default : FCK.ExecuteNamedCommand( commandName, commandParameter ) ; } } FCK._ExecPaste = function() { // Save a snapshot for undo before actually paste the text FCKUndo.SaveUndoStep() ; if ( FCKConfig.ForcePasteAsPlainText ) { FCK.PasteAsPlainText() ; return false ; } /* For now, the AutoDetectPasteFromWord feature is IE only. */ return true ; } //** // FCK.InsertHtml: Inserts HTML at the current cursor location. Deletes the // selected content if any. FCK.InsertHtml = function( html ) { var doc = FCK.EditorDocument, range; html = FCKConfig.ProtectedSource.Protect( html ) ; html = FCK.ProtectEvents( html ) ; html = FCK.ProtectUrls( html ) ; html = FCK.ProtectTags( html ) ; // Save an undo snapshot first. FCKUndo.SaveUndoStep() ; if ( FCKBrowserInfo.IsGecko ) { html = html.replace( /&nbsp;$/, '$&<span _fcktemp="1"/>' ) ; var docFrag = new FCKDocumentFragment( this.EditorDocument ) ; docFrag.AppendHtml( html ) ; var lastNode = docFrag.RootNode.lastChild ; range = new FCKDomRange( this.EditorWindow ) ; range.MoveToSelection() ; range.DeleteContents() ; range.InsertNode( docFrag.RootNode ) ; range.MoveToPosition( lastNode, 4 ) ; } else doc.execCommand( 'inserthtml', false, html ) ; this.Focus() ; // Save the caret position before calling document processor. if ( !range ) { range = new FCKDomRange( this.EditorWindow ) ; range.MoveToSelection() ; } var bookmark = range.CreateBookmark() ; FCKDocumentProcessor.Process( doc ) ; // Restore caret position, ignore any errors in case the document // processor removed the bookmark <span>s for some reason. try { range.MoveToBookmark( bookmark ) ; range.Select() ; } catch ( e ) {} // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call. this.Events.FireEvent( "OnSelectionChange" ) ; } FCK.PasteAsPlainText = function() { // TODO: Implement the "Paste as Plain Text" code. // If the function is called immediately Firefox 2 does automatically paste the contents as soon as the new dialog is created // so we run it in a Timeout and the paste event can be cancelled FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText'] ) ; /* var sText = FCKTools.HTMLEncode( clipboardData.getData("Text") ) ; sText = sText.replace( /\n/g, '<BR>' ) ; this.InsertHtml( sText ) ; */ } /* FCK.PasteFromWord = function() { // TODO: Implement the "Paste as Plain Text" code. FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteFromWord, 'dialog/fck_paste.html', 400, 330, 'Word' ) ; // FCK.CleanAndPaste( FCK.GetClipboardHTML() ) ; } */ FCK.GetClipboardHTML = function() { return '' ; } FCK.CreateLink = function( url, noUndo ) { // Creates the array that will be returned. It contains one or more created links (see #220). var aCreatedLinks = new Array() ; // Only for Safari, a collapsed selection may create a link. All other // browser will have no links created. So, we check it here and return // immediatelly, having the same cross browser behavior. if ( FCKSelection.GetSelection().isCollapsed ) return aCreatedLinks ; FCK.ExecuteNamedCommand( 'Unlink', null, false, !!noUndo ) ; if ( url.length > 0 ) { // Generate a temporary name for the link. var sTempUrl = 'javascript:void(0);/*' + ( new Date().getTime() ) + '*/' ; // Use the internal "CreateLink" command to create the link. FCK.ExecuteNamedCommand( 'CreateLink', sTempUrl, false, !!noUndo ) ; // Retrieve the just created links using XPath. var oLinksInteractor = this.EditorDocument.evaluate("//a[@href='" + sTempUrl + "']", this.EditorDocument.body, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null) ; // Add all links to the returning array. for ( var i = 0 ; i < oLinksInteractor.snapshotLength ; i++ ) { var oLink = oLinksInteractor.snapshotItem( i ) ; oLink.href = url ; aCreatedLinks.push( oLink ) ; } } return aCreatedLinks ; } FCK._FillEmptyBlock = function( emptyBlockNode ) { if ( ! emptyBlockNode || emptyBlockNode.nodeType != 1 ) return ; var nodeTag = emptyBlockNode.tagName.toLowerCase() ; if ( nodeTag != 'p' && nodeTag != 'div' ) return ; if ( emptyBlockNode.firstChild ) return ; FCKTools.AppendBogusBr( emptyBlockNode ) ; } FCK._ExecCheckEmptyBlock = function() { FCK._FillEmptyBlock( FCK.EditorDocument.body.firstChild ) ; var sel = FCKSelection.GetSelection() ; if ( !sel || sel.rangeCount < 1 ) return ; var range = sel.getRangeAt( 0 ); FCK._FillEmptyBlock( range.startContainer ) ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fck_gecko.js
JavaScript
asf20
15,655
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Toolbar items definitions. */ var FCKToolbarItems = new Object() ; FCKToolbarItems.LoadedItems = new Object() ; FCKToolbarItems.RegisterItem = function( itemName, item ) { this.LoadedItems[ itemName ] = item ; } FCKToolbarItems.GetItem = function( itemName ) { var oItem = FCKToolbarItems.LoadedItems[ itemName ] ; if ( oItem ) return oItem ; switch ( itemName ) { case 'Source' : oItem = new FCKToolbarButton( 'Source' , FCKLang.Source, null, FCK_TOOLBARITEM_ICONTEXT, true, true, 1 ) ; break ; case 'DocProps' : oItem = new FCKToolbarButton( 'DocProps' , FCKLang.DocProps, null, null, null, null, 2 ) ; break ; case 'Save' : oItem = new FCKToolbarButton( 'Save' , FCKLang.Save, null, null, true, null, 3 ) ; break ; case 'NewPage' : oItem = new FCKToolbarButton( 'NewPage' , FCKLang.NewPage, null, null, true, null, 4 ) ; break ; case 'Preview' : oItem = new FCKToolbarButton( 'Preview' , FCKLang.Preview, null, null, true, null, 5 ) ; break ; case 'Templates' : oItem = new FCKToolbarButton( 'Templates' , FCKLang.Templates, null, null, null, null, 6 ) ; break ; case 'About' : oItem = new FCKToolbarButton( 'About' , FCKLang.About, null, null, true, null, 47 ) ; break ; case 'Cut' : oItem = new FCKToolbarButton( 'Cut' , FCKLang.Cut, null, null, false, true, 7 ) ; break ; case 'Copy' : oItem = new FCKToolbarButton( 'Copy' , FCKLang.Copy, null, null, false, true, 8 ) ; break ; case 'Paste' : oItem = new FCKToolbarButton( 'Paste' , FCKLang.Paste, null, null, false, true, 9 ) ; break ; case 'PasteText' : oItem = new FCKToolbarButton( 'PasteText' , FCKLang.PasteText, null, null, false, true, 10 ) ; break ; case 'PasteWord' : oItem = new FCKToolbarButton( 'PasteWord' , FCKLang.PasteWord, null, null, false, true, 11 ) ; break ; case 'Print' : oItem = new FCKToolbarButton( 'Print' , FCKLang.Print, null, null, false, true, 12 ) ; break ; case 'SpellCheck' : oItem = new FCKToolbarButton( 'SpellCheck', FCKLang.SpellCheck, null, null, null, null, 13 ) ; break ; case 'Undo' : oItem = new FCKToolbarButton( 'Undo' , FCKLang.Undo, null, null, false, true, 14 ) ; break ; case 'Redo' : oItem = new FCKToolbarButton( 'Redo' , FCKLang.Redo, null, null, false, true, 15 ) ; break ; case 'SelectAll' : oItem = new FCKToolbarButton( 'SelectAll' , FCKLang.SelectAll, null, null, true, null, 18 ) ; break ; case 'RemoveFormat' : oItem = new FCKToolbarButton( 'RemoveFormat', FCKLang.RemoveFormat, null, null, false, true, 19 ) ; break ; case 'FitWindow' : oItem = new FCKToolbarButton( 'FitWindow' , FCKLang.FitWindow, null, null, true, true, 66 ) ; break ; case 'Bold' : oItem = new FCKToolbarButton( 'Bold' , FCKLang.Bold, null, null, false, true, 20 ) ; break ; case 'Italic' : oItem = new FCKToolbarButton( 'Italic' , FCKLang.Italic, null, null, false, true, 21 ) ; break ; case 'Underline' : oItem = new FCKToolbarButton( 'Underline' , FCKLang.Underline, null, null, false, true, 22 ) ; break ; case 'StrikeThrough' : oItem = new FCKToolbarButton( 'StrikeThrough' , FCKLang.StrikeThrough, null, null, false, true, 23 ) ; break ; case 'Subscript' : oItem = new FCKToolbarButton( 'Subscript' , FCKLang.Subscript, null, null, false, true, 24 ) ; break ; case 'Superscript' : oItem = new FCKToolbarButton( 'Superscript' , FCKLang.Superscript, null, null, false, true, 25 ) ; break ; case 'OrderedList' : oItem = new FCKToolbarButton( 'InsertOrderedList' , FCKLang.NumberedListLbl, FCKLang.NumberedList, null, false, true, 26 ) ; break ; case 'UnorderedList' : oItem = new FCKToolbarButton( 'InsertUnorderedList' , FCKLang.BulletedListLbl, FCKLang.BulletedList, null, false, true, 27 ) ; break ; case 'Outdent' : oItem = new FCKToolbarButton( 'Outdent' , FCKLang.DecreaseIndent, null, null, false, true, 28 ) ; break ; case 'Indent' : oItem = new FCKToolbarButton( 'Indent' , FCKLang.IncreaseIndent, null, null, false, true, 29 ) ; break ; case 'Blockquote' : oItem = new FCKToolbarButton( 'Blockquote' , FCKLang.Blockquote, null, null, false, true, 73 ) ; break ; case 'CreateDiv' : oItem = new FCKToolbarButton( 'CreateDiv' , FCKLang.CreateDiv, null, null, false, true, 74 ) ; break ; case 'Link' : oItem = new FCKToolbarButton( 'Link' , FCKLang.InsertLinkLbl, FCKLang.InsertLink, null, false, true, 34 ) ; break ; case 'Unlink' : oItem = new FCKToolbarButton( 'Unlink' , FCKLang.RemoveLink, null, null, false, true, 35 ) ; break ; case 'Anchor' : oItem = new FCKToolbarButton( 'Anchor' , FCKLang.Anchor, null, null, null, null, 36 ) ; break ; case 'Image' : oItem = new FCKToolbarButton( 'Image' , FCKLang.InsertImageLbl, FCKLang.InsertImage, null, false, true, 37 ) ; break ; case 'Flash' : oItem = new FCKToolbarButton( 'Flash' , FCKLang.InsertFlashLbl, FCKLang.InsertFlash, null, false, true, 38 ) ; break ; case 'Table' : oItem = new FCKToolbarButton( 'Table' , FCKLang.InsertTableLbl, FCKLang.InsertTable, null, false, true, 39 ) ; break ; case 'SpecialChar' : oItem = new FCKToolbarButton( 'SpecialChar' , FCKLang.InsertSpecialCharLbl, FCKLang.InsertSpecialChar, null, false, true, 42 ) ; break ; case 'Smiley' : oItem = new FCKToolbarButton( 'Smiley' , FCKLang.InsertSmileyLbl, FCKLang.InsertSmiley, null, false, true, 41 ) ; break ; case 'PageBreak' : oItem = new FCKToolbarButton( 'PageBreak' , FCKLang.PageBreakLbl, FCKLang.PageBreak, null, false, true, 43 ) ; break ; case 'Rule' : oItem = new FCKToolbarButton( 'Rule' , FCKLang.InsertLineLbl, FCKLang.InsertLine, null, false, true, 40 ) ; break ; case 'JustifyLeft' : oItem = new FCKToolbarButton( 'JustifyLeft' , FCKLang.LeftJustify, null, null, false, true, 30 ) ; break ; case 'JustifyCenter' : oItem = new FCKToolbarButton( 'JustifyCenter' , FCKLang.CenterJustify, null, null, false, true, 31 ) ; break ; case 'JustifyRight' : oItem = new FCKToolbarButton( 'JustifyRight' , FCKLang.RightJustify, null, null, false, true, 32 ) ; break ; case 'JustifyFull' : oItem = new FCKToolbarButton( 'JustifyFull' , FCKLang.BlockJustify, null, null, false, true, 33 ) ; break ; case 'Style' : oItem = new FCKToolbarStyleCombo() ; break ; case 'FontName' : oItem = new FCKToolbarFontsCombo() ; break ; case 'FontSize' : oItem = new FCKToolbarFontSizeCombo() ; break ; case 'FontFormat' : oItem = new FCKToolbarFontFormatCombo() ; break ; case 'TextColor' : oItem = new FCKToolbarPanelButton( 'TextColor', FCKLang.TextColor, null, null, 45 ) ; break ; case 'BGColor' : oItem = new FCKToolbarPanelButton( 'BGColor' , FCKLang.BGColor, null, null, 46 ) ; break ; case 'Find' : oItem = new FCKToolbarButton( 'Find' , FCKLang.Find, null, null, null, null, 16 ) ; break ; case 'Replace' : oItem = new FCKToolbarButton( 'Replace' , FCKLang.Replace, null, null, null, null, 17 ) ; break ; case 'Form' : oItem = new FCKToolbarButton( 'Form' , FCKLang.Form, null, null, null, null, 48 ) ; break ; case 'Checkbox' : oItem = new FCKToolbarButton( 'Checkbox' , FCKLang.Checkbox, null, null, null, null, 49 ) ; break ; case 'Radio' : oItem = new FCKToolbarButton( 'Radio' , FCKLang.RadioButton, null, null, null, null, 50 ) ; break ; case 'TextField' : oItem = new FCKToolbarButton( 'TextField' , FCKLang.TextField, null, null, null, null, 51 ) ; break ; case 'Textarea' : oItem = new FCKToolbarButton( 'Textarea' , FCKLang.Textarea, null, null, null, null, 52 ) ; break ; case 'HiddenField' : oItem = new FCKToolbarButton( 'HiddenField' , FCKLang.HiddenField, null, null, null, null, 56 ) ; break ; case 'Button' : oItem = new FCKToolbarButton( 'Button' , FCKLang.Button, null, null, null, null, 54 ) ; break ; case 'Select' : oItem = new FCKToolbarButton( 'Select' , FCKLang.SelectionField, null, null, null, null, 53 ) ; break ; case 'ImageButton' : oItem = new FCKToolbarButton( 'ImageButton' , FCKLang.ImageButton, null, null, null, null, 55 ) ; break ; case 'ShowBlocks' : oItem = new FCKToolbarButton( 'ShowBlocks' , FCKLang.ShowBlocks, null, null, null, true, 72 ) ; break ; default: alert( FCKLang.UnknownToolbarItem.replace( /%1/g, itemName ) ) ; return null ; } FCKToolbarItems.LoadedItems[ itemName ] = oItem ; return oItem ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktoolbaritems.js
JavaScript
asf20
9,021
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Utility functions. */ var FCKTools = new Object() ; FCKTools.CreateBogusBR = function( targetDocument ) { var eBR = targetDocument.createElement( 'br' ) ; // eBR.setAttribute( '_moz_editor_bogus_node', 'TRUE' ) ; eBR.setAttribute( 'type', '_moz' ) ; return eBR ; } /** * Fixes relative URL entries defined inside CSS styles by appending a prefix * to them. * @param (String) cssStyles The CSS styles definition possibly containing url() * paths. * @param (String) urlFixPrefix The prefix to append to relative URLs. */ FCKTools.FixCssUrls = function( urlFixPrefix, cssStyles ) { if ( !urlFixPrefix || urlFixPrefix.length == 0 ) return cssStyles ; return cssStyles.replace( /url\s*\(([\s'"]*)(.*?)([\s"']*)\)/g, function( match, opener, path, closer ) { if ( /^\/|^\w?:/.test( path ) ) return match ; else return 'url(' + opener + urlFixPrefix + path + closer + ')' ; } ) ; } FCKTools._GetUrlFixedCss = function( cssStyles, urlFixPrefix ) { var match = cssStyles.match( /^([^|]+)\|([\s\S]*)/ ) ; if ( match ) return FCKTools.FixCssUrls( match[1], match[2] ) ; else return cssStyles ; } /** * Appends a <link css> or <style> element to the document. * @param (Object) documentElement The DOM document object to which append the * stylesheet. * @param (Variant) cssFileOrDef A String pointing to the CSS file URL or an * Array with many CSS file URLs or the CSS definitions for the <style> * element. * @return {Array} An array containing all elements created in the target * document. It may include <link> or <style> elements, depending on the * value passed with cssFileOrDef. */ FCKTools.AppendStyleSheet = function( domDocument, cssFileOrArrayOrDef ) { if ( !cssFileOrArrayOrDef ) return [] ; if ( typeof( cssFileOrArrayOrDef ) == 'string' ) { // Test if the passed argument is an URL. if ( /[\\\/\.][^{}]*$/.test( cssFileOrArrayOrDef ) ) { // The string may have several URLs separated by comma. return this.AppendStyleSheet( domDocument, cssFileOrArrayOrDef.split(',') ) ; } else return [ this.AppendStyleString( domDocument, FCKTools._GetUrlFixedCss( cssFileOrArrayOrDef ) ) ] ; } else { var styles = [] ; for ( var i = 0 ; i < cssFileOrArrayOrDef.length ; i++ ) styles.push( this._AppendStyleSheet( domDocument, cssFileOrArrayOrDef[i] ) ) ; return styles ; } } FCKTools.GetStyleHtml = (function() { var getStyle = function( styleDef, markTemp ) { if ( styleDef.length == 0 ) return '' ; var temp = markTemp ? ' _fcktemp="true"' : '' ; return '<' + 'style type="text/css"' + temp + '>' + styleDef + '<' + '/style>' ; } var getLink = function( cssFileUrl, markTemp ) { if ( cssFileUrl.length == 0 ) return '' ; var temp = markTemp ? ' _fcktemp="true"' : '' ; return '<' + 'link href="' + cssFileUrl + '" type="text/css" rel="stylesheet" ' + temp + '/>' ; } return function( cssFileOrArrayOrDef, markTemp ) { if ( !cssFileOrArrayOrDef ) return '' ; if ( typeof( cssFileOrArrayOrDef ) == 'string' ) { // Test if the passed argument is an URL. if ( /[\\\/\.][^{}]*$/.test( cssFileOrArrayOrDef ) ) { // The string may have several URLs separated by comma. return this.GetStyleHtml( cssFileOrArrayOrDef.split(','), markTemp ) ; } else return getStyle( this._GetUrlFixedCss( cssFileOrArrayOrDef ), markTemp ) ; } else { var html = '' ; for ( var i = 0 ; i < cssFileOrArrayOrDef.length ; i++ ) html += getLink( cssFileOrArrayOrDef[i], markTemp ) ; return html ; } } })() ; FCKTools.GetElementDocument = function ( element ) { return element.ownerDocument || element.document ; } // Get the window object where the element is placed in. FCKTools.GetElementWindow = function( element ) { return this.GetDocumentWindow( this.GetElementDocument( element ) ) ; } FCKTools.GetDocumentWindow = function( document ) { // With Safari, there is not way to retrieve the window from the document, so we must fix it. if ( FCKBrowserInfo.IsSafari && !document.parentWindow ) this.FixDocumentParentWindow( window.top ) ; return document.parentWindow || document.defaultView ; } /* This is a Safari specific function that fix the reference to the parent window from the document object. */ FCKTools.FixDocumentParentWindow = function( targetWindow ) { if ( targetWindow.document ) targetWindow.document.parentWindow = targetWindow ; for ( var i = 0 ; i < targetWindow.frames.length ; i++ ) FCKTools.FixDocumentParentWindow( targetWindow.frames[i] ) ; } FCKTools.HTMLEncode = function( text ) { if ( !text ) return '' ; text = text.replace( /&/g, '&amp;' ) ; text = text.replace( /</g, '&lt;' ) ; text = text.replace( />/g, '&gt;' ) ; return text ; } FCKTools.HTMLDecode = function( text ) { if ( !text ) return '' ; text = text.replace( /&gt;/g, '>' ) ; text = text.replace( /&lt;/g, '<' ) ; text = text.replace( /&amp;/g, '&' ) ; return text ; } FCKTools._ProcessLineBreaksForPMode = function( oEditor, text, liState, node, strArray ) { var closeState = 0 ; var blockStartTag = "<p>" ; var blockEndTag = "</p>" ; var lineBreakTag = "<br />" ; if ( liState ) { blockStartTag = "<li>" ; blockEndTag = "</li>" ; closeState = 1 ; } // Are we currently inside a <p> tag now? // If yes, close it at the next double line break. while ( node && node != oEditor.FCK.EditorDocument.body ) { if ( node.tagName.toLowerCase() == 'p' ) { closeState = 1 ; break; } node = node.parentNode ; } for ( var i = 0 ; i < text.length ; i++ ) { var c = text.charAt( i ) ; if ( c == '\r' ) continue ; if ( c != '\n' ) { strArray.push( c ) ; continue ; } // Now we have encountered a line break. // Check if the next character is also a line break. var n = text.charAt( i + 1 ) ; if ( n == '\r' ) { i++ ; n = text.charAt( i + 1 ) ; } if ( n == '\n' ) { i++ ; // ignore next character - we have already processed it. if ( closeState ) strArray.push( blockEndTag ) ; strArray.push( blockStartTag ) ; closeState = 1 ; } else strArray.push( lineBreakTag ) ; } } FCKTools._ProcessLineBreaksForDivMode = function( oEditor, text, liState, node, strArray ) { var closeState = 0 ; var blockStartTag = "<div>" ; var blockEndTag = "</div>" ; if ( liState ) { blockStartTag = "<li>" ; blockEndTag = "</li>" ; closeState = 1 ; } // Are we currently inside a <div> tag now? // If yes, close it at the next double line break. while ( node && node != oEditor.FCK.EditorDocument.body ) { if ( node.tagName.toLowerCase() == 'div' ) { closeState = 1 ; break ; } node = node.parentNode ; } for ( var i = 0 ; i < text.length ; i++ ) { var c = text.charAt( i ) ; if ( c == '\r' ) continue ; if ( c != '\n' ) { strArray.push( c ) ; continue ; } if ( closeState ) { if ( strArray[ strArray.length - 1 ] == blockStartTag ) { // A div tag must have some contents inside for it to be visible. strArray.push( "&nbsp;" ) ; } strArray.push( blockEndTag ) ; } strArray.push( blockStartTag ) ; closeState = 1 ; } if ( closeState ) strArray.push( blockEndTag ) ; } FCKTools._ProcessLineBreaksForBrMode = function( oEditor, text, liState, node, strArray ) { var closeState = 0 ; var blockStartTag = "<br />" ; var blockEndTag = "" ; if ( liState ) { blockStartTag = "<li>" ; blockEndTag = "</li>" ; closeState = 1 ; } for ( var i = 0 ; i < text.length ; i++ ) { var c = text.charAt( i ) ; if ( c == '\r' ) continue ; if ( c != '\n' ) { strArray.push( c ) ; continue ; } if ( closeState && blockEndTag.length ) strArray.push ( blockEndTag ) ; strArray.push( blockStartTag ) ; closeState = 1 ; } } FCKTools.ProcessLineBreaks = function( oEditor, oConfig, text ) { var enterMode = oConfig.EnterMode.toLowerCase() ; var strArray = [] ; // Is the caret or selection inside an <li> tag now? var liState = 0 ; var range = new oEditor.FCKDomRange( oEditor.FCK.EditorWindow ) ; range.MoveToSelection() ; var node = range._Range.startContainer ; while ( node && node.nodeType != 1 ) node = node.parentNode ; if ( node && node.tagName.toLowerCase() == 'li' ) liState = 1 ; if ( enterMode == 'p' ) this._ProcessLineBreaksForPMode( oEditor, text, liState, node, strArray ) ; else if ( enterMode == 'div' ) this._ProcessLineBreaksForDivMode( oEditor, text, liState, node, strArray ) ; else if ( enterMode == 'br' ) this._ProcessLineBreaksForBrMode( oEditor, text, liState, node, strArray ) ; return strArray.join( "" ) ; } /** * Adds an option to a SELECT element. */ FCKTools.AddSelectOption = function( selectElement, optionText, optionValue ) { var oOption = FCKTools.GetElementDocument( selectElement ).createElement( "OPTION" ) ; oOption.text = optionText ; oOption.value = optionValue ; selectElement.options.add(oOption) ; return oOption ; } FCKTools.RunFunction = function( func, thisObject, paramsArray, timerWindow ) { if ( func ) this.SetTimeout( func, 0, thisObject, paramsArray, timerWindow ) ; } FCKTools.SetTimeout = function( func, milliseconds, thisObject, paramsArray, timerWindow ) { return ( timerWindow || window ).setTimeout( function() { if ( paramsArray ) func.apply( thisObject, [].concat( paramsArray ) ) ; else func.apply( thisObject ) ; }, milliseconds ) ; } FCKTools.SetInterval = function( func, milliseconds, thisObject, paramsArray, timerWindow ) { return ( timerWindow || window ).setInterval( function() { func.apply( thisObject, paramsArray || [] ) ; }, milliseconds ) ; } FCKTools.ConvertStyleSizeToHtml = function( size ) { return size.EndsWith( '%' ) ? size : parseInt( size, 10 ) ; } FCKTools.ConvertHtmlSizeToStyle = function( size ) { return size.EndsWith( '%' ) ? size : ( size + 'px' ) ; } // START iCM MODIFICATIONS // Amended to accept a list of one or more ascensor tag names // Amended to check the element itself before working back up through the parent hierarchy FCKTools.GetElementAscensor = function( element, ascensorTagNames ) { // var e = element.parentNode ; var e = element ; var lstTags = "," + ascensorTagNames.toUpperCase() + "," ; while ( e ) { if ( lstTags.indexOf( "," + e.nodeName.toUpperCase() + "," ) != -1 ) return e ; e = e.parentNode ; } return null ; } // END iCM MODIFICATIONS FCKTools.CreateEventListener = function( func, params ) { var f = function() { var aAllParams = [] ; for ( var i = 0 ; i < arguments.length ; i++ ) aAllParams.push( arguments[i] ) ; func.apply( this, aAllParams.concat( params ) ) ; } return f ; } FCKTools.IsStrictMode = function( document ) { // There is no compatMode in Safari, but it seams that it always behave as // CSS1Compat, so let's assume it as the default for that browser. return ( 'CSS1Compat' == ( document.compatMode || ( FCKBrowserInfo.IsSafari ? 'CSS1Compat' : null ) ) ) ; } // Transforms a "arguments" object to an array. FCKTools.ArgumentsToArray = function( args, startIndex, maxLength ) { startIndex = startIndex || 0 ; maxLength = maxLength || args.length ; var argsArray = new Array() ; for ( var i = startIndex ; i < startIndex + maxLength && i < args.length ; i++ ) argsArray.push( args[i] ) ; return argsArray ; } FCKTools.CloneObject = function( sourceObject ) { var fCloneCreator = function() {} ; fCloneCreator.prototype = sourceObject ; return new fCloneCreator ; } // Appends a bogus <br> at the end of the element, if not yet available. FCKTools.AppendBogusBr = function( element ) { if ( !element ) return ; var eLastChild = this.GetLastItem( element.getElementsByTagName('br') ) ; if ( !eLastChild || ( eLastChild.getAttribute( 'type', 2 ) != '_moz' && eLastChild.getAttribute( '_moz_dirty' ) == null ) ) { var doc = this.GetElementDocument( element ) ; if ( FCKBrowserInfo.IsOpera ) element.appendChild( doc.createTextNode('') ) ; else element.appendChild( this.CreateBogusBR( doc ) ) ; } } FCKTools.GetLastItem = function( list ) { if ( list.length > 0 ) return list[ list.length - 1 ] ; return null ; } FCKTools.GetDocumentPosition = function( w, node ) { var x = 0 ; var y = 0 ; var curNode = node ; var prevNode = null ; var curWindow = FCKTools.GetElementWindow( curNode ) ; while ( curNode && !( curWindow == w && ( curNode == w.document.body || curNode == w.document.documentElement ) ) ) { x += curNode.offsetLeft - curNode.scrollLeft ; y += curNode.offsetTop - curNode.scrollTop ; if ( ! FCKBrowserInfo.IsOpera ) { var scrollNode = prevNode ; while ( scrollNode && scrollNode != curNode ) { x -= scrollNode.scrollLeft ; y -= scrollNode.scrollTop ; scrollNode = scrollNode.parentNode ; } } prevNode = curNode ; if ( curNode.offsetParent ) curNode = curNode.offsetParent ; else { if ( curWindow != w ) { curNode = curWindow.frameElement ; prevNode = null ; if ( curNode ) curWindow = curNode.contentWindow.parent ; } else curNode = null ; } } // document.body is a special case when it comes to offsetTop and offsetLeft values. // 1. It matters if document.body itself is a positioned element; // 2. It matters is when we're in IE and the element has no positioned ancestor. // Otherwise the values should be ignored. if ( FCKDomTools.GetCurrentElementStyle( w.document.body, 'position') != 'static' || ( FCKBrowserInfo.IsIE && FCKDomTools.GetPositionedAncestor( node ) == null ) ) { x += w.document.body.offsetLeft ; y += w.document.body.offsetTop ; } return { "x" : x, "y" : y } ; } FCKTools.GetWindowPosition = function( w, node ) { var pos = this.GetDocumentPosition( w, node ) ; var scroll = FCKTools.GetScrollPosition( w ) ; pos.x -= scroll.X ; pos.y -= scroll.Y ; return pos ; } FCKTools.ProtectFormStyles = function( formNode ) { if ( !formNode || formNode.nodeType != 1 || formNode.tagName.toLowerCase() != 'form' ) return [] ; var hijackRecord = [] ; var hijackNames = [ 'style', 'className' ] ; for ( var i = 0 ; i < hijackNames.length ; i++ ) { var name = hijackNames[i] ; if ( formNode.elements.namedItem( name ) ) { var hijackNode = formNode.elements.namedItem( name ) ; hijackRecord.push( [ hijackNode, hijackNode.nextSibling ] ) ; formNode.removeChild( hijackNode ) ; } } return hijackRecord ; } FCKTools.RestoreFormStyles = function( formNode, hijackRecord ) { if ( !formNode || formNode.nodeType != 1 || formNode.tagName.toLowerCase() != 'form' ) return ; if ( hijackRecord.length > 0 ) { for ( var i = hijackRecord.length - 1 ; i >= 0 ; i-- ) { var node = hijackRecord[i][0] ; var sibling = hijackRecord[i][1] ; if ( sibling ) formNode.insertBefore( node, sibling ) ; else formNode.appendChild( node ) ; } } } // Perform a one-step DFS walk. FCKTools.GetNextNode = function( node, limitNode ) { if ( node.firstChild ) return node.firstChild ; else if ( node.nextSibling ) return node.nextSibling ; else { var ancestor = node.parentNode ; while ( ancestor ) { if ( ancestor == limitNode ) return null ; if ( ancestor.nextSibling ) return ancestor.nextSibling ; else ancestor = ancestor.parentNode ; } } return null ; } FCKTools.GetNextTextNode = function( textnode, limitNode, checkStop ) { node = this.GetNextNode( textnode, limitNode ) ; if ( checkStop && node && checkStop( node ) ) return null ; while ( node && node.nodeType != 3 ) { node = this.GetNextNode( node, limitNode ) ; if ( checkStop && node && checkStop( node ) ) return null ; } return node ; } /** * Merge all objects passed by argument into a single object. */ FCKTools.Merge = function() { var args = arguments ; var o = args[0] ; for ( var i = 1 ; i < args.length ; i++ ) { var arg = args[i] ; for ( var p in arg ) o[p] = arg[p] ; } return o ; } /** * Check if the passed argument is a real Array. It may not working when * calling it cross windows. */ FCKTools.IsArray = function( it ) { return ( it instanceof Array ) ; } /** * Appends a "length" property to an object, containing the number of * properties available on it, excluded the append property itself. */ FCKTools.AppendLengthProperty = function( targetObject, propertyName ) { var counter = 0 ; for ( var n in targetObject ) counter++ ; return targetObject[ propertyName || 'length' ] = counter ; } /** * Gets the browser parsed version of a css text (style attribute value). On * some cases, the browser makes changes to the css text, returning a different * value. For example, hexadecimal colors get transformed to rgb(). */ FCKTools.NormalizeCssText = function( unparsedCssText ) { // Injects the style in a temporary span object, so the browser parses it, // retrieving its final format. var tempSpan = document.createElement( 'span' ) ; tempSpan.style.cssText = unparsedCssText ; return tempSpan.style.cssText ; } /** * Binding the "this" reference to an object for a function. */ FCKTools.Bind = function( subject, func ) { return function(){ return func.apply( subject, arguments ) ; } ; } /** * Retrieve the correct "empty iframe" URL for the current browser, which * causes the minimum fuzz (e.g. security warnings in HTTPS, DNS error in * IE5.5, etc.) for that browser, making the iframe ready to DOM use whithout * having to loading an external file. */ FCKTools.GetVoidUrl = function() { if ( FCK_IS_CUSTOM_DOMAIN ) return "javascript: void( function(){" + "document.open();" + "document.write('<html><head><title></title></head><body></body></html>');" + "document.domain = '" + FCK_RUNTIME_DOMAIN + "';" + "document.close();" + "}() ) ;"; if ( FCKBrowserInfo.IsIE ) { if ( FCKBrowserInfo.IsIE7 || !FCKBrowserInfo.IsIE6 ) return "" ; // IE7+ / IE5.5 else return "javascript: '';" ; // IE6+ } return "javascript: void(0);" ; // All other browsers. } FCKTools.ResetStyles = function( element ) { element.style.cssText = 'margin:0;' + 'padding:0;' + 'border:0;' + 'background-color:transparent;' + 'background-image:none;' ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktools.js
JavaScript
asf20
19,573
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKPlugins object that is responsible for loading the Plugins. */ var FCKPlugins = FCK.Plugins = new Object() ; FCKPlugins.ItemsCount = 0 ; FCKPlugins.Items = new Object() ; FCKPlugins.Load = function() { var oItems = FCKPlugins.Items ; // build the plugins collection. for ( var i = 0 ; i < FCKConfig.Plugins.Items.length ; i++ ) { var oItem = FCKConfig.Plugins.Items[i] ; var oPlugin = oItems[ oItem[0] ] = new FCKPlugin( oItem[0], oItem[1], oItem[2] ) ; FCKPlugins.ItemsCount++ ; } // Load all items in the plugins collection. for ( var s in oItems ) oItems[s].Load() ; // This is a self destroyable function (must be called once). FCKPlugins.Load = null ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckplugins.js
JavaScript
asf20
1,355
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Debug window control and operations (empty for the compressed files - #2043). */ var FCKDebug = { Output : function() {}, OutputObject : function() {} } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckdebug_empty.js
JavaScript
asf20
805
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Manage table operations. */ var FCKTableHandler = new Object() ; FCKTableHandler.InsertRow = function( insertBefore ) { // Get the row where the selection is placed in. var oRow = FCKSelection.MoveToAncestorNode( 'TR' ) ; if ( !oRow ) return ; // Create a clone of the row. var oNewRow = oRow.cloneNode( true ) ; // Insert the new row (copy) before of it. oRow.parentNode.insertBefore( oNewRow, oRow ) ; // Clean one of the rows to produce the illusion of inserting an empty row before or after. FCKTableHandler.ClearRow( insertBefore ? oNewRow : oRow ) ; } FCKTableHandler.DeleteRows = function( row ) { // If no row has been passed as a parameter, // then get the row( s ) containing the cells where the selection is placed in. // If user selected multiple rows ( by selecting multiple cells ), walk // the selected cell list and delete the rows containing the selected cells if ( ! row ) { var aCells = FCKTableHandler.GetSelectedCells() ; var aRowsToDelete = new Array() ; //queue up the rows -- it's possible ( and likely ) that we may get duplicates for ( var i = 0; i < aCells.length; i++ ) { var oRow = aCells[i].parentNode ; aRowsToDelete[oRow.rowIndex] = oRow ; } for ( var i = aRowsToDelete.length; i >= 0; i-- ) { if ( aRowsToDelete[i] ) FCKTableHandler.DeleteRows( aRowsToDelete[i] ); } return ; } // Get the row's table. var oTable = FCKTools.GetElementAscensor( row, 'TABLE' ) ; // If just one row is available then delete the entire table. if ( oTable.rows.length == 1 ) { FCKTableHandler.DeleteTable( oTable ) ; return ; } // Delete the row. row.parentNode.removeChild( row ) ; } FCKTableHandler.DeleteTable = function( table ) { // If no table has been passed as a parameter, // then get the table where the selection is placed in. if ( !table ) { table = FCKSelection.GetSelectedElement() ; if ( !table || table.tagName != 'TABLE' ) table = FCKSelection.MoveToAncestorNode( 'TABLE' ) ; } if ( !table ) return ; // Delete the table. FCKSelection.SelectNode( table ) ; FCKSelection.Collapse(); // if the table is wrapped with a singleton <p> ( or something similar ), remove // the surrounding tag -- which likely won't show after deletion anyway if ( table.parentNode.childNodes.length == 1 ) table.parentNode.parentNode.removeChild( table.parentNode ); else table.parentNode.removeChild( table ) ; } FCKTableHandler.InsertColumn = function( insertBefore ) { // Get the cell where the selection is placed in. var oCell = null ; var nodes = this.GetSelectedCells() ; if ( nodes && nodes.length ) oCell = nodes[ insertBefore ? 0 : ( nodes.length - 1 ) ] ; if ( ! oCell ) return ; // Get the cell's table. var oTable = FCKTools.GetElementAscensor( oCell, 'TABLE' ) ; var iIndex = oCell.cellIndex ; // Loop through all rows available in the table. for ( var i = 0 ; i < oTable.rows.length ; i++ ) { // Get the row. var oRow = oTable.rows[i] ; // If the row doesn't have enough cells, ignore it. if ( oRow.cells.length < ( iIndex + 1 ) ) continue ; oCell = oRow.cells[iIndex].cloneNode(false) ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( oCell ) ; // Get back the currently selected cell. var oBaseCell = oRow.cells[iIndex] ; oRow.insertBefore( oCell, ( insertBefore ? oBaseCell : oBaseCell.nextSibling ) ) ; } } FCKTableHandler.DeleteColumns = function( oCell ) { // if user selected multiple cols ( by selecting multiple cells ), walk // the selected cell list and delete the rows containing the selected cells if ( !oCell ) { var aColsToDelete = FCKTableHandler.GetSelectedCells(); for ( var i = aColsToDelete.length; i >= 0; i-- ) { if ( aColsToDelete[i] ) FCKTableHandler.DeleteColumns( aColsToDelete[i] ); } return; } if ( !oCell ) return ; // Get the cell's table. var oTable = FCKTools.GetElementAscensor( oCell, 'TABLE' ) ; // Get the cell index. var iIndex = oCell.cellIndex ; // Loop throw all rows (from down to up, because it's possible that some // rows will be deleted). for ( var i = oTable.rows.length - 1 ; i >= 0 ; i-- ) { // Get the row. var oRow = oTable.rows[i] ; // If the cell to be removed is the first one and the row has just one cell. if ( iIndex == 0 && oRow.cells.length == 1 ) { // Remove the entire row. FCKTableHandler.DeleteRows( oRow ) ; continue ; } // If the cell to be removed exists the delete it. if ( oRow.cells[iIndex] ) oRow.removeChild( oRow.cells[iIndex] ) ; } } FCKTableHandler.InsertCell = function( cell, insertBefore ) { // Get the cell where the selection is placed in. var oCell = null ; var nodes = this.GetSelectedCells() ; if ( nodes && nodes.length ) oCell = nodes[ insertBefore ? 0 : ( nodes.length - 1 ) ] ; if ( ! oCell ) return null ; // Create the new cell element to be added. var oNewCell = FCK.EditorDocument.createElement( 'TD' ) ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( oNewCell ) ; if ( !insertBefore && oCell.cellIndex == oCell.parentNode.cells.length - 1 ) oCell.parentNode.appendChild( oNewCell ) ; else oCell.parentNode.insertBefore( oNewCell, insertBefore ? oCell : oCell.nextSibling ) ; return oNewCell ; } FCKTableHandler.DeleteCell = function( cell ) { // If this is the last cell in the row. if ( cell.parentNode.cells.length == 1 ) { // Delete the entire row. FCKTableHandler.DeleteRows( cell.parentNode ) ; return ; } // Delete the cell from the row. cell.parentNode.removeChild( cell ) ; } FCKTableHandler.DeleteCells = function() { var aCells = FCKTableHandler.GetSelectedCells() ; for ( var i = aCells.length - 1 ; i >= 0 ; i-- ) { FCKTableHandler.DeleteCell( aCells[i] ) ; } } FCKTableHandler._MarkCells = function( cells, label ) { for ( var i = 0 ; i < cells.length ; i++ ) cells[i][label] = true ; } FCKTableHandler._UnmarkCells = function( cells, label ) { for ( var i = 0 ; i < cells.length ; i++ ) { FCKDomTools.ClearElementJSProperty(cells[i], label ) ; } } FCKTableHandler._ReplaceCellsByMarker = function( tableMap, marker, substitute ) { for ( var i = 0 ; i < tableMap.length ; i++ ) { for ( var j = 0 ; j < tableMap[i].length ; j++ ) { if ( tableMap[i][j][marker] ) tableMap[i][j] = substitute ; } } } FCKTableHandler._GetMarkerGeometry = function( tableMap, rowIdx, colIdx, markerName ) { var selectionWidth = 0 ; var selectionHeight = 0 ; var cellsLeft = 0 ; var cellsUp = 0 ; for ( var i = colIdx ; tableMap[rowIdx][i] && tableMap[rowIdx][i][markerName] ; i++ ) selectionWidth++ ; for ( var i = colIdx - 1 ; tableMap[rowIdx][i] && tableMap[rowIdx][i][markerName] ; i-- ) { selectionWidth++ ; cellsLeft++ ; } for ( var i = rowIdx ; tableMap[i] && tableMap[i][colIdx] && tableMap[i][colIdx][markerName] ; i++ ) selectionHeight++ ; for ( var i = rowIdx - 1 ; tableMap[i] && tableMap[i][colIdx] && tableMap[i][colIdx][markerName] ; i-- ) { selectionHeight++ ; cellsUp++ ; } return { 'width' : selectionWidth, 'height' : selectionHeight, 'x' : cellsLeft, 'y' : cellsUp } ; } FCKTableHandler.CheckIsSelectionRectangular = function() { // If every row and column in an area on a plane are of the same width and height, // Then the area is a rectangle. var cells = FCKTableHandler.GetSelectedCells() ; if ( cells.length < 1 ) return false ; // Check if the selected cells are all in the same table section (thead, tfoot or tbody) for (var i = 0; i < cells.length; i++) { if ( cells[i].parentNode.parentNode != cells[0].parentNode.parentNode ) return false ; } this._MarkCells( cells, '_CellSelected' ) ; var tableMap = this._CreateTableMap( cells[0] ) ; var rowIdx = cells[0].parentNode.rowIndex ; var colIdx = this._GetCellIndexSpan( tableMap, rowIdx, cells[0] ) ; var geometry = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_CellSelected' ) ; var baseColIdx = colIdx - geometry.x ; var baseRowIdx = rowIdx - geometry.y ; if ( geometry.width >= geometry.height ) { for ( colIdx = baseColIdx ; colIdx < baseColIdx + geometry.width ; colIdx++ ) { rowIdx = baseRowIdx + ( colIdx - baseColIdx ) % geometry.height ; if ( ! tableMap[rowIdx] || ! tableMap[rowIdx][colIdx] ) { this._UnmarkCells( cells, '_CellSelected' ) ; return false ; } var g = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_CellSelected' ) ; if ( g.width != geometry.width || g.height != geometry.height ) { this._UnmarkCells( cells, '_CellSelected' ) ; return false ; } } } else { for ( rowIdx = baseRowIdx ; rowIdx < baseRowIdx + geometry.height ; rowIdx++ ) { colIdx = baseColIdx + ( rowIdx - baseRowIdx ) % geometry.width ; if ( ! tableMap[rowIdx] || ! tableMap[rowIdx][colIdx] ) { this._UnmarkCells( cells, '_CellSelected' ) ; return false ; } var g = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_CellSelected' ) ; if ( g.width != geometry.width || g.height != geometry.height ) { this._UnmarkCells( cells, '_CellSelected' ) ; return false ; } } } this._UnmarkCells( cells, '_CellSelected' ) ; return true ; } FCKTableHandler.MergeCells = function() { // Get all selected cells. var cells = this.GetSelectedCells() ; if ( cells.length < 2 ) return ; // Assume the selected cells are already in a rectangular geometry. // Because the checking is already done by FCKTableCommand. var refCell = cells[0] ; var tableMap = this._CreateTableMap( refCell ) ; var rowIdx = refCell.parentNode.rowIndex ; var colIdx = this._GetCellIndexSpan( tableMap, rowIdx, refCell ) ; this._MarkCells( cells, '_SelectedCells' ) ; var selectionGeometry = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_SelectedCells' ) ; var baseColIdx = colIdx - selectionGeometry.x ; var baseRowIdx = rowIdx - selectionGeometry.y ; var cellContents = FCKTools.GetElementDocument( refCell ).createDocumentFragment() ; for ( var i = 0 ; i < selectionGeometry.height ; i++ ) { var rowChildNodesCount = 0 ; for ( var j = 0 ; j < selectionGeometry.width ; j++ ) { var currentCell = tableMap[baseRowIdx + i][baseColIdx + j] ; while ( currentCell.childNodes.length > 0 ) { var node = currentCell.removeChild( currentCell.firstChild ) ; if ( node.nodeType != 1 || ( node.getAttribute( 'type', 2 ) != '_moz' && node.getAttribute( '_moz_dirty' ) != null ) ) { cellContents.appendChild( node ) ; rowChildNodesCount++ ; } } } if ( rowChildNodesCount > 0 ) cellContents.appendChild( FCK.EditorDocument.createElement( 'br' ) ) ; } this._ReplaceCellsByMarker( tableMap, '_SelectedCells', refCell ) ; this._UnmarkCells( cells, '_SelectedCells' ) ; this._InstallTableMap( tableMap, refCell.parentNode.parentNode.parentNode ) ; refCell.appendChild( cellContents ) ; if ( FCKBrowserInfo.IsGeckoLike && ( ! refCell.firstChild ) ) FCKTools.AppendBogusBr( refCell ) ; this._MoveCaretToCell( refCell, false ) ; } FCKTableHandler.MergeRight = function() { var target = this.GetMergeRightTarget() ; if ( target == null ) return ; var refCell = target.refCell ; var tableMap = target.tableMap ; var nextCell = target.nextCell ; var cellContents = FCK.EditorDocument.createDocumentFragment() ; while ( nextCell && nextCell.childNodes && nextCell.childNodes.length > 0 ) cellContents.appendChild( nextCell.removeChild( nextCell.firstChild ) ) ; nextCell.parentNode.removeChild( nextCell ) ; refCell.appendChild( cellContents ) ; this._MarkCells( [nextCell], '_Replace' ) ; this._ReplaceCellsByMarker( tableMap, '_Replace', refCell ) ; this._InstallTableMap( tableMap, refCell.parentNode.parentNode.parentNode ) ; this._MoveCaretToCell( refCell, false ) ; } FCKTableHandler.MergeDown = function() { var target = this.GetMergeDownTarget() ; if ( target == null ) return ; var refCell = target.refCell ; var tableMap = target.tableMap ; var nextCell = target.nextCell ; var cellContents = FCKTools.GetElementDocument( refCell ).createDocumentFragment() ; while ( nextCell && nextCell.childNodes && nextCell.childNodes.length > 0 ) cellContents.appendChild( nextCell.removeChild( nextCell.firstChild ) ) ; if ( cellContents.firstChild ) cellContents.insertBefore( FCK.EditorDocument.createElement( 'br' ), cellContents.firstChild ) ; refCell.appendChild( cellContents ) ; this._MarkCells( [nextCell], '_Replace' ) ; this._ReplaceCellsByMarker( tableMap, '_Replace', refCell ) ; this._InstallTableMap( tableMap, refCell.parentNode.parentNode.parentNode ) ; this._MoveCaretToCell( refCell, false ) ; } FCKTableHandler.HorizontalSplitCell = function() { var cells = FCKTableHandler.GetSelectedCells() ; if ( cells.length != 1 ) return ; var refCell = cells[0] ; var tableMap = this._CreateTableMap( refCell ) ; var rowIdx = refCell.parentNode.rowIndex ; var colIdx = FCKTableHandler._GetCellIndexSpan( tableMap, rowIdx, refCell ) ; var cellSpan = isNaN( refCell.colSpan ) ? 1 : refCell.colSpan ; if ( cellSpan > 1 ) { // Splitting a multi-column cell - original cell gets ceil(colSpan/2) columns, // new cell gets floor(colSpan/2). var newCellSpan = Math.ceil( cellSpan / 2 ) ; var newCell = FCK.EditorDocument.createElement( refCell.nodeName ) ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( newCell ) ; var startIdx = colIdx + newCellSpan ; var endIdx = colIdx + cellSpan ; var rowSpan = isNaN( refCell.rowSpan ) ? 1 : refCell.rowSpan ; for ( var r = rowIdx ; r < rowIdx + rowSpan ; r++ ) { for ( var i = startIdx ; i < endIdx ; i++ ) tableMap[r][i] = newCell ; } } else { // Splitting a single-column cell - add a new cell, and expand // cells crossing the same column. var newTableMap = [] ; for ( var i = 0 ; i < tableMap.length ; i++ ) { var newRow = tableMap[i].slice( 0, colIdx ) ; if ( tableMap[i].length <= colIdx ) { newTableMap.push( newRow ) ; continue ; } if ( tableMap[i][colIdx] == refCell ) { newRow.push( refCell ) ; newRow.push( FCK.EditorDocument.createElement( refCell.nodeName ) ) ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( newRow[newRow.length - 1] ) ; } else { newRow.push( tableMap[i][colIdx] ) ; newRow.push( tableMap[i][colIdx] ) ; } for ( var j = colIdx + 1 ; j < tableMap[i].length ; j++ ) newRow.push( tableMap[i][j] ) ; newTableMap.push( newRow ) ; } tableMap = newTableMap ; } this._InstallTableMap( tableMap, refCell.parentNode.parentNode.parentNode ) ; } FCKTableHandler.VerticalSplitCell = function() { var cells = FCKTableHandler.GetSelectedCells() ; if ( cells.length != 1 ) return ; var currentCell = cells[0] ; var tableMap = this._CreateTableMap( currentCell ) ; var currentRowIndex = currentCell.parentNode.rowIndex ; var cellIndex = FCKTableHandler._GetCellIndexSpan( tableMap, currentRowIndex, currentCell ) ; // Save current cell colSpan var currentColSpan = isNaN( currentCell.colSpan ) ? 1 : currentCell.colSpan ; var currentRowSpan = currentCell.rowSpan ; if ( isNaN( currentRowSpan ) ) currentRowSpan = 1 ; if ( currentRowSpan > 1 ) { // 1. Set the current cell's rowSpan to 1. currentCell.rowSpan = Math.ceil( currentRowSpan / 2 ) ; // 2. Find the appropriate place to insert a new cell at the next row. var newCellRowIndex = currentRowIndex + Math.ceil( currentRowSpan / 2 ) ; var oRow = tableMap[newCellRowIndex] ; var insertMarker = null ; for ( var i = cellIndex+1 ; i < oRow.length ; i++ ) { if ( oRow[i].parentNode.rowIndex == newCellRowIndex ) { insertMarker = oRow[i] ; break ; } } // 3. Insert the new cell to the indicated place, with the appropriate rowSpan and colSpan, next row. var newCell = FCK.EditorDocument.createElement( currentCell.nodeName ) ; newCell.rowSpan = Math.floor( currentRowSpan / 2 ) ; if ( currentColSpan > 1 ) newCell.colSpan = currentColSpan ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( newCell ) ; currentCell.parentNode.parentNode.parentNode.rows[newCellRowIndex].insertBefore( newCell, insertMarker ) ; } else { // 1. Insert a new row. var newSectionRowIdx = currentCell.parentNode.sectionRowIndex + 1 ; var newRow = FCK.EditorDocument.createElement( 'tr' ) ; var tSection = currentCell.parentNode.parentNode ; if ( tSection.rows.length > newSectionRowIdx ) tSection.insertBefore( newRow, tSection.rows[newSectionRowIdx] ) ; else tSection.appendChild( newRow ) ; // 2. +1 to rowSpan for all cells crossing currentCell's row. for ( var i = 0 ; i < tableMap[currentRowIndex].length ; ) { var colSpan = tableMap[currentRowIndex][i].colSpan ; if ( isNaN( colSpan ) || colSpan < 1 ) colSpan = 1 ; if ( i == cellIndex ) { i += colSpan ; continue ; } var rowSpan = tableMap[currentRowIndex][i].rowSpan ; if ( isNaN( rowSpan ) ) rowSpan = 1 ; tableMap[currentRowIndex][i].rowSpan = rowSpan + 1 ; i += colSpan ; } // 3. Insert a new cell to new row. Set colSpan on the new cell. var newCell = FCK.EditorDocument.createElement( currentCell.nodeName ) ; if ( currentColSpan > 1 ) newCell.colSpan = currentColSpan ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( newCell ) ; newRow.appendChild( newCell ) ; } } // Get the cell index from a TableMap. FCKTableHandler._GetCellIndexSpan = function( tableMap, rowIndex, cell ) { if ( tableMap.length < rowIndex + 1 ) return null ; var oRow = tableMap[ rowIndex ] ; for ( var c = 0 ; c < oRow.length ; c++ ) { if ( oRow[c] == cell ) return c ; } return null ; } // Get the cell location from a TableMap. Returns an array with an [x,y] location FCKTableHandler._GetCellLocation = function( tableMap, cell ) { for ( var i = 0 ; i < tableMap.length; i++ ) { for ( var c = 0 ; c < tableMap[i].length ; c++ ) { if ( tableMap[i][c] == cell ) return [i,c]; } } return null ; } // This function is quite hard to explain. It creates a matrix representing all cells in a table. // The difference here is that the "spanned" cells (colSpan and rowSpan) are duplicated on the matrix // cells that are "spanned". For example, a row with 3 cells where the second cell has colSpan=2 and rowSpan=3 // will produce a bi-dimensional matrix with the following values (representing the cells): // Cell1, Cell2, Cell2, Cell3 // Cell4, Cell2, Cell2, Cell5 // Cell6, Cell2, Cell2, Cell7 FCKTableHandler._CreateTableMap = function( refCell ) { var table = (refCell.nodeName == 'TABLE' ? refCell : refCell.parentNode.parentNode.parentNode ) ; var aRows = table.rows ; // Row and Column counters. var r = -1 ; var aMap = new Array() ; for ( var i = 0 ; i < aRows.length ; i++ ) { r++ ; if ( !aMap[r] ) aMap[r] = new Array() ; var c = -1 ; for ( var j = 0 ; j < aRows[i].cells.length ; j++ ) { var oCell = aRows[i].cells[j] ; c++ ; while ( aMap[r][c] ) c++ ; var iColSpan = isNaN( oCell.colSpan ) ? 1 : oCell.colSpan ; var iRowSpan = isNaN( oCell.rowSpan ) ? 1 : oCell.rowSpan ; for ( var rs = 0 ; rs < iRowSpan ; rs++ ) { if ( !aMap[r + rs] ) aMap[r + rs] = new Array() ; for ( var cs = 0 ; cs < iColSpan ; cs++ ) { aMap[r + rs][c + cs] = aRows[i].cells[j] ; } } c += iColSpan - 1 ; } } return aMap ; } // This function is the inverse of _CreateTableMap - it takes in a table map and converts it to an HTML table. FCKTableHandler._InstallTableMap = function( tableMap, table ) { // Workaround for #1917 : MSIE will always report a cell's rowSpan as 1 as long // as the cell is not attached to a row. So we'll need an alternative attribute // for storing the calculated rowSpan in IE. var rowSpanAttr = FCKBrowserInfo.IsIE ? "_fckrowspan" : "rowSpan" ; // Disconnect all the cells in tableMap from their parents, set all colSpan and rowSpan attributes to 1. for ( var i = 0 ; i < tableMap.length ; i++ ) { for ( var j = 0 ; j < tableMap[i].length ; j++ ) { var cell = tableMap[i][j] ; if ( cell.parentNode ) cell.parentNode.removeChild( cell ) ; cell.colSpan = cell[rowSpanAttr] = 1 ; } } // Scan by rows and set colSpan. var maxCol = 0 ; for ( var i = 0 ; i < tableMap.length ; i++ ) { for ( var j = 0 ; j < tableMap[i].length ; j++ ) { var cell = tableMap[i][j] ; if ( ! cell) continue ; if ( j > maxCol ) maxCol = j ; if ( cell._colScanned === true ) continue ; if ( tableMap[i][j-1] == cell ) cell.colSpan++ ; if ( tableMap[i][j+1] != cell ) cell._colScanned = true ; } } // Scan by columns and set rowSpan. for ( var i = 0 ; i <= maxCol ; i++ ) { for ( var j = 0 ; j < tableMap.length ; j++ ) { if ( ! tableMap[j] ) continue ; var cell = tableMap[j][i] ; if ( ! cell || cell._rowScanned === true ) continue ; if ( tableMap[j-1] && tableMap[j-1][i] == cell ) cell[rowSpanAttr]++ ; if ( ! tableMap[j+1] || tableMap[j+1][i] != cell ) cell._rowScanned = true ; } } // Clear all temporary flags. for ( var i = 0 ; i < tableMap.length ; i++ ) { for ( var j = 0 ; j < tableMap[i].length ; j++) { var cell = tableMap[i][j] ; FCKDomTools.ClearElementJSProperty(cell, '_colScanned' ) ; FCKDomTools.ClearElementJSProperty(cell, '_rowScanned' ) ; } } // Insert physical rows and columns to the table. for ( var i = 0 ; i < tableMap.length ; i++ ) { var rowObj = FCK.EditorDocument.createElement( 'tr' ) ; for ( var j = 0 ; j < tableMap[i].length ; ) { var cell = tableMap[i][j] ; if ( tableMap[i-1] && tableMap[i-1][j] == cell ) { j += cell.colSpan ; continue ; } rowObj.appendChild( cell ) ; if ( rowSpanAttr != 'rowSpan' ) { cell.rowSpan = cell[rowSpanAttr] ; cell.removeAttribute( rowSpanAttr ) ; } j += cell.colSpan ; if ( cell.colSpan == 1 ) cell.removeAttribute( 'colspan' ) ; if ( cell.rowSpan == 1 ) cell.removeAttribute( 'rowspan' ) ; } if ( FCKBrowserInfo.IsIE ) { table.rows[i].replaceNode( rowObj ) ; } else { table.rows[i].innerHTML = '' ; FCKDomTools.MoveChildren( rowObj, table.rows[i] ) ; } } } FCKTableHandler._MoveCaretToCell = function ( refCell, toStart ) { var range = new FCKDomRange( FCK.EditorWindow ) ; range.MoveToNodeContents( refCell ) ; range.Collapse( toStart ) ; range.Select() ; } FCKTableHandler.ClearRow = function( tr ) { // Get the array of row's cells. var aCells = tr.cells ; // Replace the contents of each cell with "nothing". for ( var i = 0 ; i < aCells.length ; i++ ) { aCells[i].innerHTML = '' ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( aCells[i] ) ; } } FCKTableHandler.GetMergeRightTarget = function() { var cells = this.GetSelectedCells() ; if ( cells.length != 1 ) return null ; var refCell = cells[0] ; var tableMap = this._CreateTableMap( refCell ) ; var rowIdx = refCell.parentNode.rowIndex ; var colIdx = this._GetCellIndexSpan( tableMap, rowIdx, refCell ) ; var nextColIdx = colIdx + ( isNaN( refCell.colSpan ) ? 1 : refCell.colSpan ) ; var nextCell = tableMap[rowIdx][nextColIdx] ; if ( ! nextCell ) return null ; // The two cells must have the same vertical geometry, otherwise merging does not make sense. this._MarkCells( [refCell, nextCell], '_SizeTest' ) ; var refGeometry = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_SizeTest' ) ; var nextGeometry = this._GetMarkerGeometry( tableMap, rowIdx, nextColIdx, '_SizeTest' ) ; this._UnmarkCells( [refCell, nextCell], '_SizeTest' ) ; if ( refGeometry.height != nextGeometry.height || refGeometry.y != nextGeometry.y ) return null ; return { 'refCell' : refCell, 'nextCell' : nextCell, 'tableMap' : tableMap } ; } FCKTableHandler.GetMergeDownTarget = function() { var cells = this.GetSelectedCells() ; if ( cells.length != 1 ) return null ; var refCell = cells[0] ; var tableMap = this._CreateTableMap( refCell ) ; var rowIdx = refCell.parentNode.rowIndex ; var colIdx = this._GetCellIndexSpan( tableMap, rowIdx, refCell ) ; var newRowIdx = rowIdx + ( isNaN( refCell.rowSpan ) ? 1 : refCell.rowSpan ) ; if ( ! tableMap[newRowIdx] ) return null ; var nextCell = tableMap[newRowIdx][colIdx] ; if ( ! nextCell ) return null ; // Check if the selected cells are both in the same table section (thead, tfoot or tbody). if ( refCell.parentNode.parentNode != nextCell.parentNode.parentNode ) return null ; // The two cells must have the same horizontal geometry, otherwise merging does not makes sense. this._MarkCells( [refCell, nextCell], '_SizeTest' ) ; var refGeometry = this._GetMarkerGeometry( tableMap, rowIdx, colIdx, '_SizeTest' ) ; var nextGeometry = this._GetMarkerGeometry( tableMap, newRowIdx, colIdx, '_SizeTest' ) ; this._UnmarkCells( [refCell, nextCell], '_SizeTest' ) ; if ( refGeometry.width != nextGeometry.width || refGeometry.x != nextGeometry.x ) return null ; return { 'refCell' : refCell, 'nextCell' : nextCell, 'tableMap' : tableMap } ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktablehandler.js
JavaScript
asf20
26,593
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Contains browser detection information. */ var s = navigator.userAgent.toLowerCase() ; var FCKBrowserInfo = { IsIE : /*@cc_on!@*/false, IsIE7 : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1], 10 ) >= 7 ), IsIE6 : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1], 10 ) >= 6 ), IsSafari : s.Contains(' applewebkit/'), // Read "IsWebKit" IsOpera : !!window.opera, IsAIR : s.Contains(' adobeair/'), IsMac : s.Contains('macintosh') } ; // Completes the browser info with further Gecko information. (function( browserInfo ) { browserInfo.IsGecko = ( navigator.product == 'Gecko' ) && !browserInfo.IsSafari && !browserInfo.IsOpera ; browserInfo.IsGeckoLike = ( browserInfo.IsGecko || browserInfo.IsSafari || browserInfo.IsOpera ) ; if ( browserInfo.IsGecko ) { var geckoMatch = s.match( /rv:(\d+\.\d+)/ ) ; var geckoVersion = geckoMatch && parseFloat( geckoMatch[1] ) ; // Actually "10" refers to Gecko versions before Firefox 1.5, when // Gecko 1.8 (build 20051111) has been released. // Some browser (like Mozilla 1.7.13) may have a Gecko build greater // than 20051111, so we must also check for the revision number not to // be 1.7 (we are assuming that rv < 1.7 will not have build > 20051111). if ( geckoVersion ) { browserInfo.IsGecko10 = ( geckoVersion < 1.8 ) ; browserInfo.IsGecko19 = ( geckoVersion > 1.8 ) ; } } })(FCKBrowserInfo) ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckbrowserinfo.js
JavaScript
asf20
2,088
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKXHtml object, responsible for the XHTML operations. * IE specific. */ FCKXHtml._GetMainXmlString = function() { return this.MainNode.xml ; } FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node, nodeName ) { var aAttributes = htmlNode.attributes, bHasStyle ; for ( var n = 0 ; n < aAttributes.length ; n++ ) { var oAttribute = aAttributes[n] ; if ( oAttribute.specified ) { var sAttName = oAttribute.nodeName.toLowerCase() ; var sAttValue ; // Ignore any attribute starting with "_fck". if ( sAttName.StartsWith( '_fck' ) ) continue ; // The following must be done because of a bug on IE regarding the style // attribute. It returns "null" for the nodeValue. else if ( sAttName == 'style' ) { // Just mark it to do it later in this function. bHasStyle = true ; continue ; } // There are two cases when the oAttribute.nodeValue must be used: // - for the "class" attribute // - for events attributes (on IE only). else if ( sAttName == 'class' ) { sAttValue = oAttribute.nodeValue.replace( FCKRegexLib.FCK_Class, '' ) ; if ( sAttValue.length == 0 ) continue ; } else if ( sAttName.indexOf('on') == 0 ) sAttValue = oAttribute.nodeValue ; else if ( nodeName == 'body' && sAttName == 'contenteditable' ) continue ; // XHTML doens't support attribute minimization like "CHECKED". It must be transformed to checked="checked". else if ( oAttribute.nodeValue === true ) sAttValue = sAttName ; else { // We must use getAttribute to get it exactly as it is defined. // There are some rare cases that IE throws an error here, so we must try/catch. try { sAttValue = htmlNode.getAttribute( sAttName, 2 ) ; } catch (e) {} } this._AppendAttribute( node, sAttName, sAttValue || oAttribute.nodeValue ) ; } } // IE loses the style attribute in JavaScript-created elements tags. (#2390) if ( bHasStyle || htmlNode.style.cssText.length > 0 ) { var data = FCKTools.ProtectFormStyles( htmlNode ) ; var sStyleValue = htmlNode.style.cssText.replace( FCKRegexLib.StyleProperties, FCKTools.ToLowerCase ) ; FCKTools.RestoreFormStyles( htmlNode, data ) ; this._AppendAttribute( node, 'style', sStyleValue ) ; } } // On very rare cases, IE is loosing the "align" attribute for DIV. (right align and apply bulleted list) FCKXHtml.TagProcessors['div'] = function( node, htmlNode ) { if ( htmlNode.align.length > 0 ) FCKXHtml._AppendAttribute( node, 'align', htmlNode.align ) ; node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; return node ; } // IE automatically changes <FONT> tags to <FONT size=+0>. FCKXHtml.TagProcessors['font'] = function( node, htmlNode ) { if ( node.attributes.length == 0 ) node = FCKXHtml.XML.createDocumentFragment() ; node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; } FCKXHtml.TagProcessors['form'] = function( node, htmlNode ) { if ( htmlNode.acceptCharset && htmlNode.acceptCharset.length > 0 && htmlNode.acceptCharset != 'UNKNOWN' ) FCKXHtml._AppendAttribute( node, 'accept-charset', htmlNode.acceptCharset ) ; // IE has a bug and htmlNode.attributes['name'].specified=false if there is // no element with id="name" inside the form (#360 and SF-BUG-1155726). var nameAtt = htmlNode.attributes['name'] ; if ( nameAtt && nameAtt.value.length > 0 ) FCKXHtml._AppendAttribute( node, 'name', nameAtt.value ) ; node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; return node ; } // IE doens't see the value attribute as an attribute for the <INPUT> tag. FCKXHtml.TagProcessors['input'] = function( node, htmlNode ) { if ( htmlNode.name ) FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ; if ( htmlNode.value && !node.attributes.getNamedItem( 'value' ) ) FCKXHtml._AppendAttribute( node, 'value', htmlNode.value ) ; if ( !node.attributes.getNamedItem( 'type' ) ) FCKXHtml._AppendAttribute( node, 'type', 'text' ) ; return node ; } FCKXHtml.TagProcessors['label'] = function( node, htmlNode ) { if ( htmlNode.htmlFor.length > 0 ) FCKXHtml._AppendAttribute( node, 'for', htmlNode.htmlFor ) ; node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; } // Fix behavior for IE, it doesn't read back the .name on newly created maps FCKXHtml.TagProcessors['map'] = function( node, htmlNode ) { if ( ! node.attributes.getNamedItem( 'name' ) ) { var name = htmlNode.name ; if ( name ) FCKXHtml._AppendAttribute( node, 'name', name ) ; } node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; return node ; } FCKXHtml.TagProcessors['meta'] = function( node, htmlNode ) { var oHttpEquiv = node.attributes.getNamedItem( 'http-equiv' ) ; if ( oHttpEquiv == null || oHttpEquiv.value.length == 0 ) { // Get the http-equiv value from the outerHTML. var sHttpEquiv = htmlNode.outerHTML.match( FCKRegexLib.MetaHttpEquiv ) ; if ( sHttpEquiv ) { sHttpEquiv = sHttpEquiv[1] ; FCKXHtml._AppendAttribute( node, 'http-equiv', sHttpEquiv ) ; } } return node ; } // IE ignores the "SELECTED" attribute so we must add it manually. FCKXHtml.TagProcessors['option'] = function( node, htmlNode ) { if ( htmlNode.selected && !node.attributes.getNamedItem( 'selected' ) ) FCKXHtml._AppendAttribute( node, 'selected', 'selected' ) ; node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; } // IE doens't hold the name attribute as an attribute for the <TEXTAREA> and <SELECT> tags. FCKXHtml.TagProcessors['textarea'] = FCKXHtml.TagProcessors['select'] = function( node, htmlNode ) { if ( htmlNode.name ) FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ; node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckxhtml_ie.js
JavaScript
asf20
6,606
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Utility functions to work with the DOM. */ var FCKDomTools = { /** * Move all child nodes from one node to another. */ MoveChildren : function( source, target, toTargetStart ) { if ( source == target ) return ; var eChild ; if ( toTargetStart ) { while ( (eChild = source.lastChild) ) target.insertBefore( source.removeChild( eChild ), target.firstChild ) ; } else { while ( (eChild = source.firstChild) ) target.appendChild( source.removeChild( eChild ) ) ; } }, MoveNode : function( source, target, toTargetStart ) { if ( toTargetStart ) target.insertBefore( FCKDomTools.RemoveNode( source ), target.firstChild ) ; else target.appendChild( FCKDomTools.RemoveNode( source ) ) ; }, // Remove blank spaces from the beginning and the end of the contents of a node. TrimNode : function( node ) { this.LTrimNode( node ) ; this.RTrimNode( node ) ; }, LTrimNode : function( node ) { var eChildNode ; while ( (eChildNode = node.firstChild) ) { if ( eChildNode.nodeType == 3 ) { var sTrimmed = eChildNode.nodeValue.LTrim() ; var iOriginalLength = eChildNode.nodeValue.length ; if ( sTrimmed.length == 0 ) { node.removeChild( eChildNode ) ; continue ; } else if ( sTrimmed.length < iOriginalLength ) { eChildNode.splitText( iOriginalLength - sTrimmed.length ) ; node.removeChild( node.firstChild ) ; } } break ; } }, RTrimNode : function( node ) { var eChildNode ; while ( (eChildNode = node.lastChild) ) { if ( eChildNode.nodeType == 3 ) { var sTrimmed = eChildNode.nodeValue.RTrim() ; var iOriginalLength = eChildNode.nodeValue.length ; if ( sTrimmed.length == 0 ) { // If the trimmed text node is empty, just remove it. // Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#81). eChildNode.parentNode.removeChild( eChildNode ) ; continue ; } else if ( sTrimmed.length < iOriginalLength ) { // If the trimmed text length is less than the original // length, strip all spaces from the end by splitting // the text and removing the resulting useless node. eChildNode.splitText( sTrimmed.length ) ; // Use "node.lastChild.parentNode" instead of "node" to avoid IE bug (#81). node.lastChild.parentNode.removeChild( node.lastChild ) ; } } break ; } if ( !FCKBrowserInfo.IsIE && !FCKBrowserInfo.IsOpera ) { eChildNode = node.lastChild ; if ( eChildNode && eChildNode.nodeType == 1 && eChildNode.nodeName.toLowerCase() == 'br' ) { // Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#324). eChildNode.parentNode.removeChild( eChildNode ) ; } } }, RemoveNode : function( node, excludeChildren ) { if ( excludeChildren ) { // Move all children before the node. var eChild ; while ( (eChild = node.firstChild) ) node.parentNode.insertBefore( node.removeChild( eChild ), node ) ; } return node.parentNode.removeChild( node ) ; }, GetFirstChild : function( node, childNames ) { // If childNames is a string, transform it in a Array. if ( typeof ( childNames ) == 'string' ) childNames = [ childNames ] ; var eChild = node.firstChild ; while( eChild ) { if ( eChild.nodeType == 1 && eChild.tagName.Equals.apply( eChild.tagName, childNames ) ) return eChild ; eChild = eChild.nextSibling ; } return null ; }, GetLastChild : function( node, childNames ) { // If childNames is a string, transform it in a Array. if ( typeof ( childNames ) == 'string' ) childNames = [ childNames ] ; var eChild = node.lastChild ; while( eChild ) { if ( eChild.nodeType == 1 && ( !childNames || eChild.tagName.Equals( childNames ) ) ) return eChild ; eChild = eChild.previousSibling ; } return null ; }, /* * Gets the previous element (nodeType=1) in the source order. Returns * "null" If no element is found. * @param {Object} currentNode The node to start searching from. * @param {Boolean} ignoreSpaceTextOnly Sets how text nodes will be * handled. If set to "true", only white spaces text nodes * will be ignored, while non white space text nodes will stop * the search, returning null. If "false" or omitted, all * text nodes are ignored. * @param {string[]} stopSearchElements An array of element names that * will cause the search to stop when found, returning null. * May be omitted (or null). * @param {string[]} ignoreElements An array of element names that * must be ignored during the search. */ GetPreviousSourceElement : function( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) { if ( !currentNode ) return null ; if ( stopSearchElements && currentNode.nodeType == 1 && currentNode.nodeName.IEquals( stopSearchElements ) ) return null ; if ( currentNode.previousSibling ) currentNode = currentNode.previousSibling ; else return this.GetPreviousSourceElement( currentNode.parentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ; while ( currentNode ) { if ( currentNode.nodeType == 1 ) { if ( stopSearchElements && currentNode.nodeName.IEquals( stopSearchElements ) ) break ; if ( !ignoreElements || !currentNode.nodeName.IEquals( ignoreElements ) ) return currentNode ; } else if ( ignoreSpaceTextOnly && currentNode.nodeType == 3 && currentNode.nodeValue.RTrim().length > 0 ) break ; if ( currentNode.lastChild ) currentNode = currentNode.lastChild ; else return this.GetPreviousSourceElement( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ; } return null ; }, /* * Gets the next element (nodeType=1) in the source order. Returns * "null" If no element is found. * @param {Object} currentNode The node to start searching from. * @param {Boolean} ignoreSpaceTextOnly Sets how text nodes will be * handled. If set to "true", only white spaces text nodes * will be ignored, while non white space text nodes will stop * the search, returning null. If "false" or omitted, all * text nodes are ignored. * @param {string[]} stopSearchElements An array of element names that * will cause the search to stop when found, returning null. * May be omitted (or null). * @param {string[]} ignoreElements An array of element names that * must be ignored during the search. */ GetNextSourceElement : function( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements, startFromSibling ) { while( ( currentNode = this.GetNextSourceNode( currentNode, startFromSibling ) ) ) // Only one "=". { if ( currentNode.nodeType == 1 ) { if ( stopSearchElements && currentNode.nodeName.IEquals( stopSearchElements ) ) break ; if ( ignoreElements && currentNode.nodeName.IEquals( ignoreElements ) ) return this.GetNextSourceElement( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ; return currentNode ; } else if ( ignoreSpaceTextOnly && currentNode.nodeType == 3 && currentNode.nodeValue.RTrim().length > 0 ) break ; } return null ; }, /* * Get the next DOM node available in source order. */ GetNextSourceNode : function( currentNode, startFromSibling, nodeType, stopSearchNode ) { if ( !currentNode ) return null ; var node ; if ( !startFromSibling && currentNode.firstChild ) node = currentNode.firstChild ; else { if ( stopSearchNode && currentNode == stopSearchNode ) return null ; node = currentNode.nextSibling ; if ( !node && ( !stopSearchNode || stopSearchNode != currentNode.parentNode ) ) return this.GetNextSourceNode( currentNode.parentNode, true, nodeType, stopSearchNode ) ; } if ( nodeType && node && node.nodeType != nodeType ) return this.GetNextSourceNode( node, false, nodeType, stopSearchNode ) ; return node ; }, /* * Get the next DOM node available in source order. */ GetPreviousSourceNode : function( currentNode, startFromSibling, nodeType, stopSearchNode ) { if ( !currentNode ) return null ; var node ; if ( !startFromSibling && currentNode.lastChild ) node = currentNode.lastChild ; else { if ( stopSearchNode && currentNode == stopSearchNode ) return null ; node = currentNode.previousSibling ; if ( !node && ( !stopSearchNode || stopSearchNode != currentNode.parentNode ) ) return this.GetPreviousSourceNode( currentNode.parentNode, true, nodeType, stopSearchNode ) ; } if ( nodeType && node && node.nodeType != nodeType ) return this.GetPreviousSourceNode( node, false, nodeType, stopSearchNode ) ; return node ; }, // Inserts a element after a existing one. InsertAfterNode : function( existingNode, newNode ) { return existingNode.parentNode.insertBefore( newNode, existingNode.nextSibling ) ; }, GetParents : function( node ) { var parents = new Array() ; while ( node ) { parents.unshift( node ) ; node = node.parentNode ; } return parents ; }, GetCommonParents : function( node1, node2 ) { var p1 = this.GetParents( node1 ) ; var p2 = this.GetParents( node2 ) ; var retval = [] ; for ( var i = 0 ; i < p1.length ; i++ ) { if ( p1[i] == p2[i] ) retval.push( p1[i] ) ; } return retval ; }, GetCommonParentNode : function( node1, node2, tagList ) { var tagMap = {} ; if ( ! tagList.pop ) tagList = [ tagList ] ; while ( tagList.length > 0 ) tagMap[tagList.pop().toLowerCase()] = 1 ; var commonParents = this.GetCommonParents( node1, node2 ) ; var currentParent = null ; while ( ( currentParent = commonParents.pop() ) ) { if ( tagMap[currentParent.nodeName.toLowerCase()] ) return currentParent ; } return null ; }, GetIndexOf : function( node ) { var currentNode = node.parentNode ? node.parentNode.firstChild : null ; var currentIndex = -1 ; while ( currentNode ) { currentIndex++ ; if ( currentNode == node ) return currentIndex ; currentNode = currentNode.nextSibling ; } return -1 ; }, PaddingNode : null, EnforcePaddingNode : function( doc, tagName ) { // In IE it can happen when the page is reloaded that doc or doc.body is null, so exit here try { if ( !doc || !doc.body ) return ; } catch (e) { return ; } this.CheckAndRemovePaddingNode( doc, tagName, true ) ; try { if ( doc.body.lastChild && ( doc.body.lastChild.nodeType != 1 || doc.body.lastChild.tagName.toLowerCase() == tagName.toLowerCase() ) ) return ; } catch (e) { return ; } var node = doc.createElement( tagName ) ; if ( FCKBrowserInfo.IsGecko && FCKListsLib.NonEmptyBlockElements[ tagName ] ) FCKTools.AppendBogusBr( node ) ; this.PaddingNode = node ; if ( doc.body.childNodes.length == 1 && doc.body.firstChild.nodeType == 1 && doc.body.firstChild.tagName.toLowerCase() == 'br' && ( doc.body.firstChild.getAttribute( '_moz_dirty' ) != null || doc.body.firstChild.getAttribute( 'type' ) == '_moz' ) ) doc.body.replaceChild( node, doc.body.firstChild ) ; else doc.body.appendChild( node ) ; }, CheckAndRemovePaddingNode : function( doc, tagName, dontRemove ) { var paddingNode = this.PaddingNode ; if ( ! paddingNode ) return ; // If the padding node is changed, remove its status as a padding node. try { if ( paddingNode.parentNode != doc.body || paddingNode.tagName.toLowerCase() != tagName || ( paddingNode.childNodes.length > 1 ) || ( paddingNode.firstChild && paddingNode.firstChild.nodeValue != '\xa0' && String(paddingNode.firstChild.tagName).toLowerCase() != 'br' ) ) { this.PaddingNode = null ; return ; } } catch (e) { this.PaddingNode = null ; return ; } // Now we're sure the padding node exists, and it is unchanged, and it // isn't the only node in doc.body, remove it. if ( !dontRemove ) { if ( paddingNode.parentNode.childNodes.length > 1 ) paddingNode.parentNode.removeChild( paddingNode ) ; this.PaddingNode = null ; } }, HasAttribute : function( element, attributeName ) { if ( element.hasAttribute ) return element.hasAttribute( attributeName ) ; else { var att = element.attributes[ attributeName ] ; return ( att != undefined && att.specified ) ; } }, /** * Checks if an element has "specified" attributes. */ HasAttributes : function( element ) { var attributes = element.attributes ; for ( var i = 0 ; i < attributes.length ; i++ ) { if ( FCKBrowserInfo.IsIE && attributes[i].nodeName == 'class' ) { // IE has a strange bug. If calling removeAttribute('className'), // the attributes collection will still contain the "class" // attribute, which will be marked as "specified", even if the // outerHTML of the element is not displaying the class attribute. // Note : I was not able to reproduce it outside the editor, // but I've faced it while working on the TC of #1391. if ( element.className.length > 0 ) return true ; } else if ( attributes[i].specified ) return true ; } return false ; }, /** * Remove an attribute from an element. */ RemoveAttribute : function( element, attributeName ) { if ( FCKBrowserInfo.IsIE && attributeName.toLowerCase() == 'class' ) attributeName = 'className' ; return element.removeAttribute( attributeName, 0 ) ; }, /** * Removes an array of attributes from an element */ RemoveAttributes : function (element, aAttributes ) { for ( var i = 0 ; i < aAttributes.length ; i++ ) this.RemoveAttribute( element, aAttributes[i] ); }, GetAttributeValue : function( element, att ) { var attName = att ; if ( typeof att == 'string' ) att = element.attributes[ att ] ; else attName = att.nodeName ; if ( att && att.specified ) { // IE returns "null" for the nodeValue of a "style" attribute. if ( attName == 'style' ) return element.style.cssText ; // There are two cases when the nodeValue must be used: // - for the "class" attribute (all browsers). // - for events attributes (IE only). else if ( attName == 'class' || attName.indexOf('on') == 0 ) return att.nodeValue ; else { // Use getAttribute to get its value exactly as it is // defined. return element.getAttribute( attName, 2 ) ; } } return null ; }, /** * Checks whether one element contains the other. */ Contains : function( mainElement, otherElement ) { // IE supports contains, but only for element nodes. if ( mainElement.contains && otherElement.nodeType == 1 ) return mainElement.contains( otherElement ) ; while ( ( otherElement = otherElement.parentNode ) ) // Only one "=" { if ( otherElement == mainElement ) return true ; } return false ; }, /** * Breaks a parent element in the position of one of its contained elements. * For example, in the following case: * <b>This <i>is some<span /> sample</i> test text</b> * If element = <span />, we have these results: * <b>This <i>is some</i><span /><i> sample</i> test text</b> (If parent = <i>) * <b>This <i>is some</i></b><span /><b><i> sample</i> test text</b> (If parent = <b>) */ BreakParent : function( element, parent, reusableRange ) { var range = reusableRange || new FCKDomRange( FCKTools.GetElementWindow( element ) ) ; // We'll be extracting part of this element, so let's use our // range to get the correct piece. range.SetStart( element, 4 ) ; range.SetEnd( parent, 4 ) ; // Extract it. var docFrag = range.ExtractContents() ; // Move the element outside the broken element. range.InsertNode( element.parentNode.removeChild( element ) ) ; // Re-insert the extracted piece after the element. docFrag.InsertAfterNode( element ) ; range.Release( !!reusableRange ) ; }, /** * Retrieves a uniquely identifiable tree address of a DOM tree node. * The tree address returns is an array of integers, with each integer * indicating a child index from a DOM tree node, starting from * document.documentElement. * * For example, assuming <body> is the second child from <html> (<head> * being the first), and we'd like to address the third child under the * fourth child of body, the tree address returned would be: * [1, 3, 2] * * The tree address cannot be used for finding back the DOM tree node once * the DOM tree structure has been modified. */ GetNodeAddress : function( node, normalized ) { var retval = [] ; while ( node && node != FCKTools.GetElementDocument( node ).documentElement ) { var parentNode = node.parentNode ; var currentIndex = -1 ; for( var i = 0 ; i < parentNode.childNodes.length ; i++ ) { var candidate = parentNode.childNodes[i] ; if ( normalized === true && candidate.nodeType == 3 && candidate.previousSibling && candidate.previousSibling.nodeType == 3 ) continue; currentIndex++ ; if ( parentNode.childNodes[i] == node ) break ; } retval.unshift( currentIndex ) ; node = node.parentNode ; } return retval ; }, /** * The reverse transformation of FCKDomTools.GetNodeAddress(). This * function returns the DOM node pointed to by its index address. */ GetNodeFromAddress : function( doc, addr, normalized ) { var cursor = doc.documentElement ; for ( var i = 0 ; i < addr.length ; i++ ) { var target = addr[i] ; if ( ! normalized ) { cursor = cursor.childNodes[target] ; continue ; } var currentIndex = -1 ; for (var j = 0 ; j < cursor.childNodes.length ; j++ ) { var candidate = cursor.childNodes[j] ; if ( normalized === true && candidate.nodeType == 3 && candidate.previousSibling && candidate.previousSibling.nodeType == 3 ) continue ; currentIndex++ ; if ( currentIndex == target ) { cursor = candidate ; break ; } } } return cursor ; }, CloneElement : function( element ) { element = element.cloneNode( false ) ; // The "id" attribute should never be cloned to avoid duplication. element.removeAttribute( 'id', false ) ; return element ; }, ClearElementJSProperty : function( element, attrName ) { if ( FCKBrowserInfo.IsIE ) element.removeAttribute( attrName ) ; else delete element[attrName] ; }, SetElementMarker : function ( markerObj, element, attrName, value) { var id = String( parseInt( Math.random() * 0xffffffff, 10 ) ) ; element._FCKMarkerId = id ; element[attrName] = value ; if ( ! markerObj[id] ) markerObj[id] = { 'element' : element, 'markers' : {} } ; markerObj[id]['markers'][attrName] = value ; }, ClearElementMarkers : function( markerObj, element, clearMarkerObj ) { var id = element._FCKMarkerId ; if ( ! id ) return ; this.ClearElementJSProperty( element, '_FCKMarkerId' ) ; for ( var j in markerObj[id]['markers'] ) this.ClearElementJSProperty( element, j ) ; if ( clearMarkerObj ) delete markerObj[id] ; }, ClearAllMarkers : function( markerObj ) { for ( var i in markerObj ) this.ClearElementMarkers( markerObj, markerObj[i]['element'], true ) ; }, /** * Convert a DOM list tree into a data structure that is easier to * manipulate. This operation should be non-intrusive in the sense that it * does not change the DOM tree, with the exception that it may add some * markers to the list item nodes when markerObj is specified. */ ListToArray : function( listNode, markerObj, baseArray, baseIndentLevel, grandparentNode ) { if ( ! listNode.nodeName.IEquals( ['ul', 'ol'] ) ) return [] ; if ( ! baseIndentLevel ) baseIndentLevel = 0 ; if ( ! baseArray ) baseArray = [] ; // Iterate over all list items to get their contents and look for inner lists. for ( var i = 0 ; i < listNode.childNodes.length ; i++ ) { var listItem = listNode.childNodes[i] ; if ( ! listItem.nodeName.IEquals( 'li' ) ) continue ; var itemObj = { 'parent' : listNode, 'indent' : baseIndentLevel, 'contents' : [] } ; if ( ! grandparentNode ) { itemObj.grandparent = listNode.parentNode ; if ( itemObj.grandparent && itemObj.grandparent.nodeName.IEquals( 'li' ) ) itemObj.grandparent = itemObj.grandparent.parentNode ; } else itemObj.grandparent = grandparentNode ; if ( markerObj ) this.SetElementMarker( markerObj, listItem, '_FCK_ListArray_Index', baseArray.length ) ; baseArray.push( itemObj ) ; for ( var j = 0 ; j < listItem.childNodes.length ; j++ ) { var child = listItem.childNodes[j] ; if ( child.nodeName.IEquals( ['ul', 'ol'] ) ) // Note the recursion here, it pushes inner list items with // +1 indentation in the correct order. this.ListToArray( child, markerObj, baseArray, baseIndentLevel + 1, itemObj.grandparent ) ; else itemObj.contents.push( child ) ; } } return baseArray ; }, // Convert our internal representation of a list back to a DOM forest. ArrayToList : function( listArray, markerObj, baseIndex ) { if ( baseIndex == undefined ) baseIndex = 0 ; if ( ! listArray || listArray.length < baseIndex + 1 ) return null ; var doc = FCKTools.GetElementDocument( listArray[baseIndex].parent ) ; var retval = doc.createDocumentFragment() ; var rootNode = null ; var currentIndex = baseIndex ; var indentLevel = Math.max( listArray[baseIndex].indent, 0 ) ; var currentListItem = null ; while ( true ) { var item = listArray[currentIndex] ; if ( item.indent == indentLevel ) { if ( ! rootNode || listArray[currentIndex].parent.nodeName != rootNode.nodeName ) { rootNode = listArray[currentIndex].parent.cloneNode( false ) ; retval.appendChild( rootNode ) ; } currentListItem = doc.createElement( 'li' ) ; rootNode.appendChild( currentListItem ) ; for ( var i = 0 ; i < item.contents.length ; i++ ) currentListItem.appendChild( item.contents[i].cloneNode( true ) ) ; currentIndex++ ; } else if ( item.indent == Math.max( indentLevel, 0 ) + 1 ) { var listData = this.ArrayToList( listArray, null, currentIndex ) ; currentListItem.appendChild( listData.listNode ) ; currentIndex = listData.nextIndex ; } else if ( item.indent == -1 && baseIndex == 0 && item.grandparent ) { var currentListItem ; if ( item.grandparent.nodeName.IEquals( ['ul', 'ol'] ) ) currentListItem = doc.createElement( 'li' ) ; else { if ( FCKConfig.EnterMode.IEquals( ['div', 'p'] ) && ! item.grandparent.nodeName.IEquals( 'td' ) ) currentListItem = doc.createElement( FCKConfig.EnterMode ) ; else currentListItem = doc.createDocumentFragment() ; } for ( var i = 0 ; i < item.contents.length ; i++ ) currentListItem.appendChild( item.contents[i].cloneNode( true ) ) ; if ( currentListItem.nodeType == 11 ) { if ( currentListItem.lastChild && currentListItem.lastChild.getAttribute && currentListItem.lastChild.getAttribute( 'type' ) == '_moz' ) currentListItem.removeChild( currentListItem.lastChild ); currentListItem.appendChild( doc.createElement( 'br' ) ) ; } if ( currentListItem.nodeName.IEquals( FCKConfig.EnterMode ) && currentListItem.firstChild ) { this.TrimNode( currentListItem ) ; if ( FCKListsLib.BlockBoundaries[currentListItem.firstChild.nodeName.toLowerCase()] ) { var tmp = doc.createDocumentFragment() ; while ( currentListItem.firstChild ) tmp.appendChild( currentListItem.removeChild( currentListItem.firstChild ) ) ; currentListItem = tmp ; } } if ( FCKBrowserInfo.IsGeckoLike && currentListItem.nodeName.IEquals( ['div', 'p'] ) ) FCKTools.AppendBogusBr( currentListItem ) ; retval.appendChild( currentListItem ) ; rootNode = null ; currentIndex++ ; } else return null ; if ( listArray.length <= currentIndex || Math.max( listArray[currentIndex].indent, 0 ) < indentLevel ) { break ; } } // Clear marker attributes for the new list tree made of cloned nodes, if any. if ( markerObj ) { var currentNode = retval.firstChild ; while ( currentNode ) { if ( currentNode.nodeType == 1 ) this.ClearElementMarkers( markerObj, currentNode ) ; currentNode = this.GetNextSourceNode( currentNode ) ; } } return { 'listNode' : retval, 'nextIndex' : currentIndex } ; }, /** * Get the next sibling node for a node. If "includeEmpties" is false, * only element or non empty text nodes are returned. */ GetNextSibling : function( node, includeEmpties ) { node = node.nextSibling ; while ( node && !includeEmpties && node.nodeType != 1 && ( node.nodeType != 3 || node.nodeValue.length == 0 ) ) node = node.nextSibling ; return node ; }, /** * Get the previous sibling node for a node. If "includeEmpties" is false, * only element or non empty text nodes are returned. */ GetPreviousSibling : function( node, includeEmpties ) { node = node.previousSibling ; while ( node && !includeEmpties && node.nodeType != 1 && ( node.nodeType != 3 || node.nodeValue.length == 0 ) ) node = node.previousSibling ; return node ; }, /** * Checks if an element has no "useful" content inside of it * node tree. No "useful" content means empty text node or a signle empty * inline node. * elementCheckCallback may point to a function that returns a boolean * indicating that a child element must be considered in the element check. */ CheckIsEmptyElement : function( element, elementCheckCallback ) { var child = element.firstChild ; var elementChild ; while ( child ) { if ( child.nodeType == 1 ) { if ( elementChild || !FCKListsLib.InlineNonEmptyElements[ child.nodeName.toLowerCase() ] ) return false ; if ( !elementCheckCallback || elementCheckCallback( child ) === true ) elementChild = child ; } else if ( child.nodeType == 3 && child.nodeValue.length > 0 ) return false ; child = child.nextSibling ; } return elementChild ? this.CheckIsEmptyElement( elementChild, elementCheckCallback ) : true ; }, SetElementStyles : function( element, styleDict ) { var style = element.style ; for ( var styleName in styleDict ) style[ styleName ] = styleDict[ styleName ] ; }, SetOpacity : function( element, opacity ) { if ( FCKBrowserInfo.IsIE ) { opacity = Math.round( opacity * 100 ) ; element.style.filter = ( opacity > 100 ? '' : 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + opacity + ')' ) ; } else element.style.opacity = opacity ; }, GetCurrentElementStyle : function( element, propertyName ) { if ( FCKBrowserInfo.IsIE ) return element.currentStyle[ propertyName ] ; else return element.ownerDocument.defaultView.getComputedStyle( element, '' ).getPropertyValue( propertyName ) ; }, GetPositionedAncestor : function( element ) { var currentElement = element ; while ( currentElement != FCKTools.GetElementDocument( currentElement ).documentElement ) { if ( this.GetCurrentElementStyle( currentElement, 'position' ) != 'static' ) return currentElement ; if ( currentElement == FCKTools.GetElementDocument( currentElement ).documentElement && currentWindow != w ) currentElement = currentWindow.frameElement ; else currentElement = currentElement.parentNode ; } return null ; }, /** * Current implementation for ScrollIntoView (due to #1462 and #2279). We * don't have a complete implementation here, just the things that fit our * needs. */ ScrollIntoView : function( element, alignTop ) { // Get the element window. var window = FCKTools.GetElementWindow( element ) ; var windowHeight = FCKTools.GetViewPaneSize( window ).Height ; // Starts the offset that will be scrolled with the negative value of // the visible window height. var offset = windowHeight * -1 ; // Appends the height it we are about to align the bottoms. if ( alignTop === false ) { offset += element.offsetHeight || 0 ; // Consider the margin in the scroll, which is ok for our current // needs, but needs investigation if we will be using this function // in other places. offset += parseInt( this.GetCurrentElementStyle( element, 'marginBottom' ) || 0, 10 ) || 0 ; } // Appends the offsets for the entire element hierarchy. var elementPosition = FCKTools.GetDocumentPosition( window, element ) ; offset += elementPosition.y ; // Scroll the window to the desired position, if not already visible. var currentScroll = FCKTools.GetScrollPosition( window ).Y ; if ( offset > 0 && ( offset > currentScroll || offset < currentScroll - windowHeight ) ) window.scrollTo( 0, offset ) ; }, /** * Check if the element can be edited inside the browser. */ CheckIsEditable : function( element ) { // Get the element name. var nodeName = element.nodeName.toLowerCase() ; // Get the element DTD (defaults to span for unknown elements). var childDTD = FCK.DTD[ nodeName ] || FCK.DTD.span ; // In the DTD # == text node. return ( childDTD['#'] && !FCKListsLib.NonEditableElements[ nodeName ] ) ; }, GetSelectedDivContainers : function() { var currentBlocks = [] ; var range = new FCKDomRange( FCK.EditorWindow ) ; range.MoveToSelection() ; var startNode = range.GetTouchedStartNode() ; var endNode = range.GetTouchedEndNode() ; var currentNode = startNode ; if ( startNode == endNode ) { while ( endNode.nodeType == 1 && endNode.lastChild ) endNode = endNode.lastChild ; endNode = FCKDomTools.GetNextSourceNode( endNode ) ; } while ( currentNode && currentNode != endNode ) { if ( currentNode.nodeType != 3 || !/^[ \t\n]*$/.test( currentNode.nodeValue ) ) { var path = new FCKElementPath( currentNode ) ; var blockLimit = path.BlockLimit ; if ( blockLimit && blockLimit.nodeName.IEquals( 'div' ) && currentBlocks.IndexOf( blockLimit ) == -1 ) currentBlocks.push( blockLimit ) ; } currentNode = FCKDomTools.GetNextSourceNode( currentNode ) ; } return currentBlocks ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckdomtools.js
JavaScript
asf20
31,932
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKURLParams object that is used to get all parameters * passed by the URL QueryString (after the "?"). */ // #### URLParams: holds all URL passed parameters (like ?Param1=Value1&Param2=Value2) var FCKURLParams = new Object() ; (function() { var aParams = document.location.search.substr(1).split('&') ; for ( var i = 0 ; i < aParams.length ; i++ ) { var aParam = aParams[i].split('=') ; var sParamName = decodeURIComponent( aParam[0] ) ; var sParamValue = decodeURIComponent( aParam[1] ) ; FCKURLParams[ sParamName ] = sParamValue ; } })();
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckurlparams.js
JavaScript
asf20
1,223
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * This file define the HTML entities handled by the editor. */ var FCKXHtmlEntities = new Object() ; FCKXHtmlEntities.Initialize = function() { if ( FCKXHtmlEntities.Entities ) return ; var sChars = '' ; var oEntities, e ; if ( FCKConfig.ProcessHTMLEntities ) { FCKXHtmlEntities.Entities = { // Latin-1 Entities ' ':'nbsp', '¡':'iexcl', '¢':'cent', '£':'pound', '¤':'curren', '¥':'yen', '¦':'brvbar', '§':'sect', '¨':'uml', '©':'copy', 'ª':'ordf', '«':'laquo', '¬':'not', '­':'shy', '®':'reg', '¯':'macr', '°':'deg', '±':'plusmn', '²':'sup2', '³':'sup3', '´':'acute', 'µ':'micro', '¶':'para', '·':'middot', '¸':'cedil', '¹':'sup1', 'º':'ordm', '»':'raquo', '¼':'frac14', '½':'frac12', '¾':'frac34', '¿':'iquest', '×':'times', '÷':'divide', // Symbols 'ƒ':'fnof', '•':'bull', '…':'hellip', '′':'prime', '″':'Prime', '‾':'oline', '⁄':'frasl', '℘':'weierp', 'ℑ':'image', 'ℜ':'real', '™':'trade', 'ℵ':'alefsym', '←':'larr', '↑':'uarr', '→':'rarr', '↓':'darr', '↔':'harr', '↵':'crarr', '⇐':'lArr', '⇑':'uArr', '⇒':'rArr', '⇓':'dArr', '⇔':'hArr', '∀':'forall', '∂':'part', '∃':'exist', '∅':'empty', '∇':'nabla', '∈':'isin', '∉':'notin', '∋':'ni', '∏':'prod', '∑':'sum', '−':'minus', '∗':'lowast', '√':'radic', '∝':'prop', '∞':'infin', '∠':'ang', '∧':'and', '∨':'or', '∩':'cap', '∪':'cup', '∫':'int', '∴':'there4', '∼':'sim', '≅':'cong', '≈':'asymp', '≠':'ne', '≡':'equiv', '≤':'le', '≥':'ge', '⊂':'sub', '⊃':'sup', '⊄':'nsub', '⊆':'sube', '⊇':'supe', '⊕':'oplus', '⊗':'otimes', '⊥':'perp', '⋅':'sdot', '\u2308':'lceil', '\u2309':'rceil', '\u230a':'lfloor', '\u230b':'rfloor', '\u2329':'lang', '\u232a':'rang', '◊':'loz', '♠':'spades', '♣':'clubs', '♥':'hearts', '♦':'diams', // Other Special Characters '"':'quot', // '&':'amp', // This entity is automatically handled by the XHTML parser. // '<':'lt', // This entity is automatically handled by the XHTML parser. '>':'gt', // Opera and Safari don't encode it in their implementation 'ˆ':'circ', '˜':'tilde', ' ':'ensp', ' ':'emsp', ' ':'thinsp', '‌':'zwnj', '‍':'zwj', '‎':'lrm', '‏':'rlm', '–':'ndash', '—':'mdash', '‘':'lsquo', '’':'rsquo', '‚':'sbquo', '“':'ldquo', '”':'rdquo', '„':'bdquo', '†':'dagger', '‡':'Dagger', '‰':'permil', '‹':'lsaquo', '›':'rsaquo', '€':'euro' } ; // Process Base Entities. for ( e in FCKXHtmlEntities.Entities ) sChars += e ; // Include Latin Letters Entities. if ( FCKConfig.IncludeLatinEntities ) { oEntities = { 'À':'Agrave', 'Á':'Aacute', 'Â':'Acirc', 'Ã':'Atilde', 'Ä':'Auml', 'Å':'Aring', 'Æ':'AElig', 'Ç':'Ccedil', 'È':'Egrave', 'É':'Eacute', 'Ê':'Ecirc', 'Ë':'Euml', 'Ì':'Igrave', 'Í':'Iacute', 'Î':'Icirc', 'Ï':'Iuml', 'Ð':'ETH', 'Ñ':'Ntilde', 'Ò':'Ograve', 'Ó':'Oacute', 'Ô':'Ocirc', 'Õ':'Otilde', 'Ö':'Ouml', 'Ø':'Oslash', 'Ù':'Ugrave', 'Ú':'Uacute', 'Û':'Ucirc', 'Ü':'Uuml', 'Ý':'Yacute', 'Þ':'THORN', 'ß':'szlig', 'à':'agrave', 'á':'aacute', 'â':'acirc', 'ã':'atilde', 'ä':'auml', 'å':'aring', 'æ':'aelig', 'ç':'ccedil', 'è':'egrave', 'é':'eacute', 'ê':'ecirc', 'ë':'euml', 'ì':'igrave', 'í':'iacute', 'î':'icirc', 'ï':'iuml', 'ð':'eth', 'ñ':'ntilde', 'ò':'ograve', 'ó':'oacute', 'ô':'ocirc', 'õ':'otilde', 'ö':'ouml', 'ø':'oslash', 'ù':'ugrave', 'ú':'uacute', 'û':'ucirc', 'ü':'uuml', 'ý':'yacute', 'þ':'thorn', 'ÿ':'yuml', 'Œ':'OElig', 'œ':'oelig', 'Š':'Scaron', 'š':'scaron', 'Ÿ':'Yuml' } ; for ( e in oEntities ) { FCKXHtmlEntities.Entities[ e ] = oEntities[ e ] ; sChars += e ; } oEntities = null ; } // Include Greek Letters Entities. if ( FCKConfig.IncludeGreekEntities ) { oEntities = { 'Α':'Alpha', 'Β':'Beta', 'Γ':'Gamma', 'Δ':'Delta', 'Ε':'Epsilon', 'Ζ':'Zeta', 'Η':'Eta', 'Θ':'Theta', 'Ι':'Iota', 'Κ':'Kappa', 'Λ':'Lambda', 'Μ':'Mu', 'Ν':'Nu', 'Ξ':'Xi', 'Ο':'Omicron', 'Π':'Pi', 'Ρ':'Rho', 'Σ':'Sigma', 'Τ':'Tau', 'Υ':'Upsilon', 'Φ':'Phi', 'Χ':'Chi', 'Ψ':'Psi', 'Ω':'Omega', 'α':'alpha', 'β':'beta', 'γ':'gamma', 'δ':'delta', 'ε':'epsilon', 'ζ':'zeta', 'η':'eta', 'θ':'theta', 'ι':'iota', 'κ':'kappa', 'λ':'lambda', 'μ':'mu', 'ν':'nu', 'ξ':'xi', 'ο':'omicron', 'π':'pi', 'ρ':'rho', 'ς':'sigmaf', 'σ':'sigma', 'τ':'tau', 'υ':'upsilon', 'φ':'phi', 'χ':'chi', 'ψ':'psi', 'ω':'omega', '\u03d1':'thetasym', '\u03d2':'upsih', '\u03d6':'piv' } ; for ( e in oEntities ) { FCKXHtmlEntities.Entities[ e ] = oEntities[ e ] ; sChars += e ; } oEntities = null ; } } else { FCKXHtmlEntities.Entities = { '>':'gt' // Opera and Safari don't encode it in their implementation } ; sChars = '>'; // Even if we are not processing the entities, we must render the &nbsp; // correctly. As we don't want HTML entities, let's use its numeric // representation (&#160). sChars += ' ' ; } // Create the Regex used to find entities in the text. var sRegexPattern = '[' + sChars + ']' ; if ( FCKConfig.ProcessNumericEntities ) sRegexPattern = '[^ -~]|' + sRegexPattern ; var sAdditional = FCKConfig.AdditionalNumericEntities ; if ( sAdditional && sAdditional.length > 0 ) sRegexPattern += '|' + FCKConfig.AdditionalNumericEntities ; FCKXHtmlEntities.EntitiesRegex = new RegExp( sRegexPattern, 'g' ) ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckxhtmlentities.js
JavaScript
asf20
7,296
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Active selection functions. (IE specific implementation) */ // Get the selection type. FCKSelection.GetType = function() { // It is possible that we can still get a text range object even when type=='None' is returned by IE. // So we'd better check the object returned by createRange() rather than by looking at the type. try { var ieType = FCKSelection.GetSelection().type ; if ( ieType == 'Control' || ieType == 'Text' ) return ieType ; if ( this.GetSelection().createRange().parentElement ) return 'Text' ; } catch(e) { // Nothing to do, it will return None properly. } return 'None' ; } ; // Retrieves the selected element (if any), just in the case that a single // element (object like and image or a table) is selected. FCKSelection.GetSelectedElement = function() { if ( this.GetType() == 'Control' ) { var oRange = this.GetSelection().createRange() ; if ( oRange && oRange.item ) return this.GetSelection().createRange().item(0) ; } return null ; } ; FCKSelection.GetParentElement = function() { switch ( this.GetType() ) { case 'Control' : var el = FCKSelection.GetSelectedElement() ; return el ? el.parentElement : null ; case 'None' : return null ; default : return this.GetSelection().createRange().parentElement() ; } } ; FCKSelection.GetBoundaryParentElement = function( startBoundary ) { switch ( this.GetType() ) { case 'Control' : var el = FCKSelection.GetSelectedElement() ; return el ? el.parentElement : null ; case 'None' : return null ; default : var doc = FCK.EditorDocument ; var range = doc.selection.createRange() ; range.collapse( startBoundary !== false ) ; var el = range.parentElement() ; // It may happen that range is comming from outside "doc", so we // must check it (#1204). return FCKTools.GetElementDocument( el ) == doc ? el : null ; } } ; FCKSelection.SelectNode = function( node ) { FCK.Focus() ; this.GetSelection().empty() ; var oRange ; try { // Try to select the node as a control. oRange = FCK.EditorDocument.body.createControlRange() ; oRange.addElement( node ) ; } catch(e) { // If failed, select it as a text range. oRange = FCK.EditorDocument.body.createTextRange() ; oRange.moveToElementText( node ) ; } oRange.select() ; } ; FCKSelection.Collapse = function( toStart ) { FCK.Focus() ; if ( this.GetType() == 'Text' ) { var oRange = this.GetSelection().createRange() ; oRange.collapse( toStart == null || toStart === true ) ; oRange.select() ; } } ; // The "nodeTagName" parameter must be Upper Case. FCKSelection.HasAncestorNode = function( nodeTagName ) { var oContainer ; if ( this.GetSelection().type == "Control" ) { oContainer = this.GetSelectedElement() ; } else { var oRange = this.GetSelection().createRange() ; oContainer = oRange.parentElement() ; } while ( oContainer ) { if ( oContainer.nodeName.IEquals( nodeTagName ) ) return true ; oContainer = oContainer.parentNode ; } return false ; } ; // The "nodeTagName" parameter must be UPPER CASE. // It can be also an array of names FCKSelection.MoveToAncestorNode = function( nodeTagName ) { var oNode, oRange ; if ( ! FCK.EditorDocument ) return null ; if ( this.GetSelection().type == "Control" ) { oRange = this.GetSelection().createRange() ; for ( i = 0 ; i < oRange.length ; i++ ) { if (oRange(i).parentNode) { oNode = oRange(i).parentNode ; break ; } } } else { oRange = this.GetSelection().createRange() ; oNode = oRange.parentElement() ; } while ( oNode && !oNode.nodeName.Equals( nodeTagName ) ) oNode = oNode.parentNode ; return oNode ; } ; FCKSelection.Delete = function() { // Gets the actual selection. var oSel = this.GetSelection() ; // Deletes the actual selection contents. if ( oSel.type.toLowerCase() != "none" ) { oSel.clear() ; } return oSel ; } ; /** * Returns the native selection object. */ FCKSelection.GetSelection = function() { this.Restore() ; return FCK.EditorDocument.selection ; } FCKSelection.Save = function( lock ) { var editorDocument = FCK.EditorDocument ; if ( !editorDocument ) return ; // Avoid saving again a selection while a dialog is open #2616 if ( this.locked ) return ; this.locked = !!lock ; var selection = editorDocument.selection ; var range ; if ( selection ) { // The call might fail if the document doesn't have the focus (#1801), // but we don't want to modify the current selection (#2495) with a call to FCK.Focus() ; try { range = selection.createRange() ; } catch(e) {} // Ensure that the range comes from the editor document. if ( range ) { if ( range.parentElement && FCKTools.GetElementDocument( range.parentElement() ) != editorDocument ) range = null ; else if ( range.item && FCKTools.GetElementDocument( range.item(0) )!= editorDocument ) range = null ; } } this.SelectionData = range ; } FCKSelection._GetSelectionDocument = function( selection ) { var range = selection.createRange() ; if ( !range ) return null; else if ( range.item ) return FCKTools.GetElementDocument( range.item( 0 ) ) ; else return FCKTools.GetElementDocument( range.parentElement() ) ; } FCKSelection.Restore = function() { if ( this.SelectionData ) { FCK.IsSelectionChangeLocked = true ; try { // Don't repeat the restore process if the editor document is already selected. if ( String( this._GetSelectionDocument( FCK.EditorDocument.selection ).body.contentEditable ) == 'true' ) { FCK.IsSelectionChangeLocked = false ; return ; } this.SelectionData.select() ; } catch ( e ) {} FCK.IsSelectionChangeLocked = false ; } } FCKSelection.Release = function() { this.locked = false ; delete this.SelectionData ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckselection_ie.js
JavaScript
asf20
6,710
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Handles styles in a give document. */ var FCKStyles = FCK.Styles = { _Callbacks : {}, _ObjectStyles : {}, ApplyStyle : function( style ) { if ( typeof style == 'string' ) style = this.GetStyles()[ style ] ; if ( style ) { if ( style.GetType() == FCK_STYLE_OBJECT ) style.ApplyToObject( FCKSelection.GetSelectedElement() ) ; else style.ApplyToSelection( FCK.EditorWindow ) ; FCK.Events.FireEvent( 'OnSelectionChange' ) ; } }, RemoveStyle : function( style ) { if ( typeof style == 'string' ) style = this.GetStyles()[ style ] ; if ( style ) { style.RemoveFromSelection( FCK.EditorWindow ) ; FCK.Events.FireEvent( 'OnSelectionChange' ) ; } }, /** * Defines a callback function to be called when the current state of a * specific style changes. */ AttachStyleStateChange : function( styleName, callback, callbackOwner ) { var callbacks = this._Callbacks[ styleName ] ; if ( !callbacks ) callbacks = this._Callbacks[ styleName ] = [] ; callbacks.push( [ callback, callbackOwner ] ) ; }, CheckSelectionChanges : function() { var startElement = FCKSelection.GetBoundaryParentElement( true ) ; if ( !startElement ) return ; // Walks the start node parents path, checking all styles that are being listened. var path = new FCKElementPath( startElement ) ; var styles = this.GetStyles() ; for ( var styleName in styles ) { var callbacks = this._Callbacks[ styleName ] ; if ( callbacks ) { var style = styles[ styleName ] ; var state = style.CheckActive( path ) ; if ( state != ( style._LastState || null ) ) { style._LastState = state ; for ( var i = 0 ; i < callbacks.length ; i++ ) { var callback = callbacks[i][0] ; var callbackOwner = callbacks[i][1] ; callback.call( callbackOwner || window, styleName, state ) ; } } } } }, CheckStyleInSelection : function( styleName ) { return false ; }, _GetRemoveFormatTagsRegex : function () { var regex = new RegExp( '^(?:' + FCKConfig.RemoveFormatTags.replace( /,/g,'|' ) + ')$', 'i' ) ; return (this._GetRemoveFormatTagsRegex = function() { return regex ; }) && regex ; }, /** * Remove all styles from the current selection. * TODO: * - This is almost a duplication of FCKStyle.RemoveFromRange. We should * try to merge things. */ RemoveAll : function() { var range = new FCKDomRange( FCK.EditorWindow ) ; range.MoveToSelection() ; if ( range.CheckIsCollapsed() ) return ; // Expand the range, if inside inline element boundaries. range.Expand( 'inline_elements' ) ; // Get the bookmark nodes. // Bookmark the range so we can re-select it after processing. var bookmark = range.CreateBookmark( true ) ; // The style will be applied within the bookmark boundaries. var startNode = range.GetBookmarkNode( bookmark, true ) ; var endNode = range.GetBookmarkNode( bookmark, false ) ; range.Release( true ) ; var tagsRegex = this._GetRemoveFormatTagsRegex() ; // We need to check the selection boundaries (bookmark spans) to break // the code in a way that we can properly remove partially selected nodes. // For example, removing a <b> style from // <b>This is [some text</b> to show <b>the] problem</b> // ... where [ and ] represent the selection, must result: // <b>This is </b>[some text to show the]<b> problem</b> // The strategy is simple, we just break the partial nodes before the // removal logic, having something that could be represented this way: // <b>This is </b>[<b>some text</b> to show <b>the</b>]<b> problem</b> // Let's start checking the start boundary. var path = new FCKElementPath( startNode ) ; var pathElements = path.Elements ; var pathElement ; for ( var i = 1 ; i < pathElements.length ; i++ ) { pathElement = pathElements[i] ; if ( pathElement == path.Block || pathElement == path.BlockLimit ) break ; // If this element can be removed (even partially). if ( tagsRegex.test( pathElement.nodeName ) ) FCKDomTools.BreakParent( startNode, pathElement, range ) ; } // Now the end boundary. path = new FCKElementPath( endNode ) ; pathElements = path.Elements ; for ( var i = 1 ; i < pathElements.length ; i++ ) { pathElement = pathElements[i] ; if ( pathElement == path.Block || pathElement == path.BlockLimit ) break ; elementName = pathElement.nodeName.toLowerCase() ; // If this element can be removed (even partially). if ( tagsRegex.test( pathElement.nodeName ) ) FCKDomTools.BreakParent( endNode, pathElement, range ) ; } // Navigate through all nodes between the bookmarks. var currentNode = FCKDomTools.GetNextSourceNode( startNode, true, 1 ) ; while ( currentNode ) { // If we have reached the end of the selection, stop looping. if ( currentNode == endNode ) break ; // Cache the next node to be processed. Do it now, because // currentNode may be removed. var nextNode = FCKDomTools.GetNextSourceNode( currentNode, false, 1 ) ; // Remove elements nodes that match with this style rules. if ( tagsRegex.test( currentNode.nodeName ) ) FCKDomTools.RemoveNode( currentNode, true ) ; else FCKDomTools.RemoveAttributes( currentNode, FCKConfig.RemoveAttributesArray ); currentNode = nextNode ; } range.SelectBookmark( bookmark ) ; FCK.Events.FireEvent( 'OnSelectionChange' ) ; }, GetStyle : function( styleName ) { return this.GetStyles()[ styleName ] ; }, GetStyles : function() { var styles = this._GetStyles ; if ( !styles ) { styles = this._GetStyles = FCKTools.Merge( this._LoadStylesCore(), this._LoadStylesCustom(), this._LoadStylesXml() ) ; } return styles ; }, CheckHasObjectStyle : function( elementName ) { return !!this._ObjectStyles[ elementName ] ; }, _LoadStylesCore : function() { var styles = {}; var styleDefs = FCKConfig.CoreStyles ; for ( var styleName in styleDefs ) { // Core styles are prefixed with _FCK_. var style = styles[ '_FCK_' + styleName ] = new FCKStyle( styleDefs[ styleName ] ) ; style.IsCore = true ; } return styles ; }, _LoadStylesCustom : function() { var styles = {}; var styleDefs = FCKConfig.CustomStyles ; if ( styleDefs ) { for ( var styleName in styleDefs ) { var style = styles[ styleName ] = new FCKStyle( styleDefs[ styleName ] ) ; style.Name = styleName ; } } return styles ; }, _LoadStylesXml : function() { var styles = {}; var stylesXmlPath = FCKConfig.StylesXmlPath ; if ( !stylesXmlPath || stylesXmlPath.length == 0 ) return styles ; // Load the XML file into a FCKXml object. var xml = new FCKXml() ; xml.LoadUrl( stylesXmlPath ) ; var stylesXmlObj = FCKXml.TransformToObject( xml.SelectSingleNode( 'Styles' ) ) ; // Get the "Style" nodes defined in the XML file. var styleNodes = stylesXmlObj.$Style ; // Check that it did contain some valid nodes if ( !styleNodes ) return styles ; // Add each style to our "Styles" collection. for ( var i = 0 ; i < styleNodes.length ; i++ ) { var styleNode = styleNodes[i] ; var element = ( styleNode.element || '' ).toLowerCase() ; if ( element.length == 0 ) throw( 'The element name is required. Error loading "' + stylesXmlPath + '"' ) ; var styleDef = { Element : element, Attributes : {}, Styles : {}, Overrides : [] } ; // Get the attributes defined for the style (if any). var attNodes = styleNode.$Attribute || [] ; // Add the attributes to the style definition object. for ( var j = 0 ; j < attNodes.length ; j++ ) { styleDef.Attributes[ attNodes[j].name ] = attNodes[j].value ; } // Get the styles defined for the style (if any). var cssStyleNodes = styleNode.$Style || [] ; // Add the attributes to the style definition object. for ( j = 0 ; j < cssStyleNodes.length ; j++ ) { styleDef.Styles[ cssStyleNodes[j].name ] = cssStyleNodes[j].value ; } // Load override definitions. var cssStyleOverrideNodes = styleNode.$Override ; if ( cssStyleOverrideNodes ) { for ( j = 0 ; j < cssStyleOverrideNodes.length ; j++ ) { var overrideNode = cssStyleOverrideNodes[j] ; var overrideDef = { Element : overrideNode.element } ; var overrideAttNode = overrideNode.$Attribute ; if ( overrideAttNode ) { overrideDef.Attributes = {} ; for ( var k = 0 ; k < overrideAttNode.length ; k++ ) { var overrideAttValue = overrideAttNode[k].value || null ; if ( overrideAttValue ) { // Check if the override attribute value is a regular expression. var regexMatch = overrideAttValue && FCKRegexLib.RegExp.exec( overrideAttValue ) ; if ( regexMatch ) overrideAttValue = new RegExp( regexMatch[1], regexMatch[2] || '' ) ; } overrideDef.Attributes[ overrideAttNode[k].name ] = overrideAttValue ; } } styleDef.Overrides.push( overrideDef ) ; } } var style = new FCKStyle( styleDef ) ; style.Name = styleNode.name || element ; if ( style.GetType() == FCK_STYLE_OBJECT ) this._ObjectStyles[ element ] = true ; // Add the style to the "Styles" collection using it's name as the key. styles[ style.Name ] = style ; } return styles ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckstyles.js
JavaScript
asf20
10,420
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Format the HTML. */ var FCKCodeFormatter = new Object() ; FCKCodeFormatter.Init = function() { var oRegex = this.Regex = new Object() ; // Regex for line breaks. oRegex.BlocksOpener = /\<(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|DL|DT|DD|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|TH|AREA|OPTION)[^\>]*\>/gi ; oRegex.BlocksCloser = /\<\/(P|DIV|H1|H2|H3|H4|H5|H6|ADDRESS|PRE|OL|UL|LI|DL|DT|DD|TITLE|META|LINK|BASE|SCRIPT|LINK|TD|TH|AREA|OPTION)[^\>]*\>/gi ; oRegex.NewLineTags = /\<(BR|HR)[^\>]*\>/gi ; oRegex.MainTags = /\<\/?(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR)[^\>]*\>/gi ; oRegex.LineSplitter = /\s*\n+\s*/g ; // Regex for indentation. oRegex.IncreaseIndent = /^\<(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL|DL)[ \/\>]/i ; oRegex.DecreaseIndent = /^\<\/(HTML|HEAD|BODY|FORM|TABLE|TBODY|THEAD|TR|UL|OL|DL)[ \>]/i ; oRegex.FormatIndentatorRemove = new RegExp( '^' + FCKConfig.FormatIndentator ) ; oRegex.ProtectedTags = /(<PRE[^>]*>)([\s\S]*?)(<\/PRE>)/gi ; } FCKCodeFormatter._ProtectData = function( outer, opener, data, closer ) { return opener + '___FCKpd___' + ( FCKCodeFormatter.ProtectedData.push( data ) - 1 ) + closer ; } FCKCodeFormatter.Format = function( html ) { if ( !this.Regex ) this.Init() ; // Protected content that remain untouched during the // process go in the following array. FCKCodeFormatter.ProtectedData = new Array() ; var sFormatted = html.replace( this.Regex.ProtectedTags, FCKCodeFormatter._ProtectData ) ; // Line breaks. sFormatted = sFormatted.replace( this.Regex.BlocksOpener, '\n$&' ) ; sFormatted = sFormatted.replace( this.Regex.BlocksCloser, '$&\n' ) ; sFormatted = sFormatted.replace( this.Regex.NewLineTags, '$&\n' ) ; sFormatted = sFormatted.replace( this.Regex.MainTags, '\n$&\n' ) ; // Indentation. var sIndentation = '' ; var asLines = sFormatted.split( this.Regex.LineSplitter ) ; sFormatted = '' ; for ( var i = 0 ; i < asLines.length ; i++ ) { var sLine = asLines[i] ; if ( sLine.length == 0 ) continue ; if ( this.Regex.DecreaseIndent.test( sLine ) ) sIndentation = sIndentation.replace( this.Regex.FormatIndentatorRemove, '' ) ; sFormatted += sIndentation + sLine + '\n' ; if ( this.Regex.IncreaseIndent.test( sLine ) ) sIndentation += FCKConfig.FormatIndentator ; } // Now we put back the protected data. for ( var j = 0 ; j < FCKCodeFormatter.ProtectedData.length ; j++ ) { var oRegex = new RegExp( '___FCKpd___' + j ) ; sFormatted = sFormatted.replace( oRegex, FCKCodeFormatter.ProtectedData[j].replace( /\$/g, '$$$$' ) ) ; } return sFormatted.Trim() ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckcodeformatter.js
JavaScript
asf20
3,316
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Utility functions. (IE version). */ FCKTools.CancelEvent = function( e ) { return false ; } // Appends one or more CSS files to a document. FCKTools._AppendStyleSheet = function( documentElement, cssFileUrl ) { return documentElement.createStyleSheet( cssFileUrl ).owningElement ; } // Appends a CSS style string to a document. FCKTools.AppendStyleString = function( documentElement, cssStyles ) { if ( !cssStyles ) return null ; var s = documentElement.createStyleSheet( "" ) ; s.cssText = cssStyles ; return s ; } // Removes all attributes and values from the element. FCKTools.ClearElementAttributes = function( element ) { element.clearAttributes() ; } FCKTools.GetAllChildrenIds = function( parentElement ) { var aIds = new Array() ; for ( var i = 0 ; i < parentElement.all.length ; i++ ) { var sId = parentElement.all[i].id ; if ( sId && sId.length > 0 ) aIds[ aIds.length ] = sId ; } return aIds ; } FCKTools.RemoveOuterTags = function( e ) { e.insertAdjacentHTML( 'beforeBegin', e.innerHTML ) ; e.parentNode.removeChild( e ) ; } FCKTools.CreateXmlObject = function( object ) { var aObjs ; switch ( object ) { case 'XmlHttp' : // Try the native XMLHttpRequest introduced with IE7. if ( document.location.protocol != 'file:' ) try { return new XMLHttpRequest() ; } catch (e) {} aObjs = [ 'MSXML2.XmlHttp', 'Microsoft.XmlHttp' ] ; break ; case 'DOMDocument' : aObjs = [ 'MSXML2.DOMDocument', 'Microsoft.XmlDom' ] ; break ; } for ( var i = 0 ; i < 2 ; i++ ) { try { return new ActiveXObject( aObjs[i] ) ; } catch (e) {} } if ( FCKLang.NoActiveX ) { alert( FCKLang.NoActiveX ) ; FCKLang.NoActiveX = null ; } return null ; } FCKTools.DisableSelection = function( element ) { element.unselectable = 'on' ; var e, i = 0 ; // The extra () is to avoid a warning with strict error checking. This is ok. while ( (e = element.all[ i++ ]) ) { switch ( e.tagName ) { case 'IFRAME' : case 'TEXTAREA' : case 'INPUT' : case 'SELECT' : /* Ignore the above tags */ break ; default : e.unselectable = 'on' ; } } } FCKTools.GetScrollPosition = function( relativeWindow ) { var oDoc = relativeWindow.document ; // Try with the doc element. var oPos = { X : oDoc.documentElement.scrollLeft, Y : oDoc.documentElement.scrollTop } ; if ( oPos.X > 0 || oPos.Y > 0 ) return oPos ; // If no scroll, try with the body. return { X : oDoc.body.scrollLeft, Y : oDoc.body.scrollTop } ; } FCKTools.AddEventListener = function( sourceObject, eventName, listener ) { sourceObject.attachEvent( 'on' + eventName, listener ) ; } FCKTools.RemoveEventListener = function( sourceObject, eventName, listener ) { sourceObject.detachEvent( 'on' + eventName, listener ) ; } // Listeners attached with this function cannot be detached. FCKTools.AddEventListenerEx = function( sourceObject, eventName, listener, paramsArray ) { // Ok... this is a closures party, but is the only way to make it clean of memory leaks. var o = new Object() ; o.Source = sourceObject ; o.Params = paramsArray || [] ; // Memory leak if we have DOM objects here. o.Listener = function( ev ) { return listener.apply( o.Source, [ ev ].concat( o.Params ) ) ; } if ( FCK.IECleanup ) FCK.IECleanup.AddItem( null, function() { o.Source = null ; o.Params = null ; } ) ; sourceObject.attachEvent( 'on' + eventName, o.Listener ) ; sourceObject = null ; // Memory leak cleaner (because of the above closure). paramsArray = null ; // Memory leak cleaner (because of the above closure). } // Returns and object with the "Width" and "Height" properties. FCKTools.GetViewPaneSize = function( win ) { var oSizeSource ; var oDoc = win.document.documentElement ; if ( oDoc && oDoc.clientWidth ) // IE6 Strict Mode oSizeSource = oDoc ; else oSizeSource = win.document.body ; // Other IEs if ( oSizeSource ) return { Width : oSizeSource.clientWidth, Height : oSizeSource.clientHeight } ; else return { Width : 0, Height : 0 } ; } FCKTools.SaveStyles = function( element ) { var data = FCKTools.ProtectFormStyles( element ) ; var oSavedStyles = new Object() ; if ( element.className.length > 0 ) { oSavedStyles.Class = element.className ; element.className = '' ; } var sInlineStyle = element.style.cssText ; if ( sInlineStyle.length > 0 ) { oSavedStyles.Inline = sInlineStyle ; element.style.cssText = '' ; } FCKTools.RestoreFormStyles( element, data ) ; return oSavedStyles ; } FCKTools.RestoreStyles = function( element, savedStyles ) { var data = FCKTools.ProtectFormStyles( element ) ; element.className = savedStyles.Class || '' ; element.style.cssText = savedStyles.Inline || '' ; FCKTools.RestoreFormStyles( element, data ) ; } FCKTools.RegisterDollarFunction = function( targetWindow ) { targetWindow.$ = targetWindow.document.getElementById ; } FCKTools.AppendElement = function( target, elementName ) { return target.appendChild( this.GetElementDocument( target ).createElement( elementName ) ) ; } // This function may be used by Regex replacements. FCKTools.ToLowerCase = function( strValue ) { return strValue.toLowerCase() ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktools_ie.js
JavaScript
asf20
6,022
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Active selection functions. (Gecko specific implementation) */ // Get the selection type (like document.select.type in IE). FCKSelection.GetType = function() { // By default set the type to "Text". var type = 'Text' ; // Check if the actual selection is a Control (IMG, TABLE, HR, etc...). var sel ; try { sel = this.GetSelection() ; } catch (e) {} if ( sel && sel.rangeCount == 1 ) { var range = sel.getRangeAt(0) ; if ( range.startContainer == range.endContainer && ( range.endOffset - range.startOffset ) == 1 && range.startContainer.nodeType == 1 && FCKListsLib.StyleObjectElements[ range.startContainer.childNodes[ range.startOffset ].nodeName.toLowerCase() ] ) { type = 'Control' ; } } return type ; } // Retrieves the selected element (if any), just in the case that a single // element (object like and image or a table) is selected. FCKSelection.GetSelectedElement = function() { var selection = !!FCK.EditorWindow && this.GetSelection() ; if ( !selection || selection.rangeCount < 1 ) return null ; var range = selection.getRangeAt( 0 ) ; if ( range.startContainer != range.endContainer || range.startContainer.nodeType != 1 || range.startOffset != range.endOffset - 1 ) return null ; var node = range.startContainer.childNodes[ range.startOffset ] ; if ( node.nodeType != 1 ) return null ; return node ; } FCKSelection.GetParentElement = function() { if ( this.GetType() == 'Control' ) return FCKSelection.GetSelectedElement().parentNode ; else { var oSel = this.GetSelection() ; if ( oSel ) { // if anchorNode == focusNode, see if the selection is text only or including nodes. // if text only, return the parent node. // if the selection includes DOM nodes, then the anchorNode is the nearest container. if ( oSel.anchorNode && oSel.anchorNode == oSel.focusNode ) { var oRange = oSel.getRangeAt( 0 ) ; if ( oRange.collapsed || oRange.startContainer.nodeType == 3 ) return oSel.anchorNode.parentNode ; else return oSel.anchorNode ; } // looks like we're having a large selection here. To make the behavior same as IE's TextRange.parentElement(), // we need to find the nearest ancestor node which encapsulates both the beginning and the end of the selection. // TODO: A simpler logic can be found. var anchorPath = new FCKElementPath( oSel.anchorNode ) ; var focusPath = new FCKElementPath( oSel.focusNode ) ; var deepPath = null ; var shallowPath = null ; if ( anchorPath.Elements.length > focusPath.Elements.length ) { deepPath = anchorPath.Elements ; shallowPath = focusPath.Elements ; } else { deepPath = focusPath.Elements ; shallowPath = anchorPath.Elements ; } var deepPathBase = deepPath.length - shallowPath.length ; for( var i = 0 ; i < shallowPath.length ; i++) { if ( deepPath[deepPathBase + i] == shallowPath[i]) return shallowPath[i]; } return null ; } } return null ; } FCKSelection.GetBoundaryParentElement = function( startBoundary ) { if ( ! FCK.EditorWindow ) return null ; if ( this.GetType() == 'Control' ) return FCKSelection.GetSelectedElement().parentNode ; else { var oSel = this.GetSelection() ; if ( oSel && oSel.rangeCount > 0 ) { var range = oSel.getRangeAt( startBoundary ? 0 : ( oSel.rangeCount - 1 ) ) ; var element = startBoundary ? range.startContainer : range.endContainer ; return ( element.nodeType == 1 ? element : element.parentNode ) ; } } return null ; } FCKSelection.SelectNode = function( element ) { var oRange = FCK.EditorDocument.createRange() ; oRange.selectNode( element ) ; var oSel = this.GetSelection() ; oSel.removeAllRanges() ; oSel.addRange( oRange ) ; } FCKSelection.Collapse = function( toStart ) { var oSel = this.GetSelection() ; if ( toStart == null || toStart === true ) oSel.collapseToStart() ; else oSel.collapseToEnd() ; } // The "nodeTagName" parameter must be Upper Case. FCKSelection.HasAncestorNode = function( nodeTagName ) { var oContainer = this.GetSelectedElement() ; if ( ! oContainer && FCK.EditorWindow ) { try { oContainer = this.GetSelection().getRangeAt(0).startContainer ; } catch(e){} } while ( oContainer ) { if ( oContainer.nodeType == 1 && oContainer.nodeName.IEquals( nodeTagName ) ) return true ; oContainer = oContainer.parentNode ; } return false ; } // The "nodeTagName" parameter must be Upper Case. FCKSelection.MoveToAncestorNode = function( nodeTagName ) { var oNode ; var oContainer = this.GetSelectedElement() ; if ( ! oContainer ) oContainer = this.GetSelection().getRangeAt(0).startContainer ; while ( oContainer ) { if ( oContainer.nodeName.IEquals( nodeTagName ) ) return oContainer ; oContainer = oContainer.parentNode ; } return null ; } FCKSelection.Delete = function() { // Gets the actual selection. var oSel = this.GetSelection() ; // Deletes the actual selection contents. for ( var i = 0 ; i < oSel.rangeCount ; i++ ) { oSel.getRangeAt(i).deleteContents() ; } return oSel ; } /** * Returns the native selection object. */ FCKSelection.GetSelection = function() { return FCK.EditorWindow.getSelection() ; } // The following are IE only features (we don't need then in other browsers // currently). FCKSelection.Save = function() {} FCKSelection.Restore = function() {} FCKSelection.Release = function() {}
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckselection_gecko.js
JavaScript
asf20
6,254
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Active selection functions. */ var FCKSelection = FCK.Selection = { GetParentBlock : function() { var retval = this.GetParentElement() ; while ( retval ) { if ( FCKListsLib.BlockBoundaries[retval.nodeName.toLowerCase()] ) break ; retval = retval.parentNode ; } return retval ; }, ApplyStyle : function( styleDefinition ) { FCKStyles.ApplyStyle( new FCKStyle( styleDefinition ) ) ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckselection.js
JavaScript
asf20
1,072
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Debug window control and operations. */ // Public function defined here must be declared in fckdebug_empty.js. var FCKDebug = { Output : function( message, color, noParse ) { if ( ! FCKConfig.Debug ) return ; try { this._GetWindow().Output( message, color, noParse ) ; } catch ( e ) {} // Ignore errors }, OutputObject : function( anyObject, color ) { if ( ! FCKConfig.Debug ) return ; try { this._GetWindow().OutputObject( anyObject, color ) ; } catch ( e ) {} // Ignore errors }, _GetWindow : function() { if ( !this.DebugWindow || this.DebugWindow.closed ) this.DebugWindow = window.open( FCKConfig.BasePath + 'fckdebug.html', 'FCKeditorDebug', 'menubar=no,scrollbars=yes,resizable=yes,location=no,toolbar=no,width=600,height=500', true ) ; return this.DebugWindow ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckdebug.js
JavaScript
asf20
1,505
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKLanguageManager object that is used for language * operations. */ var FCKLanguageManager = FCK.Language = { AvailableLanguages : { af : 'Afrikaans', ar : 'Arabic', bg : 'Bulgarian', bn : 'Bengali/Bangla', bs : 'Bosnian', ca : 'Catalan', cs : 'Czech', da : 'Danish', de : 'German', el : 'Greek', en : 'English', 'en-au' : 'English (Australia)', 'en-ca' : 'English (Canadian)', 'en-uk' : 'English (United Kingdom)', eo : 'Esperanto', es : 'Spanish', et : 'Estonian', eu : 'Basque', fa : 'Persian', fi : 'Finnish', fo : 'Faroese', fr : 'French', 'fr-ca' : 'French (Canada)', gl : 'Galician', gu : 'Gujarati', he : 'Hebrew', hi : 'Hindi', hr : 'Croatian', hu : 'Hungarian', is : 'Icelandic', it : 'Italian', ja : 'Japanese', km : 'Khmer', ko : 'Korean', lt : 'Lithuanian', lv : 'Latvian', mn : 'Mongolian', ms : 'Malay', nb : 'Norwegian Bokmal', nl : 'Dutch', no : 'Norwegian', pl : 'Polish', pt : 'Portuguese (Portugal)', 'pt-br' : 'Portuguese (Brazil)', ro : 'Romanian', ru : 'Russian', sk : 'Slovak', sl : 'Slovenian', sr : 'Serbian (Cyrillic)', 'sr-latn' : 'Serbian (Latin)', sv : 'Swedish', th : 'Thai', tr : 'Turkish', uk : 'Ukrainian', vi : 'Vietnamese', zh : 'Chinese Traditional', 'zh-cn' : 'Chinese Simplified' }, GetActiveLanguage : function() { if ( FCKConfig.AutoDetectLanguage ) { var sUserLang ; // IE accepts "navigator.userLanguage" while Gecko "navigator.language". if ( navigator.userLanguage ) sUserLang = navigator.userLanguage.toLowerCase() ; else if ( navigator.language ) sUserLang = navigator.language.toLowerCase() ; else { // Firefox 1.0 PR has a bug: it doens't support the "language" property. return FCKConfig.DefaultLanguage ; } // Some language codes are set in 5 characters, // like "pt-br" for Brazilian Portuguese. if ( sUserLang.length >= 5 ) { sUserLang = sUserLang.substr(0,5) ; if ( this.AvailableLanguages[sUserLang] ) return sUserLang ; } // If the user's browser is set to, for example, "pt-br" but only the // "pt" language file is available then get that file. if ( sUserLang.length >= 2 ) { sUserLang = sUserLang.substr(0,2) ; if ( this.AvailableLanguages[sUserLang] ) return sUserLang ; } } return this.DefaultLanguage ; }, TranslateElements : function( targetDocument, tag, propertyToSet, encode ) { var e = targetDocument.getElementsByTagName(tag) ; var sKey, s ; for ( var i = 0 ; i < e.length ; i++ ) { // The extra () is to avoid a warning with strict error checking. This is ok. if ( (sKey = e[i].getAttribute( 'fckLang' )) ) { // The extra () is to avoid a warning with strict error checking. This is ok. if ( (s = FCKLang[ sKey ]) ) { if ( encode ) s = FCKTools.HTMLEncode( s ) ; e[i][ propertyToSet ] = s ; } } } }, TranslatePage : function( targetDocument ) { this.TranslateElements( targetDocument, 'INPUT', 'value' ) ; this.TranslateElements( targetDocument, 'SPAN', 'innerHTML' ) ; this.TranslateElements( targetDocument, 'LABEL', 'innerHTML' ) ; this.TranslateElements( targetDocument, 'OPTION', 'innerHTML', true ) ; this.TranslateElements( targetDocument, 'LEGEND', 'innerHTML' ) ; }, Initialize : function() { if ( this.AvailableLanguages[ FCKConfig.DefaultLanguage ] ) this.DefaultLanguage = FCKConfig.DefaultLanguage ; else this.DefaultLanguage = 'en' ; this.ActiveLanguage = new Object() ; this.ActiveLanguage.Code = this.GetActiveLanguage() ; this.ActiveLanguage.Name = this.AvailableLanguages[ this.ActiveLanguage.Code ] ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcklanguagemanager.js
JavaScript
asf20
4,547
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * These are some Regular Expressions used by the editor. */ var FCKRegexLib = { // This is the Regular expression used by the SetData method for the "&apos;" entity. AposEntity : /&apos;/gi , // Used by the Styles combo to identify styles that can't be applied to text. ObjectElements : /^(?:IMG|TABLE|TR|TD|TH|INPUT|SELECT|TEXTAREA|HR|OBJECT|A|UL|OL|LI)$/i , // List all named commands (commands that can be interpreted by the browser "execCommand" method. NamedCommands : /^(?:Cut|Copy|Paste|Print|SelectAll|RemoveFormat|Unlink|Undo|Redo|Bold|Italic|Underline|StrikeThrough|Subscript|Superscript|JustifyLeft|JustifyCenter|JustifyRight|JustifyFull|Outdent|Indent|InsertOrderedList|InsertUnorderedList|InsertHorizontalRule)$/i , BeforeBody : /(^[\s\S]*\<body[^\>]*\>)/i, AfterBody : /(\<\/body\>[\s\S]*$)/i, // Temporary text used to solve some browser specific limitations. ToReplace : /___fcktoreplace:([\w]+)/ig , // Get the META http-equiv attribute from the tag. MetaHttpEquiv : /http-equiv\s*=\s*["']?([^"' ]+)/i , HasBaseTag : /<base /i , HasBodyTag : /<body[\s|>]/i , HtmlOpener : /<html\s?[^>]*>/i , HeadOpener : /<head\s?[^>]*>/i , HeadCloser : /<\/head\s*>/i , // Temporary classes (Tables without border, Anchors with content) used in IE FCK_Class : /\s*FCK__[^ ]*(?=\s+|$)/ , // Validate element names (it must be in lowercase). ElementName : /(^[a-z_:][\w.\-:]*\w$)|(^[a-z_]$)/ , // Used in conjunction with the FCKConfig.ForceSimpleAmpersand configuration option. ForceSimpleAmpersand : /___FCKAmp___/g , // Get the closing parts of the tags with no closing tags, like <br/>... gets the "/>" part. SpaceNoClose : /\/>/g , // Empty elements may be <p></p> or even a simple opening <p> (see #211). EmptyParagraph : /^<(p|div|address|h\d|center)(?=[ >])[^>]*>\s*(<\/\1>)?$/ , EmptyOutParagraph : /^<(p|div|address|h\d|center)(?=[ >])[^>]*>(?:\s*|&nbsp;)(<\/\1>)?$/ , TagBody : /></ , GeckoEntitiesMarker : /#\?-\:/g , // We look for the "src" and href attribute with the " or ' or without one of // them. We have to do all in one, otherwise we will have problems with URLs // like "thumbnail.php?src=someimage.jpg" (SF-BUG 1554141). ProtectUrlsImg : /<img(?=\s).*?\ssrc=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi , ProtectUrlsA : /<a(?=\s).*?\shref=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi , ProtectUrlsArea : /<area(?=\s).*?\shref=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi , Html4DocType : /HTML 4\.0 Transitional/i , DocTypeTag : /<!DOCTYPE[^>]*>/i , HtmlDocType : /DTD HTML/ , // These regex are used to save the original event attributes in the HTML. TagsWithEvent : /<[^\>]+ on\w+[\s\r\n]*=[\s\r\n]*?('|")[\s\S]+?\>/g , EventAttributes : /\s(on\w+)[\s\r\n]*=[\s\r\n]*?('|")([\s\S]*?)\2/g, ProtectedEvents : /\s\w+_fckprotectedatt="([^"]+)"/g, StyleProperties : /\S+\s*:/g, // [a-zA-Z0-9:]+ seams to be more efficient than [\w:]+ InvalidSelfCloseTags : /(<(?!base|meta|link|hr|br|param|img|area|input)([a-zA-Z0-9:]+)[^>]*)\/>/gi, // All variables defined in a style attribute or style definition. The variable // name is returned with $2. StyleVariableAttName : /#\(\s*("|')(.+?)\1[^\)]*\s*\)/g, RegExp : /^\/(.*)\/([gim]*)$/, HtmlTag : /<[^\s<>](?:"[^"]*"|'[^']*'|[^<])*>/ } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckregexlib.js
JavaScript
asf20
3,945
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Advanced document processors. */ var FCKDocumentProcessor = new Object() ; FCKDocumentProcessor._Items = new Array() ; FCKDocumentProcessor.AppendNew = function() { var oNewItem = new Object() ; this._Items.push( oNewItem ) ; return oNewItem ; } FCKDocumentProcessor.Process = function( document ) { var bIsDirty = FCK.IsDirty() ; var oProcessor, i = 0 ; while( ( oProcessor = this._Items[i++] ) ) oProcessor.ProcessDocument( document ) ; if ( !bIsDirty ) FCK.ResetIsDirty() ; } var FCKDocumentProcessor_CreateFakeImage = function( fakeClass, realElement ) { var oImg = FCKTools.GetElementDocument( realElement ).createElement( 'IMG' ) ; oImg.className = fakeClass ; oImg.src = FCKConfig.BasePath + 'images/spacer.gif' ; oImg.setAttribute( '_fckfakelement', 'true', 0 ) ; oImg.setAttribute( '_fckrealelement', FCKTempBin.AddElement( realElement ), 0 ) ; return oImg ; } // Link Anchors if ( FCKBrowserInfo.IsIE || FCKBrowserInfo.IsOpera ) { var FCKAnchorsProcessor = FCKDocumentProcessor.AppendNew() ; FCKAnchorsProcessor.ProcessDocument = function( document ) { var aLinks = document.getElementsByTagName( 'A' ) ; var oLink ; var i = aLinks.length - 1 ; while ( i >= 0 && ( oLink = aLinks[i--] ) ) { // If it is anchor. Doesn't matter if it's also a link (even better: we show that it's both a link and an anchor) if ( oLink.name.length > 0 ) { //if the anchor has some content then we just add a temporary class if ( oLink.innerHTML !== '' ) { if ( FCKBrowserInfo.IsIE ) oLink.className += ' FCK__AnchorC' ; } else { var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Anchor', oLink.cloneNode(true) ) ; oImg.setAttribute( '_fckanchor', 'true', 0 ) ; oLink.parentNode.insertBefore( oImg, oLink ) ; oLink.parentNode.removeChild( oLink ) ; } } } } } // Page Breaks var FCKPageBreaksProcessor = FCKDocumentProcessor.AppendNew() ; FCKPageBreaksProcessor.ProcessDocument = function( document ) { var aDIVs = document.getElementsByTagName( 'DIV' ) ; var eDIV ; var i = aDIVs.length - 1 ; while ( i >= 0 && ( eDIV = aDIVs[i--] ) ) { if ( eDIV.style.pageBreakAfter == 'always' && eDIV.childNodes.length == 1 && eDIV.childNodes[0].style && eDIV.childNodes[0].style.display == 'none' ) { var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', eDIV.cloneNode(true) ) ; eDIV.parentNode.insertBefore( oFakeImage, eDIV ) ; eDIV.parentNode.removeChild( eDIV ) ; } } /* var aCenters = document.getElementsByTagName( 'CENTER' ) ; var oCenter ; var i = aCenters.length - 1 ; while ( i >= 0 && ( oCenter = aCenters[i--] ) ) { if ( oCenter.style.pageBreakAfter == 'always' && oCenter.innerHTML.Trim().length == 0 ) { var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', oCenter.cloneNode(true) ) ; oCenter.parentNode.insertBefore( oFakeImage, oCenter ) ; oCenter.parentNode.removeChild( oCenter ) ; } } */ } // EMBED and OBJECT tags. var FCKEmbedAndObjectProcessor = (function() { var customProcessors = [] ; var processElement = function( el ) { var clone = el.cloneNode( true ) ; var replaceElement ; var fakeImg = replaceElement = FCKDocumentProcessor_CreateFakeImage( 'FCK__UnknownObject', clone ) ; FCKEmbedAndObjectProcessor.RefreshView( fakeImg, el ) ; for ( var i = 0 ; i < customProcessors.length ; i++ ) replaceElement = customProcessors[i]( el, replaceElement ) || replaceElement ; if ( replaceElement != fakeImg ) FCKTempBin.RemoveElement( fakeImg.getAttribute( '_fckrealelement' ) ) ; el.parentNode.replaceChild( replaceElement, el ) ; } var processElementsByName = function( elementName, doc ) { var aObjects = doc.getElementsByTagName( elementName ); for ( var i = aObjects.length - 1 ; i >= 0 ; i-- ) processElement( aObjects[i] ) ; } var processObjectAndEmbed = function( doc ) { processElementsByName( 'object', doc ); processElementsByName( 'embed', doc ); } return FCKTools.Merge( FCKDocumentProcessor.AppendNew(), { ProcessDocument : function( doc ) { // Firefox 3 would sometimes throw an unknown exception while accessing EMBEDs and OBJECTs // without the setTimeout(). if ( FCKBrowserInfo.IsGecko ) FCKTools.RunFunction( processObjectAndEmbed, this, [ doc ] ) ; else processObjectAndEmbed( doc ) ; }, RefreshView : function( placeHolder, original ) { if ( original.getAttribute( 'width' ) > 0 ) placeHolder.style.width = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'width' ) ) ; if ( original.getAttribute( 'height' ) > 0 ) placeHolder.style.height = FCKTools.ConvertHtmlSizeToStyle( original.getAttribute( 'height' ) ) ; }, AddCustomHandler : function( func ) { customProcessors.push( func ) ; } } ) ; } )() ; FCK.GetRealElement = function( fakeElement ) { var e = FCKTempBin.Elements[ fakeElement.getAttribute('_fckrealelement') ] ; if ( fakeElement.getAttribute('_fckflash') ) { if ( fakeElement.style.width.length > 0 ) e.width = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.width ) ; if ( fakeElement.style.height.length > 0 ) e.height = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.height ) ; } return e ; } // HR Processor. // This is a IE only (tricky) thing. We protect all HR tags before loading them // (see FCK.ProtectTags). Here we put the HRs back. if ( FCKBrowserInfo.IsIE ) { FCKDocumentProcessor.AppendNew().ProcessDocument = function( document ) { var aHRs = document.getElementsByTagName( 'HR' ) ; var eHR ; var i = aHRs.length - 1 ; while ( i >= 0 && ( eHR = aHRs[i--] ) ) { // Create the replacement HR. var newHR = document.createElement( 'hr' ) ; newHR.mergeAttributes( eHR, true ) ; // We must insert the new one after it. insertBefore will not work in all cases. FCKDomTools.InsertAfterNode( eHR, newHR ) ; eHR.parentNode.removeChild( eHR ) ; } } } // INPUT:hidden Processor. FCKDocumentProcessor.AppendNew().ProcessDocument = function( document ) { var aInputs = document.getElementsByTagName( 'INPUT' ) ; var oInput ; var i = aInputs.length - 1 ; while ( i >= 0 && ( oInput = aInputs[i--] ) ) { if ( oInput.type == 'hidden' ) { var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__InputHidden', oInput.cloneNode(true) ) ; oImg.setAttribute( '_fckinputhidden', 'true', 0 ) ; oInput.parentNode.insertBefore( oImg, oInput ) ; oInput.parentNode.removeChild( oInput ) ; } } } // Flash handler. FCKEmbedAndObjectProcessor.AddCustomHandler( function( el, fakeImg ) { if ( ! ( el.nodeName.IEquals( 'embed' ) && ( el.type == 'application/x-shockwave-flash' || /\.swf($|#|\?)/i.test( el.src ) ) ) ) return ; fakeImg.className = 'FCK__Flash' ; fakeImg.setAttribute( '_fckflash', 'true', 0 ); } ) ; // Buggy <span class="Apple-style-span"> tags added by Safari. if ( FCKBrowserInfo.IsSafari ) { FCKDocumentProcessor.AppendNew().ProcessDocument = function( doc ) { var spans = doc.getElementsByClassName ? doc.getElementsByClassName( 'Apple-style-span' ) : Array.prototype.filter.call( doc.getElementsByTagName( 'span' ), function( item ){ return item.className == 'Apple-style-span' ; } ) ; for ( var i = spans.length - 1 ; i >= 0 ; i-- ) FCKDomTools.RemoveNode( spans[i], true ) ; } }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckdocumentprocessor.js
JavaScript
asf20
8,304
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Manage table operations (IE specific). */ FCKTableHandler.GetSelectedCells = function() { if ( FCKSelection.GetType() == 'Control' ) { var td = FCKSelection.MoveToAncestorNode( ['TD', 'TH'] ) ; return td ? [ td ] : [] ; } var aCells = new Array() ; var oRange = FCKSelection.GetSelection().createRange() ; // var oParent = oRange.parentElement() ; var oParent = FCKSelection.GetParentElement() ; if ( oParent && oParent.tagName.Equals( 'TD', 'TH' ) ) aCells[0] = oParent ; else { oParent = FCKSelection.MoveToAncestorNode( 'TABLE' ) ; if ( oParent ) { // Loops throw all cells checking if the cell is, or part of it, is inside the selection // and then add it to the selected cells collection. for ( var i = 0 ; i < oParent.cells.length ; i++ ) { var oCellRange = FCK.EditorDocument.body.createTextRange() ; oCellRange.moveToElementText( oParent.cells[i] ) ; if ( oRange.inRange( oCellRange ) || ( oRange.compareEndPoints('StartToStart',oCellRange) >= 0 && oRange.compareEndPoints('StartToEnd',oCellRange) <= 0 ) || ( oRange.compareEndPoints('EndToStart',oCellRange) >= 0 && oRange.compareEndPoints('EndToEnd',oCellRange) <= 0 ) ) { aCells[aCells.length] = oParent.cells[i] ; } } } } return aCells ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktablehandler_ie.js
JavaScript
asf20
1,963
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Creates and initializes the FCKConfig object. */ var FCKConfig = FCK.Config = new Object() ; /* For the next major version (probably 3.0) we should move all this stuff to another dedicated object and leave FCKConfig as a holder object for settings only). */ // Editor Base Path if ( document.location.protocol == 'file:' ) { FCKConfig.BasePath = decodeURIComponent( document.location.pathname.substr(1) ) ; FCKConfig.BasePath = FCKConfig.BasePath.replace( /\\/gi, '/' ) ; // The way to address local files is different according to the OS. // In Windows it is file:// but in MacOs it is file:/// so let's get it automatically var sFullProtocol = document.location.href.match( /^(file\:\/{2,3})/ )[1] ; // #945 Opera does strange things with files loaded from the disk, and it fails in Mac to load xml files if ( FCKBrowserInfo.IsOpera ) sFullProtocol += 'localhost/' ; FCKConfig.BasePath = sFullProtocol + FCKConfig.BasePath.substring( 0, FCKConfig.BasePath.lastIndexOf( '/' ) + 1) ; } else FCKConfig.BasePath = document.location.protocol + '//' + document.location.host + document.location.pathname.substring( 0, document.location.pathname.lastIndexOf( '/' ) + 1) ; FCKConfig.FullBasePath = FCKConfig.BasePath ; FCKConfig.EditorPath = FCKConfig.BasePath.replace( /editor\/$/, '' ) ; // There is a bug in Gecko. If the editor is hidden on startup, an error is // thrown when trying to get the screen dimensions. try { FCKConfig.ScreenWidth = screen.width ; FCKConfig.ScreenHeight = screen.height ; } catch (e) { FCKConfig.ScreenWidth = 800 ; FCKConfig.ScreenHeight = 600 ; } // Override the actual configuration values with the values passed throw the // hidden field "<InstanceName>___Config". FCKConfig.ProcessHiddenField = function() { this.PageConfig = new Object() ; // Get the hidden field. var oConfigField = window.parent.document.getElementById( FCK.Name + '___Config' ) ; // Do nothing if the config field was not defined. if ( ! oConfigField ) return ; var aCouples = oConfigField.value.split('&') ; for ( var i = 0 ; i < aCouples.length ; i++ ) { if ( aCouples[i].length == 0 ) continue ; var aConfig = aCouples[i].split( '=' ) ; var sKey = decodeURIComponent( aConfig[0] ) ; var sVal = decodeURIComponent( aConfig[1] ) ; if ( sKey == 'CustomConfigurationsPath' ) // The Custom Config File path must be loaded immediately. FCKConfig[ sKey ] = sVal ; else if ( sVal.toLowerCase() == "true" ) // If it is a boolean TRUE. this.PageConfig[ sKey ] = true ; else if ( sVal.toLowerCase() == "false" ) // If it is a boolean FALSE. this.PageConfig[ sKey ] = false ; else if ( sVal.length > 0 && !isNaN( sVal ) ) // If it is a number. this.PageConfig[ sKey ] = parseInt( sVal, 10 ) ; else // In any other case it is a string. this.PageConfig[ sKey ] = sVal ; } } function FCKConfig_LoadPageConfig() { var oPageConfig = FCKConfig.PageConfig ; for ( var sKey in oPageConfig ) FCKConfig[ sKey ] = oPageConfig[ sKey ] ; } function FCKConfig_PreProcess() { var oConfig = FCKConfig ; // Force debug mode if fckdebug=true in the QueryString (main page). if ( oConfig.AllowQueryStringDebug ) { try { if ( (/fckdebug=true/i).test( window.top.location.search ) ) oConfig.Debug = true ; } catch (e) { /* Ignore it. Much probably we are inside a FRAME where the "top" is in another domain (security error). */ } } // Certifies that the "PluginsPath" configuration ends with a slash. if ( !oConfig.PluginsPath.EndsWith('/') ) oConfig.PluginsPath += '/' ; // If no ToolbarComboPreviewCSS, point it to EditorAreaCSS. var sComboPreviewCSS = oConfig.ToolbarComboPreviewCSS ; if ( !sComboPreviewCSS || sComboPreviewCSS.length == 0 ) oConfig.ToolbarComboPreviewCSS = oConfig.EditorAreaCSS ; // Turn the attributes that will be removed in the RemoveFormat from a string to an array oConfig.RemoveAttributesArray = (oConfig.RemoveAttributes || '').split( ',' ); if ( !FCKConfig.SkinEditorCSS || FCKConfig.SkinEditorCSS.length == 0 ) FCKConfig.SkinEditorCSS = FCKConfig.SkinPath + 'fck_editor.css' ; if ( !FCKConfig.SkinDialogCSS || FCKConfig.SkinDialogCSS.length == 0 ) FCKConfig.SkinDialogCSS = FCKConfig.SkinPath + 'fck_dialog.css' ; } // Define toolbar sets collection. FCKConfig.ToolbarSets = new Object() ; // Defines the plugins collection. FCKConfig.Plugins = new Object() ; FCKConfig.Plugins.Items = new Array() ; FCKConfig.Plugins.Add = function( name, langs, path ) { FCKConfig.Plugins.Items.push( [name, langs, path] ) ; } // FCKConfig.ProtectedSource: object that holds a collection of Regular // Expressions that defined parts of the raw HTML that must remain untouched // like custom tags, scripts, server side code, etc... FCKConfig.ProtectedSource = new Object() ; // Generates a string used to identify and locate the Protected Tags comments. FCKConfig.ProtectedSource._CodeTag = (new Date()).valueOf() ; // Initialize the regex array with the default ones. FCKConfig.ProtectedSource.RegexEntries = [ // First of any other protection, we must protect all comments to avoid // loosing them (of course, IE related). /<!--[\s\S]*?-->/g , // Script tags will also be forced to be protected, otherwise IE will execute them. /<script[\s\S]*?<\/script>/gi, // <noscript> tags (get lost in IE and messed up in FF). /<noscript[\s\S]*?<\/noscript>/gi ] ; FCKConfig.ProtectedSource.Add = function( regexPattern ) { this.RegexEntries.push( regexPattern ) ; } FCKConfig.ProtectedSource.Protect = function( html ) { var codeTag = this._CodeTag ; function _Replace( protectedSource ) { var index = FCKTempBin.AddElement( protectedSource ) ; return '<!--{' + codeTag + index + '}-->' ; } for ( var i = 0 ; i < this.RegexEntries.length ; i++ ) { html = html.replace( this.RegexEntries[i], _Replace ) ; } return html ; } FCKConfig.ProtectedSource.Revert = function( html, clearBin ) { function _Replace( m, opener, index ) { var protectedValue = clearBin ? FCKTempBin.RemoveElement( index ) : FCKTempBin.Elements[ index ] ; // There could be protected source inside another one. return FCKConfig.ProtectedSource.Revert( protectedValue, clearBin ) ; } var regex = new RegExp( "(<|&lt;)!--\\{" + this._CodeTag + "(\\d+)\\}--(>|&gt;)", "g" ) ; return html.replace( regex, _Replace ) ; } // Returns a string with the attributes that must be appended to the body FCKConfig.GetBodyAttributes = function() { var bodyAttributes = '' ; // Add id and class to the body. if ( this.BodyId && this.BodyId.length > 0 ) bodyAttributes += ' id="' + this.BodyId + '"' ; if ( this.BodyClass && this.BodyClass.length > 0 ) bodyAttributes += ' class="' + this.BodyClass + '"' ; return bodyAttributes ; } // Sets the body attributes directly on the node FCKConfig.ApplyBodyAttributes = function( oBody ) { // Add ID and Class to the body if ( this.BodyId && this.BodyId.length > 0 ) oBody.id = FCKConfig.BodyId ; if ( this.BodyClass && this.BodyClass.length > 0 ) oBody.className += ' ' + FCKConfig.BodyClass ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckconfig.js
JavaScript
asf20
7,930
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Utility functions. (Gecko version). */ FCKTools.CancelEvent = function( e ) { if ( e ) e.preventDefault() ; } FCKTools.DisableSelection = function( element ) { if ( FCKBrowserInfo.IsGecko ) element.style.MozUserSelect = 'none' ; // Gecko only. else if ( FCKBrowserInfo.IsSafari ) element.style.KhtmlUserSelect = 'none' ; // WebKit only. else element.style.userSelect = 'none' ; // CSS3 (not supported yet). } // Appends a CSS file to a document. FCKTools._AppendStyleSheet = function( documentElement, cssFileUrl ) { var e = documentElement.createElement( 'LINK' ) ; e.rel = 'stylesheet' ; e.type = 'text/css' ; e.href = cssFileUrl ; documentElement.getElementsByTagName("HEAD")[0].appendChild( e ) ; return e ; } // Appends a CSS style string to a document. FCKTools.AppendStyleString = function( documentElement, cssStyles ) { if ( !cssStyles ) return null ; var e = documentElement.createElement( "STYLE" ) ; e.appendChild( documentElement.createTextNode( cssStyles ) ) ; documentElement.getElementsByTagName( "HEAD" )[0].appendChild( e ) ; return e ; } // Removes all attributes and values from the element. FCKTools.ClearElementAttributes = function( element ) { // Loop throw all attributes in the element for ( var i = 0 ; i < element.attributes.length ; i++ ) { // Remove the element by name. element.removeAttribute( element.attributes[i].name, 0 ) ; // 0 : Case Insensitive } } // Returns an Array of strings with all defined in the elements inside another element. FCKTools.GetAllChildrenIds = function( parentElement ) { // Create the array that will hold all Ids. var aIds = new Array() ; // Define a recursive function that search for the Ids. var fGetIds = function( parent ) { for ( var i = 0 ; i < parent.childNodes.length ; i++ ) { var sId = parent.childNodes[i].id ; // Check if the Id is defined for the element. if ( sId && sId.length > 0 ) aIds[ aIds.length ] = sId ; // Recursive call. fGetIds( parent.childNodes[i] ) ; } } // Start the recursive calls. fGetIds( parentElement ) ; return aIds ; } // Replaces a tag with its contents. For example "<span>My <b>tag</b></span>" // will be replaced with "My <b>tag</b>". FCKTools.RemoveOuterTags = function( e ) { var oFragment = e.ownerDocument.createDocumentFragment() ; for ( var i = 0 ; i < e.childNodes.length ; i++ ) oFragment.appendChild( e.childNodes[i].cloneNode(true) ) ; e.parentNode.replaceChild( oFragment, e ) ; } FCKTools.CreateXmlObject = function( object ) { switch ( object ) { case 'XmlHttp' : return new XMLHttpRequest() ; case 'DOMDocument' : // Originaly, we were had the following here: // return document.implementation.createDocument( '', '', null ) ; // But that doesn't work if we're running under domain relaxation mode, so we need a workaround. // See http://ajaxian.com/archives/xml-messages-with-cross-domain-json about the trick we're using. var doc = ( new DOMParser() ).parseFromString( '<tmp></tmp>', 'text/xml' ) ; FCKDomTools.RemoveNode( doc.firstChild ) ; return doc ; } return null ; } FCKTools.GetScrollPosition = function( relativeWindow ) { return { X : relativeWindow.pageXOffset, Y : relativeWindow.pageYOffset } ; } FCKTools.AddEventListener = function( sourceObject, eventName, listener ) { sourceObject.addEventListener( eventName, listener, false ) ; } FCKTools.RemoveEventListener = function( sourceObject, eventName, listener ) { sourceObject.removeEventListener( eventName, listener, false ) ; } // Listeners attached with this function cannot be detached. FCKTools.AddEventListenerEx = function( sourceObject, eventName, listener, paramsArray ) { sourceObject.addEventListener( eventName, function( e ) { listener.apply( sourceObject, [ e ].concat( paramsArray || [] ) ) ; }, false ) ; } // Returns and object with the "Width" and "Height" properties. FCKTools.GetViewPaneSize = function( win ) { return { Width : win.innerWidth, Height : win.innerHeight } ; } FCKTools.SaveStyles = function( element ) { var data = FCKTools.ProtectFormStyles( element ) ; var oSavedStyles = new Object() ; if ( element.className.length > 0 ) { oSavedStyles.Class = element.className ; element.className = '' ; } var sInlineStyle = element.getAttribute( 'style' ) ; if ( sInlineStyle && sInlineStyle.length > 0 ) { oSavedStyles.Inline = sInlineStyle ; element.setAttribute( 'style', '', 0 ) ; // 0 : Case Insensitive } FCKTools.RestoreFormStyles( element, data ) ; return oSavedStyles ; } FCKTools.RestoreStyles = function( element, savedStyles ) { var data = FCKTools.ProtectFormStyles( element ) ; element.className = savedStyles.Class || '' ; if ( savedStyles.Inline ) element.setAttribute( 'style', savedStyles.Inline, 0 ) ; // 0 : Case Insensitive else element.removeAttribute( 'style', 0 ) ; FCKTools.RestoreFormStyles( element, data ) ; } FCKTools.RegisterDollarFunction = function( targetWindow ) { targetWindow.$ = function( id ) { return targetWindow.document.getElementById( id ) ; } ; } FCKTools.AppendElement = function( target, elementName ) { return target.appendChild( target.ownerDocument.createElement( elementName ) ) ; } // Get the coordinates of an element. // @el : The element to get the position. // @relativeWindow: The window to which we want the coordinates relative to. FCKTools.GetElementPosition = function( el, relativeWindow ) { // Initializes the Coordinates object that will be returned by the function. var c = { X:0, Y:0 } ; var oWindow = relativeWindow || window ; var oOwnerWindow = FCKTools.GetElementWindow( el ) ; var previousElement = null ; // Loop throw the offset chain. while ( el ) { var sPosition = oOwnerWindow.getComputedStyle(el, '').position ; // Check for non "static" elements. // 'FCKConfig.FloatingPanelsZIndex' -- Submenus are under a positioned IFRAME. if ( sPosition && sPosition != 'static' && el.style.zIndex != FCKConfig.FloatingPanelsZIndex ) break ; /* FCKDebug.Output( el.tagName + ":" + "offset=" + el.offsetLeft + "," + el.offsetTop + " " + "scroll=" + el.scrollLeft + "," + el.scrollTop ) ; */ c.X += el.offsetLeft - el.scrollLeft ; c.Y += el.offsetTop - el.scrollTop ; // Backtrack due to offsetParent's calculation by the browser ignores scrollLeft and scrollTop. // Backtracking is not needed for Opera if ( ! FCKBrowserInfo.IsOpera ) { var scrollElement = previousElement ; while ( scrollElement && scrollElement != el ) { c.X -= scrollElement.scrollLeft ; c.Y -= scrollElement.scrollTop ; scrollElement = scrollElement.parentNode ; } } previousElement = el ; if ( el.offsetParent ) el = el.offsetParent ; else { if ( oOwnerWindow != oWindow ) { el = oOwnerWindow.frameElement ; previousElement = null ; if ( el ) oOwnerWindow = FCKTools.GetElementWindow( el ) ; } else { c.X += el.scrollLeft ; c.Y += el.scrollTop ; break ; } } } // Return the Coordinates object return c ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktools_gecko.js
JavaScript
asf20
7,980
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Dialog windows operations. */ var FCKDialog = ( function() { var topDialog ; var baseZIndex ; var cover ; // The document that holds the dialog. var topWindow = window.parent ; while ( topWindow.parent && topWindow.parent != topWindow ) { try { if ( topWindow.parent.document.domain != document.domain ) break ; if ( topWindow.parent.document.getElementsByTagName( 'frameset' ).length > 0 ) break ; } catch ( e ) { break ; } topWindow = topWindow.parent ; } var topDocument = topWindow.document ; var getZIndex = function() { if ( !baseZIndex ) baseZIndex = FCKConfig.FloatingPanelsZIndex + 999 ; return ++baseZIndex ; } // TODO : This logic is not actually working when reducing the window, only // when enlarging it. var resizeHandler = function() { if ( !cover ) return ; var relElement = FCKTools.IsStrictMode( topDocument ) ? topDocument.documentElement : topDocument.body ; FCKDomTools.SetElementStyles( cover, { 'width' : Math.max( relElement.scrollWidth, relElement.clientWidth, topDocument.scrollWidth || 0 ) - 1 + 'px', 'height' : Math.max( relElement.scrollHeight, relElement.clientHeight, topDocument.scrollHeight || 0 ) - 1 + 'px' } ) ; } return { /** * Opens a dialog window using the standard dialog template. */ OpenDialog : function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow, resizable ) { if ( !topDialog ) this.DisplayMainCover() ; // Setup the dialog info to be passed to the dialog. var dialogInfo = { Title : dialogTitle, Page : dialogPage, Editor : window, CustomValue : customValue, // Optional TopWindow : topWindow } FCK.ToolbarSet.CurrentInstance.Selection.Save( true ) ; // Calculate the dialog position, centering it on the screen. var viewSize = FCKTools.GetViewPaneSize( topWindow ) ; var scrollPosition = { 'X' : 0, 'Y' : 0 } ; var useAbsolutePosition = FCKBrowserInfo.IsIE && ( !FCKBrowserInfo.IsIE7 || !FCKTools.IsStrictMode( topWindow.document ) ) ; if ( useAbsolutePosition ) scrollPosition = FCKTools.GetScrollPosition( topWindow ) ; var iTop = Math.max( scrollPosition.Y + ( viewSize.Height - height - 20 ) / 2, 0 ) ; var iLeft = Math.max( scrollPosition.X + ( viewSize.Width - width - 20 ) / 2, 0 ) ; // Setup the IFRAME that will hold the dialog. var dialog = topDocument.createElement( 'iframe' ) ; FCKTools.ResetStyles( dialog ) ; dialog.src = FCKConfig.BasePath + 'fckdialog.html' ; // Dummy URL for testing whether the code in fckdialog.js alone leaks memory. // dialog.src = 'about:blank'; dialog.frameBorder = 0 ; dialog.allowTransparency = true ; FCKDomTools.SetElementStyles( dialog, { 'position' : ( useAbsolutePosition ) ? 'absolute' : 'fixed', 'top' : iTop + 'px', 'left' : iLeft + 'px', 'width' : width + 'px', 'height' : height + 'px', 'zIndex' : getZIndex() } ) ; // Save the dialog info to be used by the dialog page once loaded. dialog._DialogArguments = dialogInfo ; // Append the IFRAME to the target document. topDocument.body.appendChild( dialog ) ; // Keep record of the dialog's parent/child relationships. dialog._ParentDialog = topDialog ; topDialog = dialog ; }, /** * (For internal use) * Called when the top dialog is closed. */ OnDialogClose : function( dialogWindow ) { var dialog = dialogWindow.frameElement ; FCKDomTools.RemoveNode( dialog ) ; if ( dialog._ParentDialog ) // Nested Dialog. { topDialog = dialog._ParentDialog ; dialog._ParentDialog.contentWindow.SetEnabled( true ) ; } else // First Dialog. { // Set the Focus in the browser, so the "OnBlur" event is not // fired. In IE, there is no need to do that because the dialog // already moved the selection to the editing area before // closing (EnsureSelection). Also, the Focus() call here // causes memory leak on IE7 (weird). if ( !FCKBrowserInfo.IsIE ) FCK.Focus() ; this.HideMainCover() ; // Bug #1918: Assigning topDialog = null directly causes IE6 to crash. setTimeout( function(){ topDialog = null ; }, 0 ) ; // Release the previously saved selection. FCK.ToolbarSet.CurrentInstance.Selection.Release() ; } }, DisplayMainCover : function() { // Setup the DIV that will be used to cover. cover = topDocument.createElement( 'div' ) ; FCKTools.ResetStyles( cover ) ; FCKDomTools.SetElementStyles( cover, { 'position' : 'absolute', 'zIndex' : getZIndex(), 'top' : '0px', 'left' : '0px', 'backgroundColor' : FCKConfig.BackgroundBlockerColor } ) ; FCKDomTools.SetOpacity( cover, FCKConfig.BackgroundBlockerOpacity ) ; // For IE6-, we need to fill the cover with a transparent IFRAME, // to properly block <select> fields. if ( FCKBrowserInfo.IsIE && !FCKBrowserInfo.IsIE7 ) { var iframe = topDocument.createElement( 'iframe' ) ; FCKTools.ResetStyles( iframe ) ; iframe.hideFocus = true ; iframe.frameBorder = 0 ; iframe.src = FCKTools.GetVoidUrl() ; FCKDomTools.SetElementStyles( iframe, { 'width' : '100%', 'height' : '100%', 'position' : 'absolute', 'left' : '0px', 'top' : '0px', 'filter' : 'progid:DXImageTransform.Microsoft.Alpha(opacity=0)' } ) ; cover.appendChild( iframe ) ; } // We need to manually adjust the cover size on resize. FCKTools.AddEventListener( topWindow, 'resize', resizeHandler ) ; resizeHandler() ; topDocument.body.appendChild( cover ) ; FCKFocusManager.Lock() ; // Prevent the user from refocusing the disabled // editing window by pressing Tab. (Bug #2065) var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ; el._fck_originalTabIndex = el.tabIndex ; el.tabIndex = -1 ; }, HideMainCover : function() { FCKDomTools.RemoveNode( cover ) ; FCKFocusManager.Unlock() ; // Revert the tab index hack. (Bug #2065) var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ; el.tabIndex = el._fck_originalTabIndex ; FCKDomTools.ClearElementJSProperty( el, '_fck_originalTabIndex' ) ; }, GetCover : function() { return cover ; } } ; } )() ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckdialog.js
JavaScript
asf20
7,247
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Tool object to manage HTML lists items (UL, OL and LI). */ var FCKListHandler = { OutdentListItem : function( listItem ) { var eParent = listItem.parentNode ; // It may happen that a LI is not in a UL or OL (Orphan). if ( eParent.tagName.toUpperCase().Equals( 'UL','OL' ) ) { var oDocument = FCKTools.GetElementDocument( listItem ) ; var oDogFrag = new FCKDocumentFragment( oDocument ) ; // All children and successive siblings will be moved to a a DocFrag. var eNextSiblings = oDogFrag.RootNode ; var eHasLiSibling = false ; // If we have nested lists inside it, let's move it to the list of siblings. var eChildList = FCKDomTools.GetFirstChild( listItem, ['UL','OL'] ) ; if ( eChildList ) { eHasLiSibling = true ; var eChild ; // The extra () is to avoid a warning with strict error checking. This is ok. while ( (eChild = eChildList.firstChild) ) eNextSiblings.appendChild( eChildList.removeChild( eChild ) ) ; FCKDomTools.RemoveNode( eChildList ) ; } // Move all successive siblings. var eSibling ; var eHasSuccessiveLiSibling = false ; // The extra () is to avoid a warning with strict error checking. This is ok. while ( (eSibling = listItem.nextSibling) ) { if ( !eHasLiSibling && eSibling.nodeType == 1 && eSibling.nodeName.toUpperCase() == 'LI' ) eHasSuccessiveLiSibling = eHasLiSibling = true ; eNextSiblings.appendChild( eSibling.parentNode.removeChild( eSibling ) ) ; // If a sibling is a incorrectly nested UL or OL, consider only its children. if ( !eHasSuccessiveLiSibling && eSibling.nodeType == 1 && eSibling.nodeName.toUpperCase().Equals( 'UL','OL' ) ) FCKDomTools.RemoveNode( eSibling, true ) ; } // If we are in a list chain. var sParentParentTag = eParent.parentNode.tagName.toUpperCase() ; var bWellNested = ( sParentParentTag == 'LI' ) ; if ( bWellNested || sParentParentTag.Equals( 'UL','OL' ) ) { if ( eHasLiSibling ) { var eChildList = eParent.cloneNode( false ) ; oDogFrag.AppendTo( eChildList ) ; listItem.appendChild( eChildList ) ; } else if ( bWellNested ) oDogFrag.InsertAfterNode( eParent.parentNode ) ; else oDogFrag.InsertAfterNode( eParent ) ; // Move the LI after its parent.parentNode (the upper LI in the hierarchy). if ( bWellNested ) FCKDomTools.InsertAfterNode( eParent.parentNode, eParent.removeChild( listItem ) ) ; else FCKDomTools.InsertAfterNode( eParent, eParent.removeChild( listItem ) ) ; } else { if ( eHasLiSibling ) { var eNextList = eParent.cloneNode( false ) ; oDogFrag.AppendTo( eNextList ) ; FCKDomTools.InsertAfterNode( eParent, eNextList ) ; } var eBlock = oDocument.createElement( FCKConfig.EnterMode == 'p' ? 'p' : 'div' ) ; FCKDomTools.MoveChildren( eParent.removeChild( listItem ), eBlock ) ; FCKDomTools.InsertAfterNode( eParent, eBlock ) ; if ( FCKConfig.EnterMode == 'br' ) { // We need the bogus to make it work properly. In Gecko, we // need it before the new block, on IE, after it. if ( FCKBrowserInfo.IsGecko ) eBlock.parentNode.insertBefore( FCKTools.CreateBogusBR( oDocument ), eBlock ) ; else FCKDomTools.InsertAfterNode( eBlock, FCKTools.CreateBogusBR( oDocument ) ) ; FCKDomTools.RemoveNode( eBlock, true ) ; } } if ( this.CheckEmptyList( eParent ) ) FCKDomTools.RemoveNode( eParent, true ) ; } }, CheckEmptyList : function( listElement ) { return ( FCKDomTools.GetFirstChild( listElement, 'LI' ) == null ) ; }, // Check if the list has contents (excluding nested lists). CheckListHasContents : function( listElement ) { var eChildNode = listElement.firstChild ; while ( eChildNode ) { switch ( eChildNode.nodeType ) { case 1 : if ( !eChildNode.nodeName.IEquals( 'UL','LI' ) ) return true ; break ; case 3 : if ( eChildNode.nodeValue.Trim().length > 0 ) return true ; } eChildNode = eChildNode.nextSibling ; } return false ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcklisthandler.js
JavaScript
asf20
4,863
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKXHtml object, responsible for the XHTML operations. */ var FCKXHtml = new Object() ; FCKXHtml.CurrentJobNum = 0 ; FCKXHtml.GetXHTML = function( node, includeNode, format ) { FCKDomTools.CheckAndRemovePaddingNode( FCKTools.GetElementDocument( node ), FCKConfig.EnterMode ) ; FCKXHtmlEntities.Initialize() ; // Set the correct entity to use for empty blocks. this._NbspEntity = ( FCKConfig.ProcessHTMLEntities? 'nbsp' : '#160' ) ; // Save the current IsDirty state. The XHTML processor may change the // original HTML, dirtying it. var bIsDirty = FCK.IsDirty() ; // Special blocks are blocks of content that remain untouched during the // process. It is used for SCRIPTs and STYLEs. FCKXHtml.SpecialBlocks = new Array() ; // Create the XML DOMDocument object. this.XML = FCKTools.CreateXmlObject( 'DOMDocument' ) ; // Add a root element that holds all child nodes. this.MainNode = this.XML.appendChild( this.XML.createElement( 'xhtml' ) ) ; FCKXHtml.CurrentJobNum++ ; // var dTimer = new Date() ; if ( includeNode ) this._AppendNode( this.MainNode, node ) ; else this._AppendChildNodes( this.MainNode, node, false ) ; // Get the resulting XHTML as a string. var sXHTML = this._GetMainXmlString() ; // alert( 'Time: ' + ( ( ( new Date() ) - dTimer ) ) + ' ms' ) ; this.XML = null ; // Safari adds xmlns="http://www.w3.org/1999/xhtml" to the root node (#963) if ( FCKBrowserInfo.IsSafari ) sXHTML = sXHTML.replace( /^<xhtml.*?>/, '<xhtml>' ) ; // Strip the "XHTML" root node. sXHTML = sXHTML.substr( 7, sXHTML.length - 15 ).Trim() ; // According to the doctype set the proper end for self-closing tags // HTML: <br> // XHTML: Add a space, like <br/> -> <br /> if (FCKConfig.DocType.length > 0 && FCKRegexLib.HtmlDocType.test( FCKConfig.DocType ) ) sXHTML = sXHTML.replace( FCKRegexLib.SpaceNoClose, '>'); else sXHTML = sXHTML.replace( FCKRegexLib.SpaceNoClose, ' />'); if ( FCKConfig.ForceSimpleAmpersand ) sXHTML = sXHTML.replace( FCKRegexLib.ForceSimpleAmpersand, '&' ) ; if ( format ) sXHTML = FCKCodeFormatter.Format( sXHTML ) ; // Now we put back the SpecialBlocks contents. for ( var i = 0 ; i < FCKXHtml.SpecialBlocks.length ; i++ ) { var oRegex = new RegExp( '___FCKsi___' + i ) ; sXHTML = sXHTML.replace( oRegex, FCKXHtml.SpecialBlocks[i] ) ; } // Replace entities marker with the ampersand. sXHTML = sXHTML.replace( FCKRegexLib.GeckoEntitiesMarker, '&' ) ; // Restore the IsDirty state if it was not dirty. if ( !bIsDirty ) FCK.ResetIsDirty() ; FCKDomTools.EnforcePaddingNode( FCKTools.GetElementDocument( node ), FCKConfig.EnterMode ) ; return sXHTML ; } FCKXHtml._AppendAttribute = function( xmlNode, attributeName, attributeValue ) { try { if ( attributeValue == undefined || attributeValue == null ) attributeValue = '' ; else if ( attributeValue.replace ) { if ( FCKConfig.ForceSimpleAmpersand ) attributeValue = attributeValue.replace( /&/g, '___FCKAmp___' ) ; // Entities must be replaced in the attribute values. attributeValue = attributeValue.replace( FCKXHtmlEntities.EntitiesRegex, FCKXHtml_GetEntity ) ; } // Create the attribute. var oXmlAtt = this.XML.createAttribute( attributeName ) ; oXmlAtt.value = attributeValue ; // Set the attribute in the node. xmlNode.attributes.setNamedItem( oXmlAtt ) ; } catch (e) {} } FCKXHtml._AppendChildNodes = function( xmlNode, htmlNode, isBlockElement ) { var oNode = htmlNode.firstChild ; while ( oNode ) { this._AppendNode( xmlNode, oNode ) ; oNode = oNode.nextSibling ; } // Trim block elements. This is also needed to avoid Firefox leaving extra // BRs at the end of them. if ( isBlockElement && htmlNode.tagName && htmlNode.tagName.toLowerCase() != 'pre' ) { FCKDomTools.TrimNode( xmlNode ) ; if ( FCKConfig.FillEmptyBlocks ) { var lastChild = xmlNode.lastChild ; if ( lastChild && lastChild.nodeType == 1 && lastChild.nodeName == 'br' ) this._AppendEntity( xmlNode, this._NbspEntity ) ; } } // If the resulting node is empty. if ( xmlNode.childNodes.length == 0 ) { if ( isBlockElement && FCKConfig.FillEmptyBlocks ) { this._AppendEntity( xmlNode, this._NbspEntity ) ; return xmlNode ; } var sNodeName = xmlNode.nodeName ; // Some inline elements are required to have something inside (span, strong, etc...). if ( FCKListsLib.InlineChildReqElements[ sNodeName ] ) return null ; // We can't use short representation of empty elements that are not marked // as empty in th XHTML DTD. if ( !FCKListsLib.EmptyElements[ sNodeName ] ) xmlNode.appendChild( this.XML.createTextNode('') ) ; } return xmlNode ; } FCKXHtml._AppendNode = function( xmlNode, htmlNode ) { if ( !htmlNode ) return false ; switch ( htmlNode.nodeType ) { // Element Node. case 1 : // If we detect a <br> inside a <pre> in Gecko, turn it into a line break instead. // This is a workaround for the Gecko bug here: https://bugzilla.mozilla.org/show_bug.cgi?id=92921 if ( FCKBrowserInfo.IsGecko && htmlNode.tagName.toLowerCase() == 'br' && htmlNode.parentNode.tagName.toLowerCase() == 'pre' ) { var val = '\r' ; if ( htmlNode == htmlNode.parentNode.firstChild ) val += '\r' ; return FCKXHtml._AppendNode( xmlNode, this.XML.createTextNode( val ) ) ; } // Here we found an element that is not the real element, but a // fake one (like the Flash placeholder image), so we must get the real one. if ( htmlNode.getAttribute('_fckfakelement') ) return FCKXHtml._AppendNode( xmlNode, FCK.GetRealElement( htmlNode ) ) ; // Ignore bogus BR nodes in the DOM. if ( FCKBrowserInfo.IsGecko && ( htmlNode.hasAttribute('_moz_editor_bogus_node') || htmlNode.getAttribute( 'type' ) == '_moz' ) ) { if ( htmlNode.nextSibling ) return false ; else { htmlNode.removeAttribute( '_moz_editor_bogus_node' ) ; htmlNode.removeAttribute( 'type' ) ; } } // This is for elements that are instrumental to FCKeditor and // must be removed from the final HTML. if ( htmlNode.getAttribute('_fcktemp') ) return false ; // Get the element name. var sNodeName = htmlNode.tagName.toLowerCase() ; if ( FCKBrowserInfo.IsIE ) { // IE doens't include the scope name in the nodeName. So, add the namespace. if ( htmlNode.scopeName && htmlNode.scopeName != 'HTML' && htmlNode.scopeName != 'FCK' ) sNodeName = htmlNode.scopeName.toLowerCase() + ':' + sNodeName ; } else { if ( sNodeName.StartsWith( 'fck:' ) ) sNodeName = sNodeName.Remove( 0,4 ) ; } // Check if the node name is valid, otherwise ignore this tag. // If the nodeName starts with a slash, it is a orphan closing tag. // On some strange cases, the nodeName is empty, even if the node exists. if ( !FCKRegexLib.ElementName.test( sNodeName ) ) return false ; // The already processed nodes must be marked to avoid then to be duplicated (bad formatted HTML). // So here, the "mark" is checked... if the element is Ok, then mark it. if ( htmlNode._fckxhtmljob && htmlNode._fckxhtmljob == FCKXHtml.CurrentJobNum ) return false ; var oNode = this.XML.createElement( sNodeName ) ; // Add all attributes. FCKXHtml._AppendAttributes( xmlNode, htmlNode, oNode, sNodeName ) ; htmlNode._fckxhtmljob = FCKXHtml.CurrentJobNum ; // Tag specific processing. var oTagProcessor = FCKXHtml.TagProcessors[ sNodeName ] ; if ( oTagProcessor ) oNode = oTagProcessor( oNode, htmlNode, xmlNode ) ; else oNode = this._AppendChildNodes( oNode, htmlNode, Boolean( FCKListsLib.NonEmptyBlockElements[ sNodeName ] ) ) ; if ( !oNode ) return false ; xmlNode.appendChild( oNode ) ; break ; // Text Node. case 3 : if ( htmlNode.parentNode && htmlNode.parentNode.nodeName.IEquals( 'pre' ) ) return this._AppendTextNode( xmlNode, htmlNode.nodeValue ) ; return this._AppendTextNode( xmlNode, htmlNode.nodeValue.ReplaceNewLineChars(' ') ) ; // Comment case 8 : // IE catches the <!DOTYPE ... > as a comment, but it has no // innerHTML, so we can catch it, and ignore it. if ( FCKBrowserInfo.IsIE && !htmlNode.innerHTML ) break ; try { xmlNode.appendChild( this.XML.createComment( htmlNode.nodeValue ) ) ; } catch (e) { /* Do nothing... probably this is a wrong format comment. */ } break ; // Unknown Node type. default : xmlNode.appendChild( this.XML.createComment( "Element not supported - Type: " + htmlNode.nodeType + " Name: " + htmlNode.nodeName ) ) ; break ; } return true ; } // Append an item to the SpecialBlocks array and returns the tag to be used. FCKXHtml._AppendSpecialItem = function( item ) { return '___FCKsi___' + ( FCKXHtml.SpecialBlocks.push( item ) - 1 ) ; } FCKXHtml._AppendEntity = function( xmlNode, entity ) { xmlNode.appendChild( this.XML.createTextNode( '#?-:' + entity + ';' ) ) ; } FCKXHtml._AppendTextNode = function( targetNode, textValue ) { var bHadText = textValue.length > 0 ; if ( bHadText ) targetNode.appendChild( this.XML.createTextNode( textValue.replace( FCKXHtmlEntities.EntitiesRegex, FCKXHtml_GetEntity ) ) ) ; return bHadText ; } // Retrieves a entity (internal format) for a given character. function FCKXHtml_GetEntity( character ) { // We cannot simply place the entities in the text, because the XML parser // will translate & to &amp;. So we use a temporary marker which is replaced // in the end of the processing. var sEntity = FCKXHtmlEntities.Entities[ character ] || ( '#' + character.charCodeAt(0) ) ; return '#?-:' + sEntity + ';' ; } // An object that hold tag specific operations. FCKXHtml.TagProcessors = { a : function( node, htmlNode ) { // Firefox may create empty tags when deleting the selection in some special cases (SF-BUG 1556878). if ( htmlNode.innerHTML.Trim().length == 0 && !htmlNode.name ) return false ; var sSavedUrl = htmlNode.getAttribute( '_fcksavedurl' ) ; if ( sSavedUrl != null ) FCKXHtml._AppendAttribute( node, 'href', sSavedUrl ) ; // Anchors with content has been marked with an additional class, now we must remove it. if ( FCKBrowserInfo.IsIE ) { // Buggy IE, doesn't copy the name of changed anchors. if ( htmlNode.name ) FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ; } node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ; return node ; }, area : function( node, htmlNode ) { var sSavedUrl = htmlNode.getAttribute( '_fcksavedurl' ) ; if ( sSavedUrl != null ) FCKXHtml._AppendAttribute( node, 'href', sSavedUrl ) ; // IE ignores the "COORDS" and "SHAPE" attribute so we must add it manually. if ( FCKBrowserInfo.IsIE ) { if ( ! node.attributes.getNamedItem( 'coords' ) ) { var sCoords = htmlNode.getAttribute( 'coords', 2 ) ; if ( sCoords && sCoords != '0,0,0' ) FCKXHtml._AppendAttribute( node, 'coords', sCoords ) ; } if ( ! node.attributes.getNamedItem( 'shape' ) ) { var sShape = htmlNode.getAttribute( 'shape', 2 ) ; if ( sShape && sShape.length > 0 ) FCKXHtml._AppendAttribute( node, 'shape', sShape.toLowerCase() ) ; } } return node ; }, body : function( node, htmlNode ) { node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ; // Remove spellchecker attributes added for Firefox when converting to HTML code (Bug #1351). node.removeAttribute( 'spellcheck' ) ; return node ; }, // IE loses contents of iframes, and Gecko does give it back HtmlEncoded // Note: Opera does lose the content and doesn't provide it in the innerHTML string iframe : function( node, htmlNode ) { var sHtml = htmlNode.innerHTML ; // Gecko does give back the encoded html if ( FCKBrowserInfo.IsGecko ) sHtml = FCKTools.HTMLDecode( sHtml ); // Remove the saved urls here as the data won't be processed as nodes sHtml = sHtml.replace( /\s_fcksavedurl="[^"]*"/g, '' ) ; node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( sHtml ) ) ) ; return node ; }, img : function( node, htmlNode ) { // The "ALT" attribute is required in XHTML. if ( ! node.attributes.getNamedItem( 'alt' ) ) FCKXHtml._AppendAttribute( node, 'alt', '' ) ; var sSavedUrl = htmlNode.getAttribute( '_fcksavedurl' ) ; if ( sSavedUrl != null ) FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ; // Bug #768 : If the width and height are defined inline CSS, // don't define it again in the HTML attributes. if ( htmlNode.style.width ) node.removeAttribute( 'width' ) ; if ( htmlNode.style.height ) node.removeAttribute( 'height' ) ; return node ; }, // Fix orphaned <li> nodes (Bug #503). li : function( node, htmlNode, targetNode ) { // If the XML parent node is already a <ul> or <ol>, then add the <li> as usual. if ( targetNode.nodeName.IEquals( ['ul', 'ol'] ) ) return FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; var newTarget = FCKXHtml.XML.createElement( 'ul' ) ; // Reset the _fckxhtmljob so the HTML node is processed again. htmlNode._fckxhtmljob = null ; // Loop through all sibling LIs, adding them to the <ul>. do { FCKXHtml._AppendNode( newTarget, htmlNode ) ; // Look for the next element following this <li>. do { htmlNode = FCKDomTools.GetNextSibling( htmlNode ) ; } while ( htmlNode && htmlNode.nodeType == 3 && htmlNode.nodeValue.Trim().length == 0 ) } while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' ) return newTarget ; }, // Fix nested <ul> and <ol>. ol : function( node, htmlNode, targetNode ) { if ( htmlNode.innerHTML.Trim().length == 0 ) return false ; var ePSibling = targetNode.lastChild ; if ( ePSibling && ePSibling.nodeType == 3 ) ePSibling = ePSibling.previousSibling ; if ( ePSibling && ePSibling.nodeName.toUpperCase() == 'LI' ) { htmlNode._fckxhtmljob = null ; FCKXHtml._AppendNode( ePSibling, htmlNode ) ; return false ; } node = FCKXHtml._AppendChildNodes( node, htmlNode ) ; return node ; }, pre : function ( node, htmlNode ) { var firstChild = htmlNode.firstChild ; if ( firstChild && firstChild.nodeType == 3 ) node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( '\r\n' ) ) ) ; FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; return node ; }, script : function( node, htmlNode ) { // The "TYPE" attribute is required in XHTML. if ( ! node.attributes.getNamedItem( 'type' ) ) FCKXHtml._AppendAttribute( node, 'type', 'text/javascript' ) ; node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( htmlNode.text ) ) ) ; return node ; }, span : function( node, htmlNode ) { // Firefox may create empty tags when deleting the selection in some special cases (SF-BUG 1084404). if ( htmlNode.innerHTML.length == 0 ) return false ; node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ; return node ; }, style : function( node, htmlNode ) { // The "TYPE" attribute is required in XHTML. if ( ! node.attributes.getNamedItem( 'type' ) ) FCKXHtml._AppendAttribute( node, 'type', 'text/css' ) ; var cssText = htmlNode.innerHTML ; if ( FCKBrowserInfo.IsIE ) // Bug #403 : IE always appends a \r\n to the beginning of StyleNode.innerHTML cssText = cssText.replace( /^(\r\n|\n|\r)/, '' ) ; node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( cssText ) ) ) ; return node ; }, title : function( node, htmlNode ) { node.appendChild( FCKXHtml.XML.createTextNode( FCK.EditorDocument.title ) ) ; return node ; } } ; FCKXHtml.TagProcessors.ul = FCKXHtml.TagProcessors.ol ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckxhtml.js
JavaScript
asf20
16,855
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Manage table operations (non-IE). */ FCKTableHandler.GetSelectedCells = function() { var aCells = new Array() ; var oSelection = FCKSelection.GetSelection() ; // If the selection is a text. if ( oSelection.rangeCount == 1 && oSelection.anchorNode.nodeType == 3 ) { var oParent = FCKTools.GetElementAscensor( oSelection.anchorNode, 'TD,TH' ) ; if ( oParent ) aCells[0] = oParent ; return aCells ; } for ( var i = 0 ; i < oSelection.rangeCount ; i++ ) { var oRange = oSelection.getRangeAt(i) ; var oCell ; if ( oRange.startContainer.tagName.Equals( 'TD', 'TH' ) ) oCell = oRange.startContainer ; else oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ; if ( oCell.nodeName.Equals( 'TD', 'TH' ) ) aCells[aCells.length] = oCell ; } return aCells ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js
JavaScript
asf20
1,475
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Library of keys collections. * * Test have shown that check for the existence of a key in an object is the * most efficient list entry check (10x faster that regex). Example: * if ( FCKListsLib.<ListName>[key] != null ) */ var FCKListsLib = { // We are not handling <ins> and <del> as block elements, for now. BlockElements : { address:1,blockquote:1,center:1,div:1,dl:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,marquee:1,noscript:1,ol:1,p:1,pre:1,script:1,table:1,ul:1 }, // Block elements that may be filled with &nbsp; if empty. NonEmptyBlockElements : { p:1,div:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,address:1,pre:1,ol:1,ul:1,li:1,td:1,th:1 }, // Inline elements which MUST have child nodes. InlineChildReqElements : { abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1 }, // Inline elements which are not marked as empty "Empty" in the XHTML DTD. InlineNonEmptyElements : { a:1,abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1 }, // Elements marked as empty "Empty" in the XHTML DTD. EmptyElements : { base:1,col:1,meta:1,link:1,hr:1,br:1,param:1,img:1,area:1,input:1 }, // Elements that may be considered the "Block boundary" in an element path. PathBlockElements : { address:1,blockquote:1,dl:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,p:1,pre:1,li:1,dt:1,de:1 }, // Elements that may be considered the "Block limit" in an element path. PathBlockLimitElements : { body:1,div:1,td:1,th:1,caption:1,form:1 }, // Block elements for the Styles System. StyleBlockElements : { address:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,p:1,pre:1 }, // Object elements for the Styles System. StyleObjectElements : { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,ol:1,ul:1 }, // Elements that accept text nodes, but are not possible to edit in the browser. NonEditableElements : { button:1,option:1,script:1,iframe:1,textarea:1,object:1,embed:1,map:1,applet:1 }, // Elements used to separate block contents. BlockBoundaries : { p:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,address:1,pre:1,ol:1,ul:1,li:1,dt:1,de:1,table:1,thead:1,tbody:1,tfoot:1,tr:1,th:1,td:1,caption:1,col:1,colgroup:1,blockquote:1,body:1 }, ListBoundaries : { p:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,address:1,pre:1,ol:1,ul:1,li:1,dt:1,de:1,table:1,thead:1,tbody:1,tfoot:1,tr:1,th:1,td:1,caption:1,col:1,colgroup:1,blockquote:1,body:1,br:1 } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcklistslib.js
JavaScript
asf20
3,266
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Creation and initialization of the "FCK" object. This is the main * object that represents an editor instance. * (IE specific implementations) */ FCK.Description = "FCKeditor for Internet Explorer 5.5+" ; FCK._GetBehaviorsStyle = function() { if ( !FCK._BehaviorsStyle ) { var sBasePath = FCKConfig.BasePath ; var sTableBehavior = '' ; var sStyle ; // The behaviors should be pointed using the BasePath to avoid security // errors when using a different BaseHref. sStyle = '<style type="text/css" _fcktemp="true">' ; if ( FCKConfig.ShowBorders ) sTableBehavior = 'url(' + sBasePath + 'css/behaviors/showtableborders.htc)' ; // Disable resize handlers. sStyle += 'INPUT,TEXTAREA,SELECT,.FCK__Anchor,.FCK__PageBreak,.FCK__InputHidden' ; if ( FCKConfig.DisableObjectResizing ) { sStyle += ',IMG' ; sTableBehavior += ' url(' + sBasePath + 'css/behaviors/disablehandles.htc)' ; } sStyle += ' { behavior: url(' + sBasePath + 'css/behaviors/disablehandles.htc) ; }' ; if ( sTableBehavior.length > 0 ) sStyle += 'TABLE { behavior: ' + sTableBehavior + ' ; }' ; sStyle += '</style>' ; FCK._BehaviorsStyle = sStyle ; } return FCK._BehaviorsStyle ; } function Doc_OnMouseUp() { if ( FCK.EditorWindow.event.srcElement.tagName == 'HTML' ) { FCK.Focus() ; FCK.EditorWindow.event.cancelBubble = true ; FCK.EditorWindow.event.returnValue = false ; } } function Doc_OnPaste() { var body = FCK.EditorDocument.body ; body.detachEvent( 'onpaste', Doc_OnPaste ) ; var ret = FCK.Paste( !FCKConfig.ForcePasteAsPlainText && !FCKConfig.AutoDetectPasteFromWord ) ; body.attachEvent( 'onpaste', Doc_OnPaste ) ; return ret ; } function Doc_OnDblClick() { FCK.OnDoubleClick( FCK.EditorWindow.event.srcElement ) ; FCK.EditorWindow.event.cancelBubble = true ; } function Doc_OnSelectionChange() { // Don't fire the event if no document is loaded. if ( !FCK.IsSelectionChangeLocked && FCK.EditorDocument ) FCK.Events.FireEvent( "OnSelectionChange" ) ; } function Doc_OnDrop() { if ( FCK.MouseDownFlag ) { FCK.MouseDownFlag = false ; return ; } if ( FCKConfig.ForcePasteAsPlainText ) { var evt = FCK.EditorWindow.event ; if ( FCK._CheckIsPastingEnabled() || FCKConfig.ShowDropDialog ) FCK.PasteAsPlainText( evt.dataTransfer.getData( 'Text' ) ) ; evt.returnValue = false ; evt.cancelBubble = true ; } } FCK.InitializeBehaviors = function( dontReturn ) { // Set the focus to the editable area when clicking in the document area. // TODO: The cursor must be positioned at the end. this.EditorDocument.attachEvent( 'onmouseup', Doc_OnMouseUp ) ; // Intercept pasting operations this.EditorDocument.body.attachEvent( 'onpaste', Doc_OnPaste ) ; // Intercept drop operations this.EditorDocument.body.attachEvent( 'ondrop', Doc_OnDrop ) ; // Reset the context menu. FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ; this.EditorDocument.attachEvent("onkeydown", FCK._KeyDownListener ) ; this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ; this.EditorDocument.attachEvent("onbeforedeactivate", function(){ FCKSelection.Save() ; } ) ; // Catch cursor selection changes. this.EditorDocument.attachEvent("onselectionchange", Doc_OnSelectionChange ) ; FCKTools.AddEventListener( FCK.EditorDocument, 'mousedown', Doc_OnMouseDown ) ; } FCK.InsertHtml = function( html ) { html = FCKConfig.ProtectedSource.Protect( html ) ; html = FCK.ProtectEvents( html ) ; html = FCK.ProtectUrls( html ) ; html = FCK.ProtectTags( html ) ; // FCK.Focus() ; FCKSelection.Restore() ; FCK.EditorWindow.focus() ; FCKUndo.SaveUndoStep() ; // Gets the actual selection. var oSel = FCKSelection.GetSelection() ; // Deletes the actual selection contents. if ( oSel.type.toLowerCase() == 'control' ) oSel.clear() ; // Using the following trick, any comment in the beginning of the HTML will // be preserved. html = '<span id="__fakeFCKRemove__" style="display:none;">fakeFCKRemove</span>' + html ; // Insert the HTML. oSel.createRange().pasteHTML( html ) ; // Remove the fake node FCK.EditorDocument.getElementById('__fakeFCKRemove__').removeNode( true ) ; FCKDocumentProcessor.Process( FCK.EditorDocument ) ; // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call. this.Events.FireEvent( "OnSelectionChange" ) ; } FCK.SetInnerHtml = function( html ) // IE Only { var oDoc = FCK.EditorDocument ; // Using the following trick, any comment in the beginning of the HTML will // be preserved. oDoc.body.innerHTML = '<div id="__fakeFCKRemove__">&nbsp;</div>' + html ; oDoc.getElementById('__fakeFCKRemove__').removeNode( true ) ; } function FCK_PreloadImages() { var oPreloader = new FCKImagePreloader() ; // Add the configured images. oPreloader.AddImages( FCKConfig.PreloadImages ) ; // Add the skin icons strip. oPreloader.AddImages( FCKConfig.SkinPath + 'fck_strip.gif' ) ; oPreloader.OnComplete = LoadToolbarSetup ; oPreloader.Start() ; } // Disable the context menu in the editor (outside the editing area). function Document_OnContextMenu() { return ( event.srcElement._FCKShowContextMenu == true ) ; } document.oncontextmenu = Document_OnContextMenu ; function FCK_Cleanup() { this.LinkedField = null ; this.EditorWindow = null ; this.EditorDocument = null ; } FCK._ExecPaste = function() { // As we call ExecuteNamedCommand('Paste'), it would enter in a loop. So, let's use a semaphore. if ( FCK._PasteIsRunning ) return true ; if ( FCKConfig.ForcePasteAsPlainText ) { FCK.PasteAsPlainText() ; return false ; } var sHTML = FCK._CheckIsPastingEnabled( true ) ; if ( sHTML === false ) FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security'] ) ; else { if ( FCKConfig.AutoDetectPasteFromWord && sHTML.length > 0 ) { var re = /<\w[^>]*(( class="?MsoNormal"?)|(="mso-))/gi ; if ( re.test( sHTML ) ) { if ( confirm( FCKLang.PasteWordConfirm ) ) { FCK.PasteFromWord() ; return false ; } } } // Instead of inserting the retrieved HTML, let's leave the OS work for us, // by calling FCK.ExecuteNamedCommand( 'Paste' ). It could give better results. // Enable the semaphore to avoid a loop. FCK._PasteIsRunning = true ; FCK.ExecuteNamedCommand( 'Paste' ) ; // Removes the semaphore. delete FCK._PasteIsRunning ; } // Let's always make a custom implementation (return false), otherwise // the new Keyboard Handler may conflict with this code, and the CTRL+V code // could result in a simple "V" being pasted. return false ; } FCK.PasteAsPlainText = function( forceText ) { if ( !FCK._CheckIsPastingEnabled() ) { FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText' ) ; return ; } // Get the data available in the clipboard in text format. var sText = null ; if ( ! forceText ) sText = clipboardData.getData("Text") ; else sText = forceText ; if ( sText && sText.length > 0 ) { // Replace the carriage returns with <BR> sText = FCKTools.HTMLEncode( sText ) ; sText = FCKTools.ProcessLineBreaks( window, FCKConfig, sText ) ; var closeTagIndex = sText.search( '</p>' ) ; var startTagIndex = sText.search( '<p>' ) ; if ( ( closeTagIndex != -1 && startTagIndex != -1 && closeTagIndex < startTagIndex ) || ( closeTagIndex != -1 && startTagIndex == -1 ) ) { var prefix = sText.substr( 0, closeTagIndex ) ; sText = sText.substr( closeTagIndex + 4 ) ; this.InsertHtml( prefix ) ; } // Insert the resulting data in the editor. FCKUndo.SaveLocked = true ; this.InsertHtml( sText ) ; FCKUndo.SaveLocked = false ; } } FCK._CheckIsPastingEnabled = function( returnContents ) { // The following seams to be the only reliable way to check is script // pasting operations are enabled in the security settings of IE6 and IE7. // It adds a little bit of overhead to the check, but so far that's the // only way, mainly because of IE7. FCK._PasteIsEnabled = false ; document.body.attachEvent( 'onpaste', FCK_CheckPasting_Listener ) ; // The execCommand in GetClipboardHTML will fire the "onpaste", only if the // security settings are enabled. var oReturn = FCK.GetClipboardHTML() ; document.body.detachEvent( 'onpaste', FCK_CheckPasting_Listener ) ; if ( FCK._PasteIsEnabled ) { if ( !returnContents ) oReturn = true ; } else oReturn = false ; delete FCK._PasteIsEnabled ; return oReturn ; } function FCK_CheckPasting_Listener() { FCK._PasteIsEnabled = true ; } FCK.GetClipboardHTML = function() { var oDiv = document.getElementById( '___FCKHiddenDiv' ) ; if ( !oDiv ) { oDiv = document.createElement( 'DIV' ) ; oDiv.id = '___FCKHiddenDiv' ; var oDivStyle = oDiv.style ; oDivStyle.position = 'absolute' ; oDivStyle.visibility = oDivStyle.overflow = 'hidden' ; oDivStyle.width = oDivStyle.height = 1 ; document.body.appendChild( oDiv ) ; } oDiv.innerHTML = '' ; var oTextRange = document.body.createTextRange() ; oTextRange.moveToElementText( oDiv ) ; oTextRange.execCommand( 'Paste' ) ; var sData = oDiv.innerHTML ; oDiv.innerHTML = '' ; return sData ; } FCK.CreateLink = function( url, noUndo ) { // Creates the array that will be returned. It contains one or more created links (see #220). var aCreatedLinks = new Array() ; // Remove any existing link in the selection. FCK.ExecuteNamedCommand( 'Unlink', null, false, !!noUndo ) ; if ( url.length > 0 ) { // If there are several images, and you try to link each one, all the images get inside the link: // <img><img> -> <a><img></a><img> -> <a><img><img></a> due to the call to 'CreateLink' (bug in IE) if (FCKSelection.GetType() == 'Control') { // Create a link var oLink = this.EditorDocument.createElement( 'A' ) ; oLink.href = url ; // Get the selected object var oControl = FCKSelection.GetSelectedElement() ; // Put the link just before the object oControl.parentNode.insertBefore(oLink, oControl) ; // Move the object inside the link oControl.parentNode.removeChild( oControl ) ; oLink.appendChild( oControl ) ; return [ oLink ] ; } // Generate a temporary name for the link. var sTempUrl = 'javascript:void(0);/*' + ( new Date().getTime() ) + '*/' ; // Use the internal "CreateLink" command to create the link. FCK.ExecuteNamedCommand( 'CreateLink', sTempUrl, false, !!noUndo ) ; // Look for the just create link. var oLinks = this.EditorDocument.links ; for ( i = 0 ; i < oLinks.length ; i++ ) { var oLink = oLinks[i] ; // Check it this a newly created link. // getAttribute must be used. oLink.url may cause problems with IE7 (#555). if ( oLink.getAttribute( 'href', 2 ) == sTempUrl ) { var sInnerHtml = oLink.innerHTML ; // Save the innerHTML (IE changes it if it is like an URL). oLink.href = url ; oLink.innerHTML = sInnerHtml ; // Restore the innerHTML. // If the last child is a <br> move it outside the link or it // will be too easy to select this link again #388. var oLastChild = oLink.lastChild ; if ( oLastChild && oLastChild.nodeName == 'BR' ) { // Move the BR after the link. FCKDomTools.InsertAfterNode( oLink, oLink.removeChild( oLastChild ) ) ; } aCreatedLinks.push( oLink ) ; } } } return aCreatedLinks ; } function _FCK_RemoveDisabledAtt() { this.removeAttribute( 'disabled' ) ; } function Doc_OnMouseDown( evt ) { var e = evt.srcElement ; // Radio buttons and checkboxes should not be allowed to be triggered in IE // in editable mode. Otherwise the whole browser window may be locked by // the buttons. (#1782) if ( e.nodeName.IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled ) { e.disabled = true ; FCKTools.SetTimeout( _FCK_RemoveDisabledAtt, 1, e ) ; } }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fck_ie.js
JavaScript
asf20
13,052
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Creation and initialization of the "FCK" object. This is the main object * that represents an editor instance. */ // FCK represents the active editor instance. var FCK = { Name : FCKURLParams[ 'InstanceName' ], Status : FCK_STATUS_NOTLOADED, EditMode : FCK_EDITMODE_WYSIWYG, Toolbar : null, HasFocus : false, DataProcessor : new FCKDataProcessor(), GetInstanceObject : (function() { var w = window ; return function( name ) { return w[name] ; } })(), AttachToOnSelectionChange : function( functionPointer ) { this.Events.AttachEvent( 'OnSelectionChange', functionPointer ) ; }, GetLinkedFieldValue : function() { return this.LinkedField.value ; }, GetParentForm : function() { return this.LinkedField.form ; } , // # START : IsDirty implementation StartupValue : '', IsDirty : function() { if ( this.EditMode == FCK_EDITMODE_SOURCE ) return ( this.StartupValue != this.EditingArea.Textarea.value ) ; else { // It can happen switching between design and source mode in Gecko if ( ! this.EditorDocument ) return false ; return ( this.StartupValue != this.EditorDocument.body.innerHTML ) ; } }, ResetIsDirty : function() { if ( this.EditMode == FCK_EDITMODE_SOURCE ) this.StartupValue = this.EditingArea.Textarea.value ; else if ( this.EditorDocument.body ) this.StartupValue = this.EditorDocument.body.innerHTML ; }, // # END : IsDirty implementation StartEditor : function() { this.TempBaseTag = FCKConfig.BaseHref.length > 0 ? '<base href="' + FCKConfig.BaseHref + '" _fcktemp="true"></base>' : '' ; // Setup the keystroke handler. var oKeystrokeHandler = FCK.KeystrokeHandler = new FCKKeystrokeHandler() ; oKeystrokeHandler.OnKeystroke = _FCK_KeystrokeHandler_OnKeystroke ; // Set the config keystrokes. oKeystrokeHandler.SetKeystrokes( FCKConfig.Keystrokes ) ; // In IE7, if the editor tries to access the clipboard by code, a dialog is // shown to the user asking if the application is allowed to access or not. // Due to the IE implementation of it, the KeystrokeHandler will not work //well in this case, so we must leave the pasting keys to have their default behavior. if ( FCKBrowserInfo.IsIE7 ) { if ( ( CTRL + 86 /*V*/ ) in oKeystrokeHandler.Keystrokes ) oKeystrokeHandler.SetKeystrokes( [ CTRL + 86, true ] ) ; if ( ( SHIFT + 45 /*INS*/ ) in oKeystrokeHandler.Keystrokes ) oKeystrokeHandler.SetKeystrokes( [ SHIFT + 45, true ] ) ; } // Retain default behavior for Ctrl-Backspace. (Bug #362) oKeystrokeHandler.SetKeystrokes( [ CTRL + 8, true ] ) ; this.EditingArea = new FCKEditingArea( document.getElementById( 'xEditingArea' ) ) ; this.EditingArea.FFSpellChecker = FCKConfig.FirefoxSpellChecker ; // Set the editor's startup contents. this.SetData( this.GetLinkedFieldValue(), true ) ; // Tab key handling for source mode. FCKTools.AddEventListener( document, "keydown", this._TabKeyHandler ) ; // Add selection change listeners. They must be attached only once. this.AttachToOnSelectionChange( _FCK_PaddingNodeListener ) ; if ( FCKBrowserInfo.IsGecko ) this.AttachToOnSelectionChange( this._ExecCheckEmptyBlock ) ; }, Focus : function() { FCK.EditingArea.Focus() ; }, SetStatus : function( newStatus ) { this.Status = newStatus ; if ( newStatus == FCK_STATUS_ACTIVE ) { FCKFocusManager.AddWindow( window, true ) ; if ( FCKBrowserInfo.IsIE ) FCKFocusManager.AddWindow( window.frameElement, true ) ; // Force the focus in the editor. if ( FCKConfig.StartupFocus ) FCK.Focus() ; } this.Events.FireEvent( 'OnStatusChange', newStatus ) ; }, // Fixes the body by moving all inline and text nodes to appropriate block // elements. FixBody : function() { var sBlockTag = FCKConfig.EnterMode ; // In 'br' mode, no fix must be done. if ( sBlockTag != 'p' && sBlockTag != 'div' ) return ; var oDocument = this.EditorDocument ; if ( !oDocument ) return ; var oBody = oDocument.body ; if ( !oBody ) return ; FCKDomTools.TrimNode( oBody ) ; var oNode = oBody.firstChild ; var oNewBlock ; while ( oNode ) { var bMoveNode = false ; switch ( oNode.nodeType ) { // Element Node. case 1 : var nodeName = oNode.nodeName.toLowerCase() ; if ( !FCKListsLib.BlockElements[ nodeName ] && nodeName != 'li' && !oNode.getAttribute('_fckfakelement') && oNode.getAttribute('_moz_dirty') == null ) bMoveNode = true ; break ; // Text Node. case 3 : // Ignore space only or empty text. if ( oNewBlock || oNode.nodeValue.Trim().length > 0 ) bMoveNode = true ; break; // Comment Node case 8 : if ( oNewBlock ) bMoveNode = true ; break; } if ( bMoveNode ) { var oParent = oNode.parentNode ; if ( !oNewBlock ) oNewBlock = oParent.insertBefore( oDocument.createElement( sBlockTag ), oNode ) ; oNewBlock.appendChild( oParent.removeChild( oNode ) ) ; oNode = oNewBlock.nextSibling ; } else { if ( oNewBlock ) { FCKDomTools.TrimNode( oNewBlock ) ; oNewBlock = null ; } oNode = oNode.nextSibling ; } } if ( oNewBlock ) FCKDomTools.TrimNode( oNewBlock ) ; }, GetData : function( format ) { // We assume that if the user is in source editing, the editor value must // represent the exact contents of the source, as the user wanted it to be. if ( FCK.EditMode == FCK_EDITMODE_SOURCE ) return FCK.EditingArea.Textarea.value ; this.FixBody() ; var oDoc = FCK.EditorDocument ; if ( !oDoc ) return null ; var isFullPage = FCKConfig.FullPage ; // Call the Data Processor to generate the output data. var data = FCK.DataProcessor.ConvertToDataFormat( isFullPage ? oDoc.documentElement : oDoc.body, !isFullPage, FCKConfig.IgnoreEmptyParagraphValue, format ) ; // Restore protected attributes. data = FCK.ProtectEventsRestore( data ) ; if ( FCKBrowserInfo.IsIE ) data = data.replace( FCKRegexLib.ToReplace, '$1' ) ; if ( isFullPage ) { if ( FCK.DocTypeDeclaration && FCK.DocTypeDeclaration.length > 0 ) data = FCK.DocTypeDeclaration + '\n' + data ; if ( FCK.XmlDeclaration && FCK.XmlDeclaration.length > 0 ) data = FCK.XmlDeclaration + '\n' + data ; } return FCKConfig.ProtectedSource.Revert( data ) ; }, UpdateLinkedField : function() { var value = FCK.GetXHTML( FCKConfig.FormatOutput ) ; if ( FCKConfig.HtmlEncodeOutput ) value = FCKTools.HTMLEncode( value ) ; FCK.LinkedField.value = value ; FCK.Events.FireEvent( 'OnAfterLinkedFieldUpdate' ) ; }, RegisteredDoubleClickHandlers : new Object(), OnDoubleClick : function( element ) { var oCalls = FCK.RegisteredDoubleClickHandlers[ element.tagName.toUpperCase() ] ; if ( oCalls ) { for ( var i = 0 ; i < oCalls.length ; i++ ) oCalls[ i ]( element ) ; } // Generic handler for any element oCalls = FCK.RegisteredDoubleClickHandlers[ '*' ] ; if ( oCalls ) { for ( var i = 0 ; i < oCalls.length ; i++ ) oCalls[ i ]( element ) ; } }, // Register objects that can handle double click operations. RegisterDoubleClickHandler : function( handlerFunction, tag ) { var nodeName = tag || '*' ; nodeName = nodeName.toUpperCase() ; var aTargets ; if ( !( aTargets = FCK.RegisteredDoubleClickHandlers[ nodeName ] ) ) FCK.RegisteredDoubleClickHandlers[ nodeName ] = [ handlerFunction ] ; else { // Check that the event handler isn't already registered with the same listener // It doesn't detect function pointers belonging to an object (at least in Gecko) if ( aTargets.IndexOf( handlerFunction ) == -1 ) aTargets.push( handlerFunction ) ; } }, OnAfterSetHTML : function() { FCKDocumentProcessor.Process( FCK.EditorDocument ) ; FCKUndo.SaveUndoStep() ; FCK.Events.FireEvent( 'OnSelectionChange' ) ; FCK.Events.FireEvent( 'OnAfterSetHTML' ) ; }, // Saves URLs on links and images on special attributes, so they don't change when // moving around. ProtectUrls : function( html ) { // <A> href html = html.replace( FCKRegexLib.ProtectUrlsA , '$& _fcksavedurl=$1' ) ; // <IMG> src html = html.replace( FCKRegexLib.ProtectUrlsImg , '$& _fcksavedurl=$1' ) ; // <AREA> href html = html.replace( FCKRegexLib.ProtectUrlsArea , '$& _fcksavedurl=$1' ) ; return html ; }, // Saves event attributes (like onclick) so they don't get executed while // editing. ProtectEvents : function( html ) { return html.replace( FCKRegexLib.TagsWithEvent, _FCK_ProtectEvents_ReplaceTags ) ; }, ProtectEventsRestore : function( html ) { return html.replace( FCKRegexLib.ProtectedEvents, _FCK_ProtectEvents_RestoreEvents ) ; }, ProtectTags : function( html ) { var sTags = FCKConfig.ProtectedTags ; // IE doesn't support <abbr> and it breaks it. Let's protect it. if ( FCKBrowserInfo.IsIE ) sTags += sTags.length > 0 ? '|ABBR|XML|EMBED|OBJECT' : 'ABBR|XML|EMBED|OBJECT' ; var oRegex ; if ( sTags.length > 0 ) { oRegex = new RegExp( '<(' + sTags + ')(?!\w|:)', 'gi' ) ; html = html.replace( oRegex, '<FCK:$1' ) ; oRegex = new RegExp( '<\/(' + sTags + ')>', 'gi' ) ; html = html.replace( oRegex, '<\/FCK:$1>' ) ; } // Protect some empty elements. We must do it separately because the // original tag may not contain the closing slash, like <hr>: // - <meta> tags get executed, so if you have a redirect meta, the // content will move to the target page. // - <hr> may destroy the document structure if not well // positioned. The trick is protect it here and restore them in // the FCKDocumentProcessor. sTags = 'META' ; if ( FCKBrowserInfo.IsIE ) sTags += '|HR' ; oRegex = new RegExp( '<((' + sTags + ')(?=\\s|>|/)[\\s\\S]*?)/?>', 'gi' ) ; html = html.replace( oRegex, '<FCK:$1 />' ) ; return html ; }, SetData : function( data, resetIsDirty ) { this.EditingArea.Mode = FCK.EditMode ; // If there was an onSelectionChange listener in IE we must remove it to avoid crashes #1498 if ( FCKBrowserInfo.IsIE && FCK.EditorDocument ) { FCK.EditorDocument.detachEvent("onselectionchange", Doc_OnSelectionChange ) ; } FCKTempBin.Reset() ; // Bug #2469: SelectionData.createRange becomes undefined after the editor // iframe is changed by FCK.SetData(). FCK.Selection.Release() ; if ( FCK.EditMode == FCK_EDITMODE_WYSIWYG ) { // Save the resetIsDirty for later use (async) this._ForceResetIsDirty = ( resetIsDirty === true ) ; // Protect parts of the code that must remain untouched (and invisible) // during editing. data = FCKConfig.ProtectedSource.Protect( data ) ; // Call the Data Processor to transform the data. data = FCK.DataProcessor.ConvertToHtml( data ) ; // Fix for invalid self-closing tags (see #152). data = data.replace( FCKRegexLib.InvalidSelfCloseTags, '$1></$2>' ) ; // Protect event attributes (they could get fired in the editing area). data = FCK.ProtectEvents( data ) ; // Protect some things from the browser itself. data = FCK.ProtectUrls( data ) ; data = FCK.ProtectTags( data ) ; // Insert the base tag (FCKConfig.BaseHref), if not exists in the source. // The base must be the first tag in the HEAD, to get relative // links on styles, for example. if ( FCK.TempBaseTag.length > 0 && !FCKRegexLib.HasBaseTag.test( data ) ) data = data.replace( FCKRegexLib.HeadOpener, '$&' + FCK.TempBaseTag ) ; // Build the HTML for the additional things we need on <head>. var sHeadExtra = '' ; if ( !FCKConfig.FullPage ) sHeadExtra += _FCK_GetEditorAreaStyleTags() ; if ( FCKBrowserInfo.IsIE ) sHeadExtra += FCK._GetBehaviorsStyle() ; else if ( FCKConfig.ShowBorders ) sHeadExtra += FCKTools.GetStyleHtml( FCK_ShowTableBordersCSS, true ) ; sHeadExtra += FCKTools.GetStyleHtml( FCK_InternalCSS, true ) ; // Attention: do not change it before testing it well (sample07)! // This is tricky... if the head ends with <meta ... content type>, // Firefox will break. But, it works if we place our extra stuff as // the last elements in the HEAD. data = data.replace( FCKRegexLib.HeadCloser, sHeadExtra + '$&' ) ; // Load the HTML in the editing area. this.EditingArea.OnLoad = _FCK_EditingArea_OnLoad ; this.EditingArea.Start( data ) ; } else { // Remove the references to the following elements, as the editing area // IFRAME will be removed. FCK.EditorWindow = null ; FCK.EditorDocument = null ; FCKDomTools.PaddingNode = null ; this.EditingArea.OnLoad = null ; this.EditingArea.Start( data ) ; // Enables the context menu in the textarea. this.EditingArea.Textarea._FCKShowContextMenu = true ; // Removes the enter key handler. FCK.EnterKeyHandler = null ; if ( resetIsDirty ) this.ResetIsDirty() ; // Listen for keystroke events. FCK.KeystrokeHandler.AttachToElement( this.EditingArea.Textarea ) ; this.EditingArea.Textarea.focus() ; FCK.Events.FireEvent( 'OnAfterSetHTML' ) ; } if ( FCKBrowserInfo.IsGecko ) window.onresize() ; }, // This collection is used by the browser specific implementations to tell // which named commands must be handled separately. RedirectNamedCommands : new Object(), ExecuteNamedCommand : function( commandName, commandParameter, noRedirect, noSaveUndo ) { if ( !noSaveUndo ) FCKUndo.SaveUndoStep() ; if ( !noRedirect && FCK.RedirectNamedCommands[ commandName ] != null ) FCK.ExecuteRedirectedNamedCommand( commandName, commandParameter ) ; else { FCK.Focus() ; FCK.EditorDocument.execCommand( commandName, false, commandParameter ) ; FCK.Events.FireEvent( 'OnSelectionChange' ) ; } if ( !noSaveUndo ) FCKUndo.SaveUndoStep() ; }, GetNamedCommandState : function( commandName ) { try { // Bug #50 : Safari never returns positive state for the Paste command, override that. if ( FCKBrowserInfo.IsSafari && FCK.EditorWindow && commandName.IEquals( 'Paste' ) ) return FCK_TRISTATE_OFF ; if ( !FCK.EditorDocument.queryCommandEnabled( commandName ) ) return FCK_TRISTATE_DISABLED ; else { return FCK.EditorDocument.queryCommandState( commandName ) ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF ; } } catch ( e ) { return FCK_TRISTATE_OFF ; } }, GetNamedCommandValue : function( commandName ) { var sValue = '' ; var eState = FCK.GetNamedCommandState( commandName ) ; if ( eState == FCK_TRISTATE_DISABLED ) return null ; try { sValue = this.EditorDocument.queryCommandValue( commandName ) ; } catch(e) {} return sValue ? sValue : '' ; }, Paste : function( _callListenersOnly ) { // First call 'OnPaste' listeners. if ( FCK.Status != FCK_STATUS_COMPLETE || !FCK.Events.FireEvent( 'OnPaste' ) ) return false ; // Then call the default implementation. return _callListenersOnly || FCK._ExecPaste() ; }, PasteFromWord : function() { FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteFromWord, 'dialog/fck_paste.html', 400, 330, 'Word' ) ; }, Preview : function() { var sHTML ; if ( FCKConfig.FullPage ) { if ( FCK.TempBaseTag.length > 0 ) sHTML = FCK.TempBaseTag + FCK.GetXHTML() ; else sHTML = FCK.GetXHTML() ; } else { sHTML = FCKConfig.DocType + '<html dir="' + FCKConfig.ContentLangDirection + '">' + '<head>' + FCK.TempBaseTag + '<title>' + FCKLang.Preview + '</title>' + _FCK_GetEditorAreaStyleTags() + '</head><body' + FCKConfig.GetBodyAttributes() + '>' + FCK.GetXHTML() + '</body></html>' ; } var iWidth = FCKConfig.ScreenWidth * 0.8 ; var iHeight = FCKConfig.ScreenHeight * 0.7 ; var iLeft = ( FCKConfig.ScreenWidth - iWidth ) / 2 ; var sOpenUrl = '' ; if ( FCK_IS_CUSTOM_DOMAIN && FCKBrowserInfo.IsIE) { window._FCKHtmlToLoad = sHTML ; sOpenUrl = 'javascript:void( (function(){' + 'document.open() ;' + 'document.domain="' + document.domain + '" ;' + 'document.write( window.opener._FCKHtmlToLoad );' + 'document.close() ;' + 'window.opener._FCKHtmlToLoad = null ;' + '})() )' ; } var oWindow = window.open( sOpenUrl, null, 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=' + iWidth + ',height=' + iHeight + ',left=' + iLeft ) ; if ( !FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE) { oWindow.document.write( sHTML ); oWindow.document.close(); } }, SwitchEditMode : function( noUndo ) { var bIsWysiwyg = ( FCK.EditMode == FCK_EDITMODE_WYSIWYG ) ; // Save the current IsDirty state, so we may restore it after the switch. var bIsDirty = FCK.IsDirty() ; var sHtml ; // Update the HTML in the view output to show, also update // FCKTempBin for IE to avoid #2263. if ( bIsWysiwyg ) { FCKCommands.GetCommand( 'ShowBlocks' ).SaveState() ; if ( !noUndo && FCKBrowserInfo.IsIE ) FCKUndo.SaveUndoStep() ; sHtml = FCK.GetXHTML( FCKConfig.FormatSource ) ; if ( FCKBrowserInfo.IsIE ) FCKTempBin.ToHtml() ; if ( sHtml == null ) return false ; } else sHtml = this.EditingArea.Textarea.value ; FCK.EditMode = bIsWysiwyg ? FCK_EDITMODE_SOURCE : FCK_EDITMODE_WYSIWYG ; FCK.SetData( sHtml, !bIsDirty ) ; // Set the Focus. FCK.Focus() ; // Update the toolbar (Running it directly causes IE to fail). FCKTools.RunFunction( FCK.ToolbarSet.RefreshModeState, FCK.ToolbarSet ) ; return true ; }, InsertElement : function( element ) { // The parameter may be a string (element name), so transform it in an element. if ( typeof element == 'string' ) element = this.EditorDocument.createElement( element ) ; var elementName = element.nodeName.toLowerCase() ; FCKSelection.Restore() ; // Create a range for the selection. V3 will have a new selection // object that may internally supply this feature. var range = new FCKDomRange( this.EditorWindow ) ; // Move to the selection and delete it. range.MoveToSelection() ; range.DeleteContents() ; if ( FCKListsLib.BlockElements[ elementName ] != null ) { if ( range.StartBlock ) { if ( range.CheckStartOfBlock() ) range.MoveToPosition( range.StartBlock, 3 ) ; else if ( range.CheckEndOfBlock() ) range.MoveToPosition( range.StartBlock, 4 ) ; else range.SplitBlock() ; } range.InsertNode( element ) ; var next = FCKDomTools.GetNextSourceElement( element, false, null, [ 'hr','br','param','img','area','input' ], true ) ; // Be sure that we have something after the new element, so we can move the cursor there. if ( !next && FCKConfig.EnterMode != 'br') { next = this.EditorDocument.body.appendChild( this.EditorDocument.createElement( FCKConfig.EnterMode ) ) ; if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( next ) ; } if ( FCKListsLib.EmptyElements[ elementName ] == null ) range.MoveToElementEditStart( element ) ; else if ( next ) range.MoveToElementEditStart( next ) ; else range.MoveToPosition( element, 4 ) ; if ( FCKBrowserInfo.IsGeckoLike ) { if ( next ) FCKDomTools.ScrollIntoView( next, false ); FCKDomTools.ScrollIntoView( element, false ); } } else { // Insert the node. range.InsertNode( element ) ; // Move the selection right after the new element. // DISCUSSION: Should we select the element instead? range.SetStart( element, 4 ) ; range.SetEnd( element, 4 ) ; } range.Select() ; range.Release() ; // REMOVE IT: The focus should not really be set here. It is up to the // calling code to reset the focus if needed. this.Focus() ; return element ; }, _InsertBlockElement : function( blockElement ) { }, _IsFunctionKey : function( keyCode ) { // keys that are captured but do not change editor contents if ( keyCode >= 16 && keyCode <= 20 ) // shift, ctrl, alt, pause, capslock return true ; if ( keyCode == 27 || ( keyCode >= 33 && keyCode <= 40 ) ) // esc, page up, page down, end, home, left, up, right, down return true ; if ( keyCode == 45 ) // insert, no effect on FCKeditor, yet return true ; return false ; }, _KeyDownListener : function( evt ) { if (! evt) evt = FCK.EditorWindow.event ; if ( FCK.EditorWindow ) { if ( !FCK._IsFunctionKey(evt.keyCode) // do not capture function key presses, like arrow keys or shift/alt/ctrl && !(evt.ctrlKey || evt.metaKey) // do not capture Ctrl hotkeys, as they have their snapshot capture logic && !(evt.keyCode == 46) ) // do not capture Del, it has its own capture logic in fckenterkey.js FCK._KeyDownUndo() ; } return true ; }, _KeyDownUndo : function() { if ( !FCKUndo.Typing ) { FCKUndo.SaveUndoStep() ; FCKUndo.Typing = true ; FCK.Events.FireEvent( "OnSelectionChange" ) ; } FCKUndo.TypesCount++ ; FCKUndo.Changed = 1 ; if ( FCKUndo.TypesCount > FCKUndo.MaxTypes ) { FCKUndo.TypesCount = 0 ; FCKUndo.SaveUndoStep() ; } }, _TabKeyHandler : function( evt ) { if ( ! evt ) evt = window.event ; var keystrokeValue = evt.keyCode ; // Pressing <Tab> in source mode should produce a tab space in the text area, not // changing the focus to something else. if ( keystrokeValue == 9 && FCK.EditMode != FCK_EDITMODE_WYSIWYG ) { if ( FCKBrowserInfo.IsIE ) { var range = document.selection.createRange() ; if ( range.parentElement() != FCK.EditingArea.Textarea ) return true ; range.text = '\t' ; range.select() ; } else { var a = [] ; var el = FCK.EditingArea.Textarea ; var selStart = el.selectionStart ; var selEnd = el.selectionEnd ; a.push( el.value.substr(0, selStart ) ) ; a.push( '\t' ) ; a.push( el.value.substr( selEnd ) ) ; el.value = a.join( '' ) ; el.setSelectionRange( selStart + 1, selStart + 1 ) ; } if ( evt.preventDefault ) return evt.preventDefault() ; return evt.returnValue = false ; } return true ; } } ; FCK.Events = new FCKEvents( FCK ) ; // DEPRECATED in favor or "GetData". FCK.GetHTML = FCK.GetXHTML = FCK.GetData ; // DEPRECATED in favor of "SetData". FCK.SetHTML = FCK.SetData ; // InsertElementAndGetIt and CreateElement are Deprecated : returns the same value as InsertElement. FCK.InsertElementAndGetIt = FCK.CreateElement = FCK.InsertElement ; // Replace all events attributes (like onclick). function _FCK_ProtectEvents_ReplaceTags( tagMatch ) { return tagMatch.replace( FCKRegexLib.EventAttributes, _FCK_ProtectEvents_ReplaceEvents ) ; } // Replace an event attribute with its respective __fckprotectedatt attribute. // The original event markup will be encoded and saved as the value of the new // attribute. function _FCK_ProtectEvents_ReplaceEvents( eventMatch, attName ) { return ' ' + attName + '_fckprotectedatt="' + encodeURIComponent( eventMatch ) + '"' ; } function _FCK_ProtectEvents_RestoreEvents( match, encodedOriginal ) { return decodeURIComponent( encodedOriginal ) ; } function _FCK_MouseEventsListener( evt ) { if ( ! evt ) evt = window.event ; if ( evt.type == 'mousedown' ) FCK.MouseDownFlag = true ; else if ( evt.type == 'mouseup' ) FCK.MouseDownFlag = false ; else if ( evt.type == 'mousemove' ) FCK.Events.FireEvent( 'OnMouseMove', evt ) ; } function _FCK_PaddingNodeListener() { if ( FCKConfig.EnterMode.IEquals( 'br' ) ) return ; FCKDomTools.EnforcePaddingNode( FCK.EditorDocument, FCKConfig.EnterMode ) ; if ( ! FCKBrowserInfo.IsIE && FCKDomTools.PaddingNode ) { // Prevent the caret from going between the body and the padding node in Firefox. // i.e. <body>|<p></p></body> var sel = FCKSelection.GetSelection() ; if ( sel && sel.rangeCount == 1 ) { var range = sel.getRangeAt( 0 ) ; if ( range.collapsed && range.startContainer == FCK.EditorDocument.body && range.startOffset == 0 ) { range.selectNodeContents( FCKDomTools.PaddingNode ) ; range.collapse( true ) ; sel.removeAllRanges() ; sel.addRange( range ) ; } } } else if ( FCKDomTools.PaddingNode ) { // Prevent the caret from going into an empty body but not into the padding node in IE. // i.e. <body><p></p>|</body> var parentElement = FCKSelection.GetParentElement() ; var paddingNode = FCKDomTools.PaddingNode ; if ( parentElement && parentElement.nodeName.IEquals( 'body' ) ) { if ( FCK.EditorDocument.body.childNodes.length == 1 && FCK.EditorDocument.body.firstChild == paddingNode ) { /* * Bug #1764: Don't move the selection if the * current selection isn't in the editor * document. */ if ( FCKSelection._GetSelectionDocument( FCK.EditorDocument.selection ) != FCK.EditorDocument ) return ; var range = FCK.EditorDocument.body.createTextRange() ; var clearContents = false ; if ( !paddingNode.childNodes.firstChild ) { paddingNode.appendChild( FCKTools.GetElementDocument( paddingNode ).createTextNode( '\ufeff' ) ) ; clearContents = true ; } range.moveToElementText( paddingNode ) ; range.select() ; if ( clearContents ) range.pasteHTML( '' ) ; } } } } function _FCK_EditingArea_OnLoad() { // Get the editor's window and document (DOM) FCK.EditorWindow = FCK.EditingArea.Window ; FCK.EditorDocument = FCK.EditingArea.Document ; if ( FCKBrowserInfo.IsIE ) FCKTempBin.ToElements() ; FCK.InitializeBehaviors() ; // Listen for mousedown and mouseup events for tracking drag and drops. FCK.MouseDownFlag = false ; FCKTools.AddEventListener( FCK.EditorDocument, 'mousemove', _FCK_MouseEventsListener ) ; FCKTools.AddEventListener( FCK.EditorDocument, 'mousedown', _FCK_MouseEventsListener ) ; FCKTools.AddEventListener( FCK.EditorDocument, 'mouseup', _FCK_MouseEventsListener ) ; // Most of the CTRL key combos do not work under Safari for onkeydown and onkeypress (See #1119) // But we can use the keyup event to override some of these... if ( FCKBrowserInfo.IsSafari ) { var undoFunc = function( evt ) { if ( ! ( evt.ctrlKey || evt.metaKey ) ) return ; if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) return ; switch ( evt.keyCode ) { case 89: FCKUndo.Redo() ; break ; case 90: FCKUndo.Undo() ; break ; } } FCKTools.AddEventListener( FCK.EditorDocument, 'keyup', undoFunc ) ; } // Create the enter key handler FCK.EnterKeyHandler = new FCKEnterKey( FCK.EditorWindow, FCKConfig.EnterMode, FCKConfig.ShiftEnterMode, FCKConfig.TabSpaces ) ; // Listen for keystroke events. FCK.KeystrokeHandler.AttachToElement( FCK.EditorDocument ) ; if ( FCK._ForceResetIsDirty ) FCK.ResetIsDirty() ; // This is a tricky thing for IE. In some cases, even if the cursor is // blinking in the editing, the keystroke handler doesn't catch keyboard // events. We must activate the editing area to make it work. (#142). if ( FCKBrowserInfo.IsIE && FCK.HasFocus ) FCK.EditorDocument.body.setActive() ; FCK.OnAfterSetHTML() ; // Restore show blocks status. FCKCommands.GetCommand( 'ShowBlocks' ).RestoreState() ; // Check if it is not a startup call, otherwise complete the startup. if ( FCK.Status != FCK_STATUS_NOTLOADED ) return ; FCK.SetStatus( FCK_STATUS_ACTIVE ) ; } function _FCK_GetEditorAreaStyleTags() { return FCKTools.GetStyleHtml( FCKConfig.EditorAreaCSS ) + FCKTools.GetStyleHtml( FCKConfig.EditorAreaStyles ) ; } function _FCK_KeystrokeHandler_OnKeystroke( keystroke, keystrokeValue ) { if ( FCK.Status != FCK_STATUS_COMPLETE ) return false ; if ( FCK.EditMode == FCK_EDITMODE_WYSIWYG ) { switch ( keystrokeValue ) { case 'Paste' : return !FCK.Paste() ; case 'Cut' : FCKUndo.SaveUndoStep() ; return false ; } } else { // In source mode, some actions must have their default behavior. if ( keystrokeValue.Equals( 'Paste', 'Undo', 'Redo', 'SelectAll', 'Cut' ) ) return false ; } // The return value indicates if the default behavior of the keystroke must // be cancelled. Let's do that only if the Execute() call explicitly returns "false". var oCommand = FCK.Commands.GetCommand( keystrokeValue ) ; // If the command is disabled then ignore the keystroke if ( oCommand.GetState() == FCK_TRISTATE_DISABLED ) return false ; return ( oCommand.Execute.apply( oCommand, FCKTools.ArgumentsToArray( arguments, 2 ) ) !== false ) ; } // Set the FCK.LinkedField reference to the field that will be used to post the // editor data. (function() { // There is a bug on IE... getElementById returns any META tag that has the // name set to the ID you are looking for. So the best way in to get the array // by names and look for the correct one. // As ASP.Net generates a ID that is different from the Name, we must also // look for the field based on the ID (the first one is the ID). var oDocument = window.parent.document ; // Try to get the field using the ID. var eLinkedField = oDocument.getElementById( FCK.Name ) ; var i = 0; while ( eLinkedField || i == 0 ) { if ( eLinkedField && eLinkedField.tagName.toLowerCase().Equals( 'input', 'textarea' ) ) { FCK.LinkedField = eLinkedField ; break ; } eLinkedField = oDocument.getElementsByName( FCK.Name )[i++] ; } })() ; var FCKTempBin = { Elements : new Array(), AddElement : function( element ) { var iIndex = this.Elements.length ; this.Elements[ iIndex ] = element ; return iIndex ; }, RemoveElement : function( index ) { var e = this.Elements[ index ] ; this.Elements[ index ] = null ; return e ; }, Reset : function() { var i = 0 ; while ( i < this.Elements.length ) this.Elements[ i++ ] = null ; this.Elements.length = 0 ; }, ToHtml : function() { for ( var i = 0 ; i < this.Elements.length ; i++ ) { this.Elements[i] = '<div>&nbsp;' + this.Elements[i].outerHTML + '</div>' ; this.Elements[i].isHtml = true ; } }, ToElements : function() { var node = FCK.EditorDocument.createElement( 'div' ) ; for ( var i = 0 ; i < this.Elements.length ; i++ ) { if ( this.Elements[i].isHtml ) { node.innerHTML = this.Elements[i] ; this.Elements[i] = node.firstChild.removeChild( node.firstChild.lastChild ) ; } } } } ; // # Focus Manager: Manages the focus in the editor. var FCKFocusManager = FCK.FocusManager = { IsLocked : false, AddWindow : function( win, sendToEditingArea ) { var oTarget ; if ( FCKBrowserInfo.IsIE ) oTarget = win.nodeType == 1 ? win : win.frameElement ? win.frameElement : win.document ; else if ( FCKBrowserInfo.IsSafari ) oTarget = win ; else oTarget = win.document ; FCKTools.AddEventListener( oTarget, 'blur', FCKFocusManager_Win_OnBlur ) ; FCKTools.AddEventListener( oTarget, 'focus', sendToEditingArea ? FCKFocusManager_Win_OnFocus_Area : FCKFocusManager_Win_OnFocus ) ; }, RemoveWindow : function( win ) { if ( FCKBrowserInfo.IsIE ) oTarget = win.nodeType == 1 ? win : win.frameElement ? win.frameElement : win.document ; else oTarget = win.document ; FCKTools.RemoveEventListener( oTarget, 'blur', FCKFocusManager_Win_OnBlur ) ; FCKTools.RemoveEventListener( oTarget, 'focus', FCKFocusManager_Win_OnFocus_Area ) ; FCKTools.RemoveEventListener( oTarget, 'focus', FCKFocusManager_Win_OnFocus ) ; }, Lock : function() { this.IsLocked = true ; }, Unlock : function() { if ( this._HasPendingBlur ) FCKFocusManager._Timer = window.setTimeout( FCKFocusManager_FireOnBlur, 100 ) ; this.IsLocked = false ; }, _ResetTimer : function() { this._HasPendingBlur = false ; if ( this._Timer ) { window.clearTimeout( this._Timer ) ; delete this._Timer ; } } } ; function FCKFocusManager_Win_OnBlur() { if ( typeof(FCK) != 'undefined' && FCK.HasFocus ) { FCKFocusManager._ResetTimer() ; FCKFocusManager._Timer = window.setTimeout( FCKFocusManager_FireOnBlur, 100 ) ; } } function FCKFocusManager_FireOnBlur() { if ( FCKFocusManager.IsLocked ) FCKFocusManager._HasPendingBlur = true ; else { FCK.HasFocus = false ; FCK.Events.FireEvent( "OnBlur" ) ; } } function FCKFocusManager_Win_OnFocus_Area() { // Check if we are already focusing the editor (to avoid loops). if ( FCKFocusManager._IsFocusing ) return ; FCKFocusManager._IsFocusing = true ; FCK.Focus() ; FCKFocusManager_Win_OnFocus() ; // The above FCK.Focus() call may trigger other focus related functions. // So, to avoid a loop, we delay the focusing mark removal, so it get // executed after all othre functions have been run. FCKTools.RunFunction( function() { delete FCKFocusManager._IsFocusing ; } ) ; } function FCKFocusManager_Win_OnFocus() { FCKFocusManager._ResetTimer() ; if ( !FCK.HasFocus && !FCKFocusManager.IsLocked ) { FCK.HasFocus = true ; FCK.Events.FireEvent( "OnFocus" ) ; } } /* * #1633 : Protect the editor iframe from external styles. * Notice that we can't use FCKTools.ResetStyles here since FCKTools isn't * loaded yet. */ (function() { var el = window.frameElement ; var width = el.width ; var height = el.height ; if ( /^\d+$/.test( width ) ) width += 'px' ; if ( /^\d+$/.test( height ) ) height += 'px' ; var style = el.style ; style.border = style.padding = style.margin = 0 ; style.backgroundColor = 'transparent'; style.backgroundImage = 'none'; style.width = width ; style.height = height ; })() ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fck.js
JavaScript
asf20
35,312
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKXHtml object, responsible for the XHTML operations. * Gecko specific. */ FCKXHtml._GetMainXmlString = function() { return ( new XMLSerializer() ).serializeToString( this.MainNode ) ; } FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node ) { var aAttributes = htmlNode.attributes ; for ( var n = 0 ; n < aAttributes.length ; n++ ) { var oAttribute = aAttributes[n] ; if ( oAttribute.specified ) { var sAttName = oAttribute.nodeName.toLowerCase() ; var sAttValue ; // Ignore any attribute starting with "_fck". if ( sAttName.StartsWith( '_fck' ) ) continue ; // There is a bug in Mozilla that returns '_moz_xxx' attributes as specified. else if ( sAttName.indexOf( '_moz' ) == 0 ) continue ; // There are one cases (on Gecko) when the oAttribute.nodeValue must be used: // - for the "class" attribute else if ( sAttName == 'class' ) { sAttValue = oAttribute.nodeValue.replace( FCKRegexLib.FCK_Class, '' ) ; if ( sAttValue.length == 0 ) continue ; } // XHTML doens't support attribute minimization like "CHECKED". It must be transformed to checked="checked". else if ( oAttribute.nodeValue === true ) sAttValue = sAttName ; else sAttValue = htmlNode.getAttribute( sAttName, 2 ) ; // We must use getAttribute to get it exactly as it is defined. this._AppendAttribute( node, sAttName, sAttValue ) ; } } } if ( FCKBrowserInfo.IsOpera ) { // Opera moves the <FCK:meta> element outside head (#1166). // Save a reference to the XML <head> node, so we can use it for // orphan <meta>s. FCKXHtml.TagProcessors['head'] = function( node, htmlNode ) { FCKXHtml.XML._HeadElement = node ; node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ; return node ; } // Check whether a <meta> element is outside <head>, and move it to the // proper place. FCKXHtml.TagProcessors['meta'] = function( node, htmlNode, xmlNode ) { if ( htmlNode.parentNode.nodeName.toLowerCase() != 'head' ) { var headElement = FCKXHtml.XML._HeadElement ; if ( headElement && xmlNode != headElement ) { delete htmlNode._fckxhtmljob ; FCKXHtml._AppendNode( headElement, htmlNode ) ; return null ; } } return node ; } } if ( FCKBrowserInfo.IsGecko ) { // #2162, some Firefox extensions might add references to internal links FCKXHtml.TagProcessors['link'] = function( node, htmlNode ) { if ( htmlNode.href.substr(0, 9).toLowerCase() == 'chrome://' ) return false ; return node ; } }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckxhtml_gecko.js
JavaScript
asf20
3,260
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == */ var FCKUndo = new Object() ; FCKUndo.SavedData = new Array() ; FCKUndo.CurrentIndex = -1 ; FCKUndo.TypesCount = 0 ; FCKUndo.Changed = false ; // Is the document changed in respect to its initial image? FCKUndo.MaxTypes = 25 ; FCKUndo.Typing = false ; FCKUndo.SaveLocked = false ; FCKUndo._GetBookmark = function() { FCKSelection.Restore() ; var range = new FCKDomRange( FCK.EditorWindow ) ; try { // There are some tricky cases where this might fail (e.g. having a lone empty table in IE) range.MoveToSelection() ; } catch ( e ) { return null ; } if ( FCKBrowserInfo.IsIE ) { var bookmark = range.CreateBookmark() ; var dirtyHtml = FCK.EditorDocument.body.innerHTML ; range.MoveToBookmark( bookmark ) ; return [ bookmark, dirtyHtml ] ; } return range.CreateBookmark2() ; } FCKUndo._SelectBookmark = function( bookmark ) { if ( ! bookmark ) return ; var range = new FCKDomRange( FCK.EditorWindow ) ; if ( bookmark instanceof Object ) { if ( FCKBrowserInfo.IsIE ) range.MoveToBookmark( bookmark[0] ) ; else range.MoveToBookmark2( bookmark ) ; try { // this does not always succeed, there are still some tricky cases where it fails // e.g. add a special character at end of document, undo, redo -> error range.Select() ; } catch ( e ) { // if select restore fails, put the caret at the end of the document range.MoveToPosition( FCK.EditorDocument.body, 4 ) ; range.Select() ; } } } FCKUndo._CompareCursors = function( cursor1, cursor2 ) { for ( var i = 0 ; i < Math.min( cursor1.length, cursor2.length ) ; i++ ) { if ( cursor1[i] < cursor2[i] ) return -1; else if (cursor1[i] > cursor2[i] ) return 1; } if ( cursor1.length < cursor2.length ) return -1; else if (cursor1.length > cursor2.length ) return 1; return 0; } FCKUndo._CheckIsBookmarksEqual = function( bookmark1, bookmark2 ) { if ( ! ( bookmark1 && bookmark2 ) ) return false ; if ( FCKBrowserInfo.IsIE ) { var startOffset1 = bookmark1[1].search( bookmark1[0].StartId ) ; var startOffset2 = bookmark2[1].search( bookmark2[0].StartId ) ; var endOffset1 = bookmark1[1].search( bookmark1[0].EndId ) ; var endOffset2 = bookmark2[1].search( bookmark2[0].EndId ) ; return startOffset1 == startOffset2 && endOffset1 == endOffset2 ; } else { return this._CompareCursors( bookmark1.Start, bookmark2.Start ) == 0 && this._CompareCursors( bookmark1.End, bookmark2.End ) == 0 ; } } FCKUndo.SaveUndoStep = function() { if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG || this.SaveLocked ) return ; // Assume the editor content is changed when SaveUndoStep() is called after the first time. // This also enables the undo button in toolbar. if ( this.SavedData.length ) this.Changed = true ; // Get the HTML content. var sHtml = FCK.EditorDocument.body.innerHTML ; var bookmark = this._GetBookmark() ; // Shrink the array to the current level. this.SavedData = this.SavedData.slice( 0, this.CurrentIndex + 1 ) ; // Cancel operation if the new step is identical to the previous one. if ( this.CurrentIndex > 0 && sHtml == this.SavedData[ this.CurrentIndex ][0] && this._CheckIsBookmarksEqual( bookmark, this.SavedData[ this.CurrentIndex ][1] ) ) return ; // Save the selection and caret position in the first undo level for the first change. else if ( this.CurrentIndex == 0 && this.SavedData.length && sHtml == this.SavedData[0][0] ) { this.SavedData[0][1] = bookmark ; return ; } // If we reach the Maximum number of undo levels, we must remove the first // entry of the list shifting all elements. if ( this.CurrentIndex + 1 >= FCKConfig.MaxUndoLevels ) this.SavedData.shift() ; else this.CurrentIndex++ ; // Save the new level in front of the actual position. this.SavedData[ this.CurrentIndex ] = [ sHtml, bookmark ] ; FCK.Events.FireEvent( "OnSelectionChange" ) ; } FCKUndo.CheckUndoState = function() { return ( this.Changed || this.CurrentIndex > 0 ) ; } FCKUndo.CheckRedoState = function() { return ( this.CurrentIndex < ( this.SavedData.length - 1 ) ) ; } FCKUndo.Undo = function() { if ( this.CheckUndoState() ) { // If it is the first step. if ( this.CurrentIndex == ( this.SavedData.length - 1 ) ) { // Save the actual state for a possible "Redo" call. this.SaveUndoStep() ; } // Go a step back. this._ApplyUndoLevel( --this.CurrentIndex ) ; FCK.Events.FireEvent( "OnSelectionChange" ) ; } } FCKUndo.Redo = function() { if ( this.CheckRedoState() ) { // Go a step forward. this._ApplyUndoLevel( ++this.CurrentIndex ) ; FCK.Events.FireEvent( "OnSelectionChange" ) ; } } FCKUndo._ApplyUndoLevel = function( level ) { var oData = this.SavedData[ level ] ; if ( !oData ) return ; // Update the editor contents with that step data. if ( FCKBrowserInfo.IsIE ) { if ( oData[1] && oData[1][1] ) FCK.SetInnerHtml( oData[1][1] ) ; else FCK.SetInnerHtml( oData[0] ) ; } else FCK.EditorDocument.body.innerHTML = oData[0] ; // Restore the selection this._SelectBookmark( oData[1] ) ; this.TypesCount = 0 ; this.Changed = false ; this.Typing = false ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckundo.js
JavaScript
asf20
5,966
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCKToolbarSet object that is used to load and draw the * toolbar. */ function FCKToolbarSet_Create( overhideLocation ) { var oToolbarSet ; var sLocation = overhideLocation || FCKConfig.ToolbarLocation ; switch ( sLocation ) { case 'In' : document.getElementById( 'xToolbarRow' ).style.display = '' ; oToolbarSet = new FCKToolbarSet( document ) ; break ; case 'None' : oToolbarSet = new FCKToolbarSet( document ) ; break ; // case 'OutTop' : // Not supported. default : FCK.Events.AttachEvent( 'OnBlur', FCK_OnBlur ) ; FCK.Events.AttachEvent( 'OnFocus', FCK_OnFocus ) ; var eToolbarTarget ; // Out:[TargetWindow]([TargetId]) var oOutMatch = sLocation.match( /^Out:(.+)\((\w+)\)$/ ) ; if ( oOutMatch ) { if ( FCKBrowserInfo.IsAIR ) FCKAdobeAIR.ToolbarSet_GetOutElement( window, oOutMatch ) ; else eToolbarTarget = eval( 'parent.' + oOutMatch[1] ).document.getElementById( oOutMatch[2] ) ; } else { // Out:[TargetId] oOutMatch = sLocation.match( /^Out:(\w+)$/ ) ; if ( oOutMatch ) eToolbarTarget = parent.document.getElementById( oOutMatch[1] ) ; } if ( !eToolbarTarget ) { alert( 'Invalid value for "ToolbarLocation"' ) ; return arguments.callee( 'In' ); } // If it is a shared toolbar, it may be already available in the target element. oToolbarSet = eToolbarTarget.__FCKToolbarSet ; if ( oToolbarSet ) break ; // Create the IFRAME that will hold the toolbar inside the target element. var eToolbarIFrame = FCKTools.GetElementDocument( eToolbarTarget ).createElement( 'iframe' ) ; eToolbarIFrame.src = 'javascript:void(0)' ; eToolbarIFrame.frameBorder = 0 ; eToolbarIFrame.width = '100%' ; eToolbarIFrame.height = '10' ; eToolbarTarget.appendChild( eToolbarIFrame ) ; eToolbarIFrame.unselectable = 'on' ; // Write the basic HTML for the toolbar (copy from the editor main page). var eTargetDocument = eToolbarIFrame.contentWindow.document ; // Workaround for Safari 12256. Ticket #63 var sBase = '' ; if ( FCKBrowserInfo.IsSafari ) sBase = '<base href="' + window.document.location + '">' ; // Initialize the IFRAME document body. eTargetDocument.open() ; eTargetDocument.write( '<html><head>' + sBase + '<script type="text/javascript"> var adjust = function() { window.frameElement.height = document.body.scrollHeight ; }; ' + 'window.onresize = window.onload = ' + 'function(){' // poll scrollHeight until it no longer changes for 1 sec. + 'var timer = null;' + 'var lastHeight = -1;' + 'var lastChange = 0;' + 'var poller = function(){' + 'var currentHeight = document.body.scrollHeight || 0;' + 'var currentTime = (new Date()).getTime();' + 'if (currentHeight != lastHeight){' + 'lastChange = currentTime;' + 'adjust();' + 'lastHeight = document.body.scrollHeight;' + '}' + 'if (lastChange < currentTime - 1000) clearInterval(timer);' + '};' + 'timer = setInterval(poller, 100);' + '}' + '</script></head><body style="overflow: hidden">' + document.getElementById( 'xToolbarSpace' ).innerHTML + '</body></html>' ) ; eTargetDocument.close() ; if( FCKBrowserInfo.IsAIR ) FCKAdobeAIR.ToolbarSet_InitOutFrame( eTargetDocument ) ; FCKTools.AddEventListener( eTargetDocument, 'contextmenu', FCKTools.CancelEvent ) ; // Load external resources (must be done here, otherwise Firefox will not // have the document DOM ready to be used right away. FCKTools.AppendStyleSheet( eTargetDocument, FCKConfig.SkinEditorCSS ) ; oToolbarSet = eToolbarTarget.__FCKToolbarSet = new FCKToolbarSet( eTargetDocument ) ; oToolbarSet._IFrame = eToolbarIFrame ; if ( FCK.IECleanup ) FCK.IECleanup.AddItem( eToolbarTarget, FCKToolbarSet_Target_Cleanup ) ; } oToolbarSet.CurrentInstance = FCK ; if ( !oToolbarSet.ToolbarItems ) oToolbarSet.ToolbarItems = FCKToolbarItems ; FCK.AttachToOnSelectionChange( oToolbarSet.RefreshItemsState ) ; return oToolbarSet ; } function FCK_OnBlur( editorInstance ) { var eToolbarSet = editorInstance.ToolbarSet ; if ( eToolbarSet.CurrentInstance == editorInstance ) eToolbarSet.Disable() ; } function FCK_OnFocus( editorInstance ) { var oToolbarset = editorInstance.ToolbarSet ; var oInstance = editorInstance || FCK ; // Unregister the toolbar window from the current instance. oToolbarset.CurrentInstance.FocusManager.RemoveWindow( oToolbarset._IFrame.contentWindow ) ; // Set the new current instance. oToolbarset.CurrentInstance = oInstance ; // Register the toolbar window in the current instance. oInstance.FocusManager.AddWindow( oToolbarset._IFrame.contentWindow, true ) ; oToolbarset.Enable() ; } function FCKToolbarSet_Cleanup() { this._TargetElement = null ; this._IFrame = null ; } function FCKToolbarSet_Target_Cleanup() { this.__FCKToolbarSet = null ; } var FCKToolbarSet = function( targetDocument ) { this._Document = targetDocument ; // Get the element that will hold the elements structure. this._TargetElement = targetDocument.getElementById( 'xToolbar' ) ; // Setup the expand and collapse handlers. var eExpandHandle = targetDocument.getElementById( 'xExpandHandle' ) ; var eCollapseHandle = targetDocument.getElementById( 'xCollapseHandle' ) ; eExpandHandle.title = FCKLang.ToolbarExpand ; FCKTools.AddEventListener( eExpandHandle, 'click', FCKToolbarSet_Expand_OnClick ) ; eCollapseHandle.title = FCKLang.ToolbarCollapse ; FCKTools.AddEventListener( eCollapseHandle, 'click', FCKToolbarSet_Collapse_OnClick ) ; // Set the toolbar state at startup. if ( !FCKConfig.ToolbarCanCollapse || FCKConfig.ToolbarStartExpanded ) this.Expand() ; else this.Collapse() ; // Enable/disable the collapse handler eCollapseHandle.style.display = FCKConfig.ToolbarCanCollapse ? '' : 'none' ; if ( FCKConfig.ToolbarCanCollapse ) eCollapseHandle.style.display = '' ; else targetDocument.getElementById( 'xTBLeftBorder' ).style.display = '' ; // Set the default properties. this.Toolbars = new Array() ; this.IsLoaded = false ; if ( FCK.IECleanup ) FCK.IECleanup.AddItem( this, FCKToolbarSet_Cleanup ) ; } function FCKToolbarSet_Expand_OnClick() { FCK.ToolbarSet.Expand() ; } function FCKToolbarSet_Collapse_OnClick() { FCK.ToolbarSet.Collapse() ; } FCKToolbarSet.prototype.Expand = function() { this._ChangeVisibility( false ) ; } FCKToolbarSet.prototype.Collapse = function() { this._ChangeVisibility( true ) ; } FCKToolbarSet.prototype._ChangeVisibility = function( collapse ) { this._Document.getElementById( 'xCollapsed' ).style.display = collapse ? '' : 'none' ; this._Document.getElementById( 'xExpanded' ).style.display = collapse ? 'none' : '' ; if ( FCKBrowserInfo.IsGecko ) { // I had to use "setTimeout" because Gecko was not responding in a right // way when calling window.onresize() directly. FCKTools.RunFunction( window.onresize ) ; } } FCKToolbarSet.prototype.Load = function( toolbarSetName ) { this.Name = toolbarSetName ; this.Items = new Array() ; // Reset the array of toolbar items that are active only on WYSIWYG mode. this.ItemsWysiwygOnly = new Array() ; // Reset the array of toolbar items that are sensitive to the cursor position. this.ItemsContextSensitive = new Array() ; // Cleanup the target element. this._TargetElement.innerHTML = '' ; var ToolbarSet = FCKConfig.ToolbarSets[toolbarSetName] ; if ( !ToolbarSet ) { alert( FCKLang.UnknownToolbarSet.replace( /%1/g, toolbarSetName ) ) ; return ; } this.Toolbars = new Array() ; for ( var x = 0 ; x < ToolbarSet.length ; x++ ) { var oToolbarItems = ToolbarSet[x] ; // If the configuration for the toolbar is missing some element or has any extra comma // this item won't be valid, so skip it and keep on processing. if ( !oToolbarItems ) continue ; var oToolbar ; if ( typeof( oToolbarItems ) == 'string' ) { if ( oToolbarItems == '/' ) oToolbar = new FCKToolbarBreak() ; } else { oToolbar = new FCKToolbar() ; for ( var j = 0 ; j < oToolbarItems.length ; j++ ) { var sItem = oToolbarItems[j] ; if ( sItem == '-') oToolbar.AddSeparator() ; else { var oItem = FCKToolbarItems.GetItem( sItem ) ; if ( oItem ) { oToolbar.AddItem( oItem ) ; this.Items.push( oItem ) ; if ( !oItem.SourceView ) this.ItemsWysiwygOnly.push( oItem ) ; if ( oItem.ContextSensitive ) this.ItemsContextSensitive.push( oItem ) ; } } } // oToolbar.AddTerminator() ; } oToolbar.Create( this._TargetElement ) ; this.Toolbars[ this.Toolbars.length ] = oToolbar ; } FCKTools.DisableSelection( this._Document.getElementById( 'xCollapseHandle' ).parentNode ) ; if ( FCK.Status != FCK_STATUS_COMPLETE ) FCK.Events.AttachEvent( 'OnStatusChange', this.RefreshModeState ) ; else this.RefreshModeState() ; this.IsLoaded = true ; this.IsEnabled = true ; FCKTools.RunFunction( this.OnLoad ) ; } FCKToolbarSet.prototype.Enable = function() { if ( this.IsEnabled ) return ; this.IsEnabled = true ; var aItems = this.Items ; for ( var i = 0 ; i < aItems.length ; i++ ) aItems[i].RefreshState() ; } FCKToolbarSet.prototype.Disable = function() { if ( !this.IsEnabled ) return ; this.IsEnabled = false ; var aItems = this.Items ; for ( var i = 0 ; i < aItems.length ; i++ ) aItems[i].Disable() ; } FCKToolbarSet.prototype.RefreshModeState = function( editorInstance ) { if ( FCK.Status != FCK_STATUS_COMPLETE ) return ; var oToolbarSet = editorInstance ? editorInstance.ToolbarSet : this ; var aItems = oToolbarSet.ItemsWysiwygOnly ; if ( FCK.EditMode == FCK_EDITMODE_WYSIWYG ) { // Enable all buttons that are available on WYSIWYG mode only. for ( var i = 0 ; i < aItems.length ; i++ ) aItems[i].Enable() ; // Refresh the buttons state. oToolbarSet.RefreshItemsState( editorInstance ) ; } else { // Refresh the buttons state. oToolbarSet.RefreshItemsState( editorInstance ) ; // Disable all buttons that are available on WYSIWYG mode only. for ( var j = 0 ; j < aItems.length ; j++ ) aItems[j].Disable() ; } } FCKToolbarSet.prototype.RefreshItemsState = function( editorInstance ) { var aItems = ( editorInstance ? editorInstance.ToolbarSet : this ).ItemsContextSensitive ; for ( var i = 0 ; i < aItems.length ; i++ ) aItems[i].RefreshState() ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fcktoolbarset.js
JavaScript
asf20
11,492
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Defines the FCK.ContextMenu object that is responsible for all * Context Menu operations in the editing area. */ FCK.ContextMenu = new Object() ; FCK.ContextMenu.Listeners = new Array() ; FCK.ContextMenu.RegisterListener = function( listener ) { if ( listener ) this.Listeners.push( listener ) ; } function FCK_ContextMenu_Init() { var oInnerContextMenu = FCK.ContextMenu._InnerContextMenu = new FCKContextMenu( FCKBrowserInfo.IsIE ? window : window.parent, FCKLang.Dir ) ; oInnerContextMenu.CtrlDisable = FCKConfig.BrowserContextMenuOnCtrl ; oInnerContextMenu.OnBeforeOpen = FCK_ContextMenu_OnBeforeOpen ; oInnerContextMenu.OnItemClick = FCK_ContextMenu_OnItemClick ; // Get the registering function. var oMenu = FCK.ContextMenu ; // Register all configured context menu listeners. for ( var i = 0 ; i < FCKConfig.ContextMenu.length ; i++ ) oMenu.RegisterListener( FCK_ContextMenu_GetListener( FCKConfig.ContextMenu[i] ) ) ; } function FCK_ContextMenu_GetListener( listenerName ) { switch ( listenerName ) { case 'Generic' : return { AddItems : function( menu, tag, tagName ) { menu.AddItem( 'Cut' , FCKLang.Cut , 7, FCKCommands.GetCommand( 'Cut' ).GetState() == FCK_TRISTATE_DISABLED ) ; menu.AddItem( 'Copy' , FCKLang.Copy , 8, FCKCommands.GetCommand( 'Copy' ).GetState() == FCK_TRISTATE_DISABLED ) ; menu.AddItem( 'Paste' , FCKLang.Paste , 9, FCKCommands.GetCommand( 'Paste' ).GetState() == FCK_TRISTATE_DISABLED ) ; }} ; case 'Table' : return { AddItems : function( menu, tag, tagName ) { var bIsTable = ( tagName == 'TABLE' ) ; var bIsCell = ( !bIsTable && FCKSelection.HasAncestorNode( 'TABLE' ) ) ; if ( bIsCell ) { menu.AddSeparator() ; var oItem = menu.AddItem( 'Cell' , FCKLang.CellCM ) ; oItem.AddItem( 'TableInsertCellBefore' , FCKLang.InsertCellBefore, 69 ) ; oItem.AddItem( 'TableInsertCellAfter' , FCKLang.InsertCellAfter, 58 ) ; oItem.AddItem( 'TableDeleteCells' , FCKLang.DeleteCells, 59 ) ; if ( FCKBrowserInfo.IsGecko ) oItem.AddItem( 'TableMergeCells' , FCKLang.MergeCells, 60, FCKCommands.GetCommand( 'TableMergeCells' ).GetState() == FCK_TRISTATE_DISABLED ) ; else { oItem.AddItem( 'TableMergeRight' , FCKLang.MergeRight, 60, FCKCommands.GetCommand( 'TableMergeRight' ).GetState() == FCK_TRISTATE_DISABLED ) ; oItem.AddItem( 'TableMergeDown' , FCKLang.MergeDown, 60, FCKCommands.GetCommand( 'TableMergeDown' ).GetState() == FCK_TRISTATE_DISABLED ) ; } oItem.AddItem( 'TableHorizontalSplitCell' , FCKLang.HorizontalSplitCell, 61, FCKCommands.GetCommand( 'TableHorizontalSplitCell' ).GetState() == FCK_TRISTATE_DISABLED ) ; oItem.AddItem( 'TableVerticalSplitCell' , FCKLang.VerticalSplitCell, 61, FCKCommands.GetCommand( 'TableVerticalSplitCell' ).GetState() == FCK_TRISTATE_DISABLED ) ; oItem.AddSeparator() ; oItem.AddItem( 'TableCellProp' , FCKLang.CellProperties, 57, FCKCommands.GetCommand( 'TableCellProp' ).GetState() == FCK_TRISTATE_DISABLED ) ; menu.AddSeparator() ; oItem = menu.AddItem( 'Row' , FCKLang.RowCM ) ; oItem.AddItem( 'TableInsertRowBefore' , FCKLang.InsertRowBefore, 70 ) ; oItem.AddItem( 'TableInsertRowAfter' , FCKLang.InsertRowAfter, 62 ) ; oItem.AddItem( 'TableDeleteRows' , FCKLang.DeleteRows, 63 ) ; menu.AddSeparator() ; oItem = menu.AddItem( 'Column' , FCKLang.ColumnCM ) ; oItem.AddItem( 'TableInsertColumnBefore', FCKLang.InsertColumnBefore, 71 ) ; oItem.AddItem( 'TableInsertColumnAfter' , FCKLang.InsertColumnAfter, 64 ) ; oItem.AddItem( 'TableDeleteColumns' , FCKLang.DeleteColumns, 65 ) ; } if ( bIsTable || bIsCell ) { menu.AddSeparator() ; menu.AddItem( 'TableDelete' , FCKLang.TableDelete ) ; menu.AddItem( 'TableProp' , FCKLang.TableProperties, 39 ) ; } }} ; case 'Link' : return { AddItems : function( menu, tag, tagName ) { var bInsideLink = ( tagName == 'A' || FCKSelection.HasAncestorNode( 'A' ) ) ; if ( bInsideLink || FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED ) { // Go up to the anchor to test its properties var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ; var bIsAnchor = ( oLink && oLink.name.length > 0 && oLink.href.length == 0 ) ; // If it isn't a link then don't add the Link context menu if ( bIsAnchor ) return ; menu.AddSeparator() ; menu.AddItem( 'VisitLink', FCKLang.VisitLink ) ; menu.AddSeparator() ; if ( bInsideLink ) menu.AddItem( 'Link', FCKLang.EditLink , 34 ) ; menu.AddItem( 'Unlink' , FCKLang.RemoveLink , 35 ) ; } }} ; case 'Image' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'IMG' && !tag.getAttribute( '_fckfakelement' ) ) { menu.AddSeparator() ; menu.AddItem( 'Image', FCKLang.ImageProperties, 37 ) ; } }} ; case 'Anchor' : return { AddItems : function( menu, tag, tagName ) { // Go up to the anchor to test its properties var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ; var bIsAnchor = ( oLink && oLink.name.length > 0 ) ; if ( bIsAnchor || ( tagName == 'IMG' && tag.getAttribute( '_fckanchor' ) ) ) { menu.AddSeparator() ; menu.AddItem( 'Anchor', FCKLang.AnchorProp, 36 ) ; menu.AddItem( 'AnchorDelete', FCKLang.AnchorDelete ) ; } }} ; case 'Flash' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'IMG' && tag.getAttribute( '_fckflash' ) ) { menu.AddSeparator() ; menu.AddItem( 'Flash', FCKLang.FlashProperties, 38 ) ; } }} ; case 'Form' : return { AddItems : function( menu, tag, tagName ) { if ( FCKSelection.HasAncestorNode('FORM') ) { menu.AddSeparator() ; menu.AddItem( 'Form', FCKLang.FormProp, 48 ) ; } }} ; case 'Checkbox' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'INPUT' && tag.type == 'checkbox' ) { menu.AddSeparator() ; menu.AddItem( 'Checkbox', FCKLang.CheckboxProp, 49 ) ; } }} ; case 'Radio' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'INPUT' && tag.type == 'radio' ) { menu.AddSeparator() ; menu.AddItem( 'Radio', FCKLang.RadioButtonProp, 50 ) ; } }} ; case 'TextField' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'INPUT' && ( tag.type == 'text' || tag.type == 'password' ) ) { menu.AddSeparator() ; menu.AddItem( 'TextField', FCKLang.TextFieldProp, 51 ) ; } }} ; case 'HiddenField' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'IMG' && tag.getAttribute( '_fckinputhidden' ) ) { menu.AddSeparator() ; menu.AddItem( 'HiddenField', FCKLang.HiddenFieldProp, 56 ) ; } }} ; case 'ImageButton' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'INPUT' && tag.type == 'image' ) { menu.AddSeparator() ; menu.AddItem( 'ImageButton', FCKLang.ImageButtonProp, 55 ) ; } }} ; case 'Button' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'INPUT' && ( tag.type == 'button' || tag.type == 'submit' || tag.type == 'reset' ) ) { menu.AddSeparator() ; menu.AddItem( 'Button', FCKLang.ButtonProp, 54 ) ; } }} ; case 'Select' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'SELECT' ) { menu.AddSeparator() ; menu.AddItem( 'Select', FCKLang.SelectionFieldProp, 53 ) ; } }} ; case 'Textarea' : return { AddItems : function( menu, tag, tagName ) { if ( tagName == 'TEXTAREA' ) { menu.AddSeparator() ; menu.AddItem( 'Textarea', FCKLang.TextareaProp, 52 ) ; } }} ; case 'BulletedList' : return { AddItems : function( menu, tag, tagName ) { if ( FCKSelection.HasAncestorNode('UL') ) { menu.AddSeparator() ; menu.AddItem( 'BulletedList', FCKLang.BulletedListProp, 27 ) ; } }} ; case 'NumberedList' : return { AddItems : function( menu, tag, tagName ) { if ( FCKSelection.HasAncestorNode('OL') ) { menu.AddSeparator() ; menu.AddItem( 'NumberedList', FCKLang.NumberedListProp, 26 ) ; } }} ; case 'DivContainer': return { AddItems : function( menu, tag, tagName ) { var currentBlocks = FCKDomTools.GetSelectedDivContainers() ; if ( currentBlocks.length > 0 ) { menu.AddSeparator() ; menu.AddItem( 'EditDiv', FCKLang.EditDiv, 75 ) ; menu.AddItem( 'DeleteDiv', FCKLang.DeleteDiv, 76 ) ; } }} ; } return null ; } function FCK_ContextMenu_OnBeforeOpen() { // Update the UI. FCK.Events.FireEvent( 'OnSelectionChange' ) ; // Get the actual selected tag (if any). var oTag, sTagName ; // The extra () is to avoid a warning with strict error checking. This is ok. if ( (oTag = FCKSelection.GetSelectedElement()) ) sTagName = oTag.tagName ; // Cleanup the current menu items. var oMenu = FCK.ContextMenu._InnerContextMenu ; oMenu.RemoveAllItems() ; // Loop through the listeners. var aListeners = FCK.ContextMenu.Listeners ; for ( var i = 0 ; i < aListeners.length ; i++ ) aListeners[i].AddItems( oMenu, oTag, sTagName ) ; } function FCK_ContextMenu_OnItemClick( item ) { // IE might work incorrectly if we refocus the editor #798 if ( !FCKBrowserInfo.IsIE ) FCK.Focus() ; FCKCommands.GetCommand( item.Name ).Execute( item.CustomData ) ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fck_contextmenu.js
JavaScript
asf20
10,638
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Define all commands available in the editor. */ var FCKCommands = FCK.Commands = new Object() ; FCKCommands.LoadedCommands = new Object() ; FCKCommands.RegisterCommand = function( commandName, command ) { this.LoadedCommands[ commandName ] = command ; } FCKCommands.GetCommand = function( commandName ) { var oCommand = FCKCommands.LoadedCommands[ commandName ] ; if ( oCommand ) return oCommand ; switch ( commandName ) { case 'Bold' : case 'Italic' : case 'Underline' : case 'StrikeThrough': case 'Subscript' : case 'Superscript' : oCommand = new FCKCoreStyleCommand( commandName ) ; break ; case 'RemoveFormat' : oCommand = new FCKRemoveFormatCommand() ; break ; case 'DocProps' : oCommand = new FCKDialogCommand( 'DocProps' , FCKLang.DocProps , 'dialog/fck_docprops.html' , 400, 380, FCKCommands.GetFullPageState ) ; break ; case 'Templates' : oCommand = new FCKDialogCommand( 'Templates' , FCKLang.DlgTemplatesTitle , 'dialog/fck_template.html' , 380, 450 ) ; break ; case 'Link' : oCommand = new FCKDialogCommand( 'Link' , FCKLang.DlgLnkWindowTitle , 'dialog/fck_link.html' , 400, 300 ) ; break ; case 'Unlink' : oCommand = new FCKUnlinkCommand() ; break ; case 'VisitLink' : oCommand = new FCKVisitLinkCommand() ; break ; case 'Anchor' : oCommand = new FCKDialogCommand( 'Anchor' , FCKLang.DlgAnchorTitle , 'dialog/fck_anchor.html' , 370, 160 ) ; break ; case 'AnchorDelete' : oCommand = new FCKAnchorDeleteCommand() ; break ; case 'BulletedList' : oCommand = new FCKDialogCommand( 'BulletedList', FCKLang.BulletedListProp , 'dialog/fck_listprop.html?UL' , 370, 160 ) ; break ; case 'NumberedList' : oCommand = new FCKDialogCommand( 'NumberedList', FCKLang.NumberedListProp , 'dialog/fck_listprop.html?OL' , 370, 160 ) ; break ; case 'About' : oCommand = new FCKDialogCommand( 'About' , FCKLang.About , 'dialog/fck_about.html' , 420, 330, function(){ return FCK_TRISTATE_OFF ; } ) ; break ; case 'Find' : oCommand = new FCKDialogCommand( 'Find' , FCKLang.DlgFindAndReplaceTitle, 'dialog/fck_replace.html' , 340, 230, null, null, 'Find' ) ; break ; case 'Replace' : oCommand = new FCKDialogCommand( 'Replace' , FCKLang.DlgFindAndReplaceTitle, 'dialog/fck_replace.html' , 340, 230, null, null, 'Replace' ) ; break ; case 'Image' : oCommand = new FCKDialogCommand( 'Image' , FCKLang.DlgImgTitle , 'dialog/fck_image.html' , 450, 390 ) ; break ; case 'Flash' : oCommand = new FCKDialogCommand( 'Flash' , FCKLang.DlgFlashTitle , 'dialog/fck_flash.html' , 450, 390 ) ; break ; case 'SpecialChar' : oCommand = new FCKDialogCommand( 'SpecialChar', FCKLang.DlgSpecialCharTitle , 'dialog/fck_specialchar.html' , 400, 290 ) ; break ; case 'Smiley' : oCommand = new FCKDialogCommand( 'Smiley' , FCKLang.DlgSmileyTitle , 'dialog/fck_smiley.html' , FCKConfig.SmileyWindowWidth, FCKConfig.SmileyWindowHeight ) ; break ; case 'Table' : oCommand = new FCKDialogCommand( 'Table' , FCKLang.DlgTableTitle , 'dialog/fck_table.html' , 480, 250 ) ; break ; case 'TableProp' : oCommand = new FCKDialogCommand( 'Table' , FCKLang.DlgTableTitle , 'dialog/fck_table.html?Parent', 480, 250 ) ; break ; case 'TableCellProp': oCommand = new FCKDialogCommand( 'TableCell' , FCKLang.DlgCellTitle , 'dialog/fck_tablecell.html' , 550, 240 ) ; break ; case 'Style' : oCommand = new FCKStyleCommand() ; break ; case 'FontName' : oCommand = new FCKFontNameCommand() ; break ; case 'FontSize' : oCommand = new FCKFontSizeCommand() ; break ; case 'FontFormat' : oCommand = new FCKFormatBlockCommand() ; break ; case 'Source' : oCommand = new FCKSourceCommand() ; break ; case 'Preview' : oCommand = new FCKPreviewCommand() ; break ; case 'Save' : oCommand = new FCKSaveCommand() ; break ; case 'NewPage' : oCommand = new FCKNewPageCommand() ; break ; case 'PageBreak' : oCommand = new FCKPageBreakCommand() ; break ; case 'Rule' : oCommand = new FCKRuleCommand() ; break ; case 'Nbsp' : oCommand = new FCKNbsp() ; break ; case 'TextColor' : oCommand = new FCKTextColorCommand('ForeColor') ; break ; case 'BGColor' : oCommand = new FCKTextColorCommand('BackColor') ; break ; case 'Paste' : oCommand = new FCKPasteCommand() ; break ; case 'PasteText' : oCommand = new FCKPastePlainTextCommand() ; break ; case 'PasteWord' : oCommand = new FCKPasteWordCommand() ; break ; case 'JustifyLeft' : oCommand = new FCKJustifyCommand( 'left' ) ; break ; case 'JustifyCenter' : oCommand = new FCKJustifyCommand( 'center' ) ; break ; case 'JustifyRight' : oCommand = new FCKJustifyCommand( 'right' ) ; break ; case 'JustifyFull' : oCommand = new FCKJustifyCommand( 'justify' ) ; break ; case 'Indent' : oCommand = new FCKIndentCommand( 'indent', FCKConfig.IndentLength ) ; break ; case 'Outdent' : oCommand = new FCKIndentCommand( 'outdent', FCKConfig.IndentLength * -1 ) ; break ; case 'Blockquote' : oCommand = new FCKBlockQuoteCommand() ; break ; case 'CreateDiv' : oCommand = new FCKDialogCommand( 'CreateDiv', FCKLang.CreateDiv, 'dialog/fck_div.html', 380, 210, null, null, true ) ; break ; case 'EditDiv' : oCommand = new FCKDialogCommand( 'EditDiv', FCKLang.EditDiv, 'dialog/fck_div.html', 380, 210, null, null, false ) ; break ; case 'DeleteDiv' : oCommand = new FCKDeleteDivCommand() ; break ; case 'TableInsertRowAfter' : oCommand = new FCKTableCommand('TableInsertRowAfter') ; break ; case 'TableInsertRowBefore' : oCommand = new FCKTableCommand('TableInsertRowBefore') ; break ; case 'TableDeleteRows' : oCommand = new FCKTableCommand('TableDeleteRows') ; break ; case 'TableInsertColumnAfter' : oCommand = new FCKTableCommand('TableInsertColumnAfter') ; break ; case 'TableInsertColumnBefore' : oCommand = new FCKTableCommand('TableInsertColumnBefore') ; break ; case 'TableDeleteColumns' : oCommand = new FCKTableCommand('TableDeleteColumns') ; break ; case 'TableInsertCellAfter' : oCommand = new FCKTableCommand('TableInsertCellAfter') ; break ; case 'TableInsertCellBefore' : oCommand = new FCKTableCommand('TableInsertCellBefore') ; break ; case 'TableDeleteCells' : oCommand = new FCKTableCommand('TableDeleteCells') ; break ; case 'TableMergeCells' : oCommand = new FCKTableCommand('TableMergeCells') ; break ; case 'TableMergeRight' : oCommand = new FCKTableCommand('TableMergeRight') ; break ; case 'TableMergeDown' : oCommand = new FCKTableCommand('TableMergeDown') ; break ; case 'TableHorizontalSplitCell' : oCommand = new FCKTableCommand('TableHorizontalSplitCell') ; break ; case 'TableVerticalSplitCell' : oCommand = new FCKTableCommand('TableVerticalSplitCell') ; break ; case 'TableDelete' : oCommand = new FCKTableCommand('TableDelete') ; break ; case 'Form' : oCommand = new FCKDialogCommand( 'Form' , FCKLang.Form , 'dialog/fck_form.html' , 380, 210 ) ; break ; case 'Checkbox' : oCommand = new FCKDialogCommand( 'Checkbox' , FCKLang.Checkbox , 'dialog/fck_checkbox.html' , 380, 200 ) ; break ; case 'Radio' : oCommand = new FCKDialogCommand( 'Radio' , FCKLang.RadioButton , 'dialog/fck_radiobutton.html' , 380, 200 ) ; break ; case 'TextField' : oCommand = new FCKDialogCommand( 'TextField' , FCKLang.TextField , 'dialog/fck_textfield.html' , 380, 210 ) ; break ; case 'Textarea' : oCommand = new FCKDialogCommand( 'Textarea' , FCKLang.Textarea , 'dialog/fck_textarea.html' , 380, 210 ) ; break ; case 'HiddenField' : oCommand = new FCKDialogCommand( 'HiddenField', FCKLang.HiddenField , 'dialog/fck_hiddenfield.html' , 380, 190 ) ; break ; case 'Button' : oCommand = new FCKDialogCommand( 'Button' , FCKLang.Button , 'dialog/fck_button.html' , 380, 210 ) ; break ; case 'Select' : oCommand = new FCKDialogCommand( 'Select' , FCKLang.SelectionField, 'dialog/fck_select.html' , 400, 340 ) ; break ; case 'ImageButton' : oCommand = new FCKDialogCommand( 'ImageButton', FCKLang.ImageButton , 'dialog/fck_image.html?ImageButton', 450, 390 ) ; break ; case 'SpellCheck' : oCommand = new FCKSpellCheckCommand() ; break ; case 'FitWindow' : oCommand = new FCKFitWindow() ; break ; case 'Undo' : oCommand = new FCKUndoCommand() ; break ; case 'Redo' : oCommand = new FCKRedoCommand() ; break ; case 'Copy' : oCommand = new FCKCutCopyCommand( false ) ; break ; case 'Cut' : oCommand = new FCKCutCopyCommand( true ) ; break ; case 'SelectAll' : oCommand = new FCKSelectAllCommand() ; break ; case 'InsertOrderedList' : oCommand = new FCKListCommand( 'insertorderedlist', 'ol' ) ; break ; case 'InsertUnorderedList' : oCommand = new FCKListCommand( 'insertunorderedlist', 'ul' ) ; break ; case 'ShowBlocks' : oCommand = new FCKShowBlockCommand( 'ShowBlocks', FCKConfig.StartupShowBlocks ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF ) ; break ; // Generic Undefined command (usually used when a command is under development). case 'Undefined' : oCommand = new FCKUndefinedCommand() ; break ; // By default we assume that it is a named command. default: if ( FCKRegexLib.NamedCommands.test( commandName ) ) oCommand = new FCKNamedCommand( commandName ) ; else { alert( FCKLang.UnknownCommand.replace( /%1/g, commandName ) ) ; return null ; } } FCKCommands.LoadedCommands[ commandName ] = oCommand ; return oCommand ; } // Gets the state of the "Document Properties" button. It must be enabled only // when "Full Page" editing is available. FCKCommands.GetFullPageState = function() { return FCKConfig.FullPage ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ; } FCKCommands.GetBooleanState = function( isDisabled ) { return isDisabled ? FCK_TRISTATE_DISABLED : FCK_TRISTATE_OFF ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/internals/fckcommands.js
JavaScript
asf20
10,481
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Extensions to the JavaScript Core. * * All custom extensions functions are PascalCased to differ from the standard * camelCased ones. */ String.prototype.Contains = function( textToCheck ) { return ( this.indexOf( textToCheck ) > -1 ) ; } String.prototype.Equals = function() { var aArgs = arguments ; // The arguments could also be a single array. if ( aArgs.length == 1 && aArgs[0].pop ) aArgs = aArgs[0] ; for ( var i = 0 ; i < aArgs.length ; i++ ) { if ( this == aArgs[i] ) return true ; } return false ; } String.prototype.IEquals = function() { var thisUpper = this.toUpperCase() ; var aArgs = arguments ; // The arguments could also be a single array. if ( aArgs.length == 1 && aArgs[0].pop ) aArgs = aArgs[0] ; for ( var i = 0 ; i < aArgs.length ; i++ ) { if ( thisUpper == aArgs[i].toUpperCase() ) return true ; } return false ; } String.prototype.ReplaceAll = function( searchArray, replaceArray ) { var replaced = this ; for ( var i = 0 ; i < searchArray.length ; i++ ) { replaced = replaced.replace( searchArray[i], replaceArray[i] ) ; } return replaced ; } String.prototype.StartsWith = function( value ) { return ( this.substr( 0, value.length ) == value ) ; } // Extends the String object, creating a "EndsWith" method on it. String.prototype.EndsWith = function( value, ignoreCase ) { var L1 = this.length ; var L2 = value.length ; if ( L2 > L1 ) return false ; if ( ignoreCase ) { var oRegex = new RegExp( value + '$' , 'i' ) ; return oRegex.test( this ) ; } else return ( L2 == 0 || this.substr( L1 - L2, L2 ) == value ) ; } String.prototype.Remove = function( start, length ) { var s = '' ; if ( start > 0 ) s = this.substring( 0, start ) ; if ( start + length < this.length ) s += this.substring( start + length , this.length ) ; return s ; } String.prototype.Trim = function() { // We are not using \s because we don't want "non-breaking spaces to be caught". return this.replace( /(^[ \t\n\r]*)|([ \t\n\r]*$)/g, '' ) ; } String.prototype.LTrim = function() { // We are not using \s because we don't want "non-breaking spaces to be caught". return this.replace( /^[ \t\n\r]*/g, '' ) ; } String.prototype.RTrim = function() { // We are not using \s because we don't want "non-breaking spaces to be caught". return this.replace( /[ \t\n\r]*$/g, '' ) ; } String.prototype.ReplaceNewLineChars = function( replacement ) { return this.replace( /\n/g, replacement ) ; } String.prototype.Replace = function( regExp, replacement, thisObj ) { if ( typeof replacement == 'function' ) { return this.replace( regExp, function() { return replacement.apply( thisObj || this, arguments ) ; } ) ; } else return this.replace( regExp, replacement ) ; } Array.prototype.IndexOf = function( value ) { for ( var i = 0 ; i < this.length ; i++ ) { if ( this[i] == value ) return i ; } return -1 ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/fckjscoreextensions.js
JavaScript
asf20
3,694
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * The Data Processor is responsible for transforming the input and output data * in the editor. For more info: * http://dev.fckeditor.net/wiki/Components/DataProcessor * * The default implementation offers the base XHTML compatibility features of * FCKeditor. Further Data Processors may be implemented for other purposes. * */ var FCKDataProcessor = function() {} FCKDataProcessor.prototype = { /* * Returns a string representing the HTML format of "data". The returned * value will be loaded in the editor. * The HTML must be from <html> to </html>, including <head>, <body> and * eventually the DOCTYPE. * Note: HTML comments may already be part of the data because of the * pre-processing made with ProtectedSource. * @param {String} data The data to be converted in the * DataProcessor specific format. */ ConvertToHtml : function( data ) { // The default data processor must handle two different cases depending // on the FullPage setting. Custom Data Processors will not be // compatible with FullPage, much probably. if ( FCKConfig.FullPage ) { // Save the DOCTYPE. FCK.DocTypeDeclaration = data.match( FCKRegexLib.DocTypeTag ) ; // Check if the <body> tag is available. if ( !FCKRegexLib.HasBodyTag.test( data ) ) data = '<body>' + data + '</body>' ; // Check if the <html> tag is available. if ( !FCKRegexLib.HtmlOpener.test( data ) ) data = '<html dir="' + FCKConfig.ContentLangDirection + '">' + data + '</html>' ; // Check if the <head> tag is available. if ( !FCKRegexLib.HeadOpener.test( data ) ) data = data.replace( FCKRegexLib.HtmlOpener, '$&<head><title></title></head>' ) ; return data ; } else { var html = FCKConfig.DocType + '<html dir="' + FCKConfig.ContentLangDirection + '"' ; // On IE, if you are using a DOCTYPE different of HTML 4 (like // XHTML), you must force the vertical scroll to show, otherwise // the horizontal one may appear when the page needs vertical scrolling. // TODO : Check it with IE7 and make it IE6- if it is the case. if ( FCKBrowserInfo.IsIE && FCKConfig.DocType.length > 0 && !FCKRegexLib.Html4DocType.test( FCKConfig.DocType ) ) html += ' style="overflow-y: scroll"' ; html += '><head><title></title></head>' + '<body' + FCKConfig.GetBodyAttributes() + '>' + data + '</body></html>' ; return html ; } }, /* * Converts a DOM (sub-)tree to a string in the data format. * @param {Object} rootNode The node that contains the DOM tree to be * converted to the data format. * @param {Boolean} excludeRoot Indicates that the root node must not * be included in the conversion, only its children. * @param {Boolean} format Indicates that the data must be formatted * for human reading. Not all Data Processors may provide it. */ ConvertToDataFormat : function( rootNode, excludeRoot, ignoreIfEmptyParagraph, format ) { var data = FCKXHtml.GetXHTML( rootNode, !excludeRoot, format ) ; if ( ignoreIfEmptyParagraph && FCKRegexLib.EmptyOutParagraph.test( data ) ) return '' ; return data ; }, /* * Makes any necessary changes to a piece of HTML for insertion in the * editor selection position. * @param {String} html The HTML to be fixed. */ FixHtml : function( html ) { return html ; } } ;
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fckdataprocessor.js
JavaScript
asf20
4,116
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Class for working with a selection range, much like the W3C DOM Range, but * it is not intended to be an implementation of the W3C interface. * (IE Implementation) */ FCKDomRange.prototype.MoveToSelection = function() { this.Release( true ) ; this._Range = new FCKW3CRange( this.Window.document ) ; var oSel = this.Window.document.selection ; if ( oSel.type != 'Control' ) { var eMarkerStart = this._GetSelectionMarkerTag( true ) ; var eMarkerEnd = this._GetSelectionMarkerTag( false ) ; if ( !eMarkerStart && !eMarkerEnd ) { this._Range.setStart( this.Window.document.body, 0 ) ; this._UpdateElementInfo() ; return ; } // Set the start boundary. this._Range.setStart( eMarkerStart.parentNode, FCKDomTools.GetIndexOf( eMarkerStart ) ) ; eMarkerStart.parentNode.removeChild( eMarkerStart ) ; // Set the end boundary. this._Range.setEnd( eMarkerEnd.parentNode, FCKDomTools.GetIndexOf( eMarkerEnd ) ) ; eMarkerEnd.parentNode.removeChild( eMarkerEnd ) ; this._UpdateElementInfo() ; } else { var oControl = oSel.createRange().item(0) ; if ( oControl ) { this._Range.setStartBefore( oControl ) ; this._Range.setEndAfter( oControl ) ; this._UpdateElementInfo() ; } } } FCKDomRange.prototype.Select = function( forceExpand ) { if ( this._Range ) this.SelectBookmark( this.CreateBookmark( true ), forceExpand ) ; } // Not compatible with bookmark created with CreateBookmark2. // The bookmark nodes will be deleted from the document. FCKDomRange.prototype.SelectBookmark = function( bookmark, forceExpand ) { var bIsCollapsed = this.CheckIsCollapsed() ; var bIsStartMakerAlone ; var dummySpan ; // Create marker tags for the start and end boundaries. var eStartMarker = this.GetBookmarkNode( bookmark, true ) ; if ( !eStartMarker ) return ; var eEndMarker ; if ( !bIsCollapsed ) eEndMarker = this.GetBookmarkNode( bookmark, false ) ; // Create the main range which will be used for the selection. var oIERange = this.Window.document.body.createTextRange() ; // Position the range at the start boundary. oIERange.moveToElementText( eStartMarker ) ; oIERange.moveStart( 'character', 1 ) ; if ( eEndMarker ) { // Create a tool range for the end. var oIERangeEnd = this.Window.document.body.createTextRange() ; // Position the tool range at the end. oIERangeEnd.moveToElementText( eEndMarker ) ; // Move the end boundary of the main range to match the tool range. oIERange.setEndPoint( 'EndToEnd', oIERangeEnd ) ; oIERange.moveEnd( 'character', -1 ) ; } else { bIsStartMakerAlone = ( forceExpand || !eStartMarker.previousSibling || eStartMarker.previousSibling.nodeName.toLowerCase() == 'br' ) && !eStartMarker.nextSibing ; // Append a temporary <span>&#65279;</span> before the selection. // This is needed to avoid IE destroying selections inside empty // inline elements, like <b></b> (#253). // It is also needed when placing the selection right after an inline // element to avoid the selection moving inside of it. dummySpan = this.Window.document.createElement( 'span' ) ; dummySpan.innerHTML = '&#65279;' ; // Zero Width No-Break Space (U+FEFF). See #1359. eStartMarker.parentNode.insertBefore( dummySpan, eStartMarker ) ; if ( bIsStartMakerAlone ) { // To expand empty blocks or line spaces after <br>, we need // instead to have any char, which will be later deleted using the // selection. // \ufeff = Zero Width No-Break Space (U+FEFF). See #1359. eStartMarker.parentNode.insertBefore( this.Window.document.createTextNode( '\ufeff' ), eStartMarker ) ; } } if ( !this._Range ) this._Range = this.CreateRange() ; // Remove the markers (reset the position, because of the changes in the DOM tree). this._Range.setStartBefore( eStartMarker ) ; eStartMarker.parentNode.removeChild( eStartMarker ) ; if ( bIsCollapsed ) { if ( bIsStartMakerAlone ) { // Move the selection start to include the temporary &#65279;. oIERange.moveStart( 'character', -1 ) ; oIERange.select() ; // Remove our temporary stuff. this.Window.document.selection.clear() ; } else oIERange.select() ; FCKDomTools.RemoveNode( dummySpan ) ; } else { this._Range.setEndBefore( eEndMarker ) ; eEndMarker.parentNode.removeChild( eEndMarker ) ; oIERange.select() ; } } FCKDomRange.prototype._GetSelectionMarkerTag = function( toStart ) { var doc = this.Window.document ; var selection = doc.selection ; // Get a range for the start boundary. var oRange ; // IE may throw an "unspecified error" on some cases (it happened when // loading _samples/default.html), so try/catch. try { oRange = selection.createRange() ; } catch (e) { return null ; } // IE might take the range object to the main window instead of inside the editor iframe window. // This is known to happen when the editor window has not been selected before (See #933). // We need to avoid that. if ( oRange.parentElement().document != doc ) return null ; oRange.collapse( toStart === true ) ; // Paste a marker element at the collapsed range and get it from the DOM. var sMarkerId = 'fck_dom_range_temp_' + (new Date()).valueOf() + '_' + Math.floor(Math.random()*1000) ; oRange.pasteHTML( '<span id="' + sMarkerId + '"></span>' ) ; return doc.getElementById( sMarkerId ) ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fckdomrange_ie.js
JavaScript
asf20
6,158
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * FCKToolbarPanelButton Class: Handles the Fonts combo selector. */ var FCKToolbarFontsCombo = function( tooltip, style ) { this.CommandName = 'FontName' ; this.Label = this.GetLabel() ; this.Tooltip = tooltip ? tooltip : this.Label ; this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ; this.DefaultLabel = FCKConfig.DefaultFontLabel || '' ; } // Inherit from FCKToolbarSpecialCombo. FCKToolbarFontsCombo.prototype = new FCKToolbarFontFormatCombo( false ) ; FCKToolbarFontsCombo.prototype.GetLabel = function() { return FCKLang.Font ; } FCKToolbarFontsCombo.prototype.GetStyles = function() { var baseStyle = FCKStyles.GetStyle( '_FCK_FontFace' ) ; if ( !baseStyle ) { alert( "The FCKConfig.CoreStyles['Size'] setting was not found. Please check the fckconfig.js file" ) ; return {} ; } var styles = {} ; var fonts = FCKConfig.FontNames.split(';') ; for ( var i = 0 ; i < fonts.length ; i++ ) { var fontParts = fonts[i].split('/') ; var font = fontParts[0] ; var caption = fontParts[1] || font ; var style = FCKTools.CloneObject( baseStyle ) ; style.SetVariable( 'Font', font ) ; style.Label = caption ; styles[ caption ] = style ; } return styles ; } FCKToolbarFontsCombo.prototype.RefreshActiveItems = FCKToolbarStyleCombo.prototype.RefreshActiveItems ; FCKToolbarFontsCombo.prototype.StyleCombo_OnBeforeClick = function( targetSpecialCombo ) { // Clear the current selection. targetSpecialCombo.DeselectAll() ; var startElement = FCKSelection.GetBoundaryParentElement( true ) ; if ( startElement ) { var path = new FCKElementPath( startElement ) ; for ( var i in targetSpecialCombo.Items ) { var item = targetSpecialCombo.Items[i] ; var style = item.Style ; if ( style.CheckActive( path ) ) { targetSpecialCombo.SelectItem( item ) ; return ; } } } }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js
JavaScript
asf20
2,558
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * Controls the [Enter] keystroke behavior in a document. */ /* * Constructor. * @targetDocument : the target document. * @enterMode : the behavior for the <Enter> keystroke. * May be "p", "div", "br". Default is "p". * @shiftEnterMode : the behavior for the <Shift>+<Enter> keystroke. * May be "p", "div", "br". Defaults to "br". */ var FCKEnterKey = function( targetWindow, enterMode, shiftEnterMode, tabSpaces ) { this.Window = targetWindow ; this.EnterMode = enterMode || 'p' ; this.ShiftEnterMode = shiftEnterMode || 'br' ; // Setup the Keystroke Handler. var oKeystrokeHandler = new FCKKeystrokeHandler( false ) ; oKeystrokeHandler._EnterKey = this ; oKeystrokeHandler.OnKeystroke = FCKEnterKey_OnKeystroke ; oKeystrokeHandler.SetKeystrokes( [ [ 13 , 'Enter' ], [ SHIFT + 13, 'ShiftEnter' ], [ 8 , 'Backspace' ], [ CTRL + 8 , 'CtrlBackspace' ], [ 46 , 'Delete' ] ] ) ; this.TabText = '' ; // Safari by default inserts 4 spaces on TAB, while others make the editor // loose focus. So, we need to handle it here to not include those spaces. if ( tabSpaces > 0 || FCKBrowserInfo.IsSafari ) { while ( tabSpaces-- ) this.TabText += '\xa0' ; oKeystrokeHandler.SetKeystrokes( [ 9, 'Tab' ] ); } oKeystrokeHandler.AttachToElement( targetWindow.document ) ; } function FCKEnterKey_OnKeystroke( keyCombination, keystrokeValue ) { var oEnterKey = this._EnterKey ; try { switch ( keystrokeValue ) { case 'Enter' : return oEnterKey.DoEnter() ; break ; case 'ShiftEnter' : return oEnterKey.DoShiftEnter() ; break ; case 'Backspace' : return oEnterKey.DoBackspace() ; break ; case 'Delete' : return oEnterKey.DoDelete() ; break ; case 'Tab' : return oEnterKey.DoTab() ; break ; case 'CtrlBackspace' : return oEnterKey.DoCtrlBackspace() ; break ; } } catch (e) { // If for any reason we are not able to handle it, go // ahead with the browser default behavior. } return false ; } /* * Executes the <Enter> key behavior. */ FCKEnterKey.prototype.DoEnter = function( mode, hasShift ) { // Save an undo snapshot before doing anything FCKUndo.SaveUndoStep() ; this._HasShift = ( hasShift === true ) ; var parentElement = FCKSelection.GetParentElement() ; var parentPath = new FCKElementPath( parentElement ) ; var sMode = mode || this.EnterMode ; if ( sMode == 'br' || parentPath.Block && parentPath.Block.tagName.toLowerCase() == 'pre' ) return this._ExecuteEnterBr() ; else return this._ExecuteEnterBlock( sMode ) ; } /* * Executes the <Shift>+<Enter> key behavior. */ FCKEnterKey.prototype.DoShiftEnter = function() { return this.DoEnter( this.ShiftEnterMode, true ) ; } /* * Executes the <Backspace> key behavior. */ FCKEnterKey.prototype.DoBackspace = function() { var bCustom = false ; // Get the current selection. var oRange = new FCKDomRange( this.Window ) ; oRange.MoveToSelection() ; // Kludge for #247 if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) ) { this._FixIESelectAllBug( oRange ) ; return true ; } var isCollapsed = oRange.CheckIsCollapsed() ; if ( !isCollapsed ) { // Bug #327, Backspace with an img selection would activate the default action in IE. // Let's override that with our logic here. if ( FCKBrowserInfo.IsIE && this.Window.document.selection.type.toLowerCase() == "control" ) { var controls = this.Window.document.selection.createRange() ; for ( var i = controls.length - 1 ; i >= 0 ; i-- ) { var el = controls.item( i ) ; el.parentNode.removeChild( el ) ; } return true ; } return false ; } // On IE, it is better for us handle the deletion if the caret is preceeded // by a <br> (#1383). if ( FCKBrowserInfo.IsIE ) { var previousElement = FCKDomTools.GetPreviousSourceElement( oRange.StartNode, true ) ; if ( previousElement && previousElement.nodeName.toLowerCase() == 'br' ) { // Create a range that starts after the <br> and ends at the // current range position. var testRange = oRange.Clone() ; testRange.SetStart( previousElement, 4 ) ; // If that range is empty, we can proceed cleaning that <br> manually. if ( testRange.CheckIsEmpty() ) { previousElement.parentNode.removeChild( previousElement ) ; return true ; } } } var oStartBlock = oRange.StartBlock ; var oEndBlock = oRange.EndBlock ; // The selection boundaries must be in the same "block limit" element if ( oRange.StartBlockLimit == oRange.EndBlockLimit && oStartBlock && oEndBlock ) { if ( !isCollapsed ) { var bEndOfBlock = oRange.CheckEndOfBlock() ; oRange.DeleteContents() ; if ( oStartBlock != oEndBlock ) { oRange.SetStart(oEndBlock,1) ; oRange.SetEnd(oEndBlock,1) ; // if ( bEndOfBlock ) // oEndBlock.parentNode.removeChild( oEndBlock ) ; } oRange.Select() ; bCustom = ( oStartBlock == oEndBlock ) ; } if ( oRange.CheckStartOfBlock() ) { var oCurrentBlock = oRange.StartBlock ; var ePrevious = FCKDomTools.GetPreviousSourceElement( oCurrentBlock, true, [ 'BODY', oRange.StartBlockLimit.nodeName ], ['UL','OL'] ) ; bCustom = this._ExecuteBackspace( oRange, ePrevious, oCurrentBlock ) ; } else if ( FCKBrowserInfo.IsGeckoLike ) { // Firefox and Opera (#1095) loose the selection when executing // CheckStartOfBlock, so we must reselect. oRange.Select() ; } } oRange.Release() ; return bCustom ; } FCKEnterKey.prototype.DoCtrlBackspace = function() { FCKUndo.SaveUndoStep() ; var oRange = new FCKDomRange( this.Window ) ; oRange.MoveToSelection() ; if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) ) { this._FixIESelectAllBug( oRange ) ; return true ; } return false ; } FCKEnterKey.prototype._ExecuteBackspace = function( range, previous, currentBlock ) { var bCustom = false ; // We could be in a nested LI. if ( !previous && currentBlock && currentBlock.nodeName.IEquals( 'LI' ) && currentBlock.parentNode.parentNode.nodeName.IEquals( 'LI' ) ) { this._OutdentWithSelection( currentBlock, range ) ; return true ; } if ( previous && previous.nodeName.IEquals( 'LI' ) ) { var oNestedList = FCKDomTools.GetLastChild( previous, ['UL','OL'] ) ; while ( oNestedList ) { previous = FCKDomTools.GetLastChild( oNestedList, 'LI' ) ; oNestedList = FCKDomTools.GetLastChild( previous, ['UL','OL'] ) ; } } if ( previous && currentBlock ) { // If we are in a LI, and the previous block is not an LI, we must outdent it. if ( currentBlock.nodeName.IEquals( 'LI' ) && !previous.nodeName.IEquals( 'LI' ) ) { this._OutdentWithSelection( currentBlock, range ) ; return true ; } // Take a reference to the parent for post processing cleanup. var oCurrentParent = currentBlock.parentNode ; var sPreviousName = previous.nodeName.toLowerCase() ; if ( FCKListsLib.EmptyElements[ sPreviousName ] != null || sPreviousName == 'table' ) { FCKDomTools.RemoveNode( previous ) ; bCustom = true ; } else { // Remove the current block. FCKDomTools.RemoveNode( currentBlock ) ; // Remove any empty tag left by the block removal. while ( oCurrentParent.innerHTML.Trim().length == 0 ) { var oParent = oCurrentParent.parentNode ; oParent.removeChild( oCurrentParent ) ; oCurrentParent = oParent ; } // Cleanup the previous and the current elements. FCKDomTools.LTrimNode( currentBlock ) ; FCKDomTools.RTrimNode( previous ) ; // Append a space to the previous. // Maybe it is not always desirable... // previous.appendChild( this.Window.document.createTextNode( ' ' ) ) ; // Set the range to the end of the previous element and bookmark it. range.SetStart( previous, 2, true ) ; range.Collapse( true ) ; var oBookmark = range.CreateBookmark( true ) ; // Move the contents of the block to the previous element and delete it. // But for some block types (e.g. table), moving the children to the previous block makes no sense. // So a check is needed. (See #1081) if ( ! currentBlock.tagName.IEquals( [ 'TABLE' ] ) ) FCKDomTools.MoveChildren( currentBlock, previous ) ; // Place the selection at the bookmark. range.SelectBookmark( oBookmark ) ; bCustom = true ; } } return bCustom ; } /* * Executes the <Delete> key behavior. */ FCKEnterKey.prototype.DoDelete = function() { // Save an undo snapshot before doing anything // This is to conform with the behavior seen in MS Word FCKUndo.SaveUndoStep() ; // The <Delete> has the same effect as the <Backspace>, so we have the same // results if we just move to the next block and apply the same <Backspace> logic. var bCustom = false ; // Get the current selection. var oRange = new FCKDomRange( this.Window ) ; oRange.MoveToSelection() ; // Kludge for #247 if ( FCKBrowserInfo.IsIE && this._CheckIsAllContentsIncluded( oRange, this.Window.document.body ) ) { this._FixIESelectAllBug( oRange ) ; return true ; } // There is just one special case for collapsed selections at the end of a block. if ( oRange.CheckIsCollapsed() && oRange.CheckEndOfBlock( FCKBrowserInfo.IsGeckoLike ) ) { var oCurrentBlock = oRange.StartBlock ; var eCurrentCell = FCKTools.GetElementAscensor( oCurrentBlock, 'td' ); var eNext = FCKDomTools.GetNextSourceElement( oCurrentBlock, true, [ oRange.StartBlockLimit.nodeName ], ['UL','OL','TR'], true ) ; // Bug #1323 : if we're in a table cell, and the next node belongs to a different cell, then don't // delete anything. if ( eCurrentCell ) { var eNextCell = FCKTools.GetElementAscensor( eNext, 'td' ); if ( eNextCell != eCurrentCell ) return true ; } bCustom = this._ExecuteBackspace( oRange, oCurrentBlock, eNext ) ; } oRange.Release() ; return bCustom ; } /* * Executes the <Tab> key behavior. */ FCKEnterKey.prototype.DoTab = function() { var oRange = new FCKDomRange( this.Window ); oRange.MoveToSelection() ; // If the user pressed <tab> inside a table, we should give him the default behavior ( moving between cells ) // instead of giving him more non-breaking spaces. (Bug #973) var node = oRange._Range.startContainer ; while ( node ) { if ( node.nodeType == 1 ) { var tagName = node.tagName.toLowerCase() ; if ( tagName == "tr" || tagName == "td" || tagName == "th" || tagName == "tbody" || tagName == "table" ) return false ; else break ; } node = node.parentNode ; } if ( this.TabText ) { oRange.DeleteContents() ; oRange.InsertNode( this.Window.document.createTextNode( this.TabText ) ) ; oRange.Collapse( false ) ; oRange.Select() ; } return true ; } FCKEnterKey.prototype._ExecuteEnterBlock = function( blockTag, range ) { // Get the current selection. var oRange = range || new FCKDomRange( this.Window ) ; var oSplitInfo = oRange.SplitBlock( blockTag ) ; if ( oSplitInfo ) { // Get the current blocks. var ePreviousBlock = oSplitInfo.PreviousBlock ; var eNextBlock = oSplitInfo.NextBlock ; var bIsStartOfBlock = oSplitInfo.WasStartOfBlock ; var bIsEndOfBlock = oSplitInfo.WasEndOfBlock ; // If there is one block under a list item, modify the split so that the list item gets split as well. (Bug #1647) if ( eNextBlock ) { if ( eNextBlock.parentNode.nodeName.IEquals( 'li' ) ) { FCKDomTools.BreakParent( eNextBlock, eNextBlock.parentNode ) ; FCKDomTools.MoveNode( eNextBlock, eNextBlock.nextSibling, true ) ; } } else if ( ePreviousBlock && ePreviousBlock.parentNode.nodeName.IEquals( 'li' ) ) { FCKDomTools.BreakParent( ePreviousBlock, ePreviousBlock.parentNode ) ; oRange.MoveToElementEditStart( ePreviousBlock.nextSibling ); FCKDomTools.MoveNode( ePreviousBlock, ePreviousBlock.previousSibling ) ; } // If we have both the previous and next blocks, it means that the // boundaries were on separated blocks, or none of them where on the // block limits (start/end). if ( !bIsStartOfBlock && !bIsEndOfBlock ) { // If the next block is an <li> with another list tree as the first child // We'll need to append a placeholder or the list item wouldn't be editable. (Bug #1420) if ( eNextBlock.nodeName.IEquals( 'li' ) && eNextBlock.firstChild && eNextBlock.firstChild.nodeName.IEquals( ['ul', 'ol'] ) ) eNextBlock.insertBefore( FCKTools.GetElementDocument( eNextBlock ).createTextNode( '\xa0' ), eNextBlock.firstChild ) ; // Move the selection to the end block. if ( eNextBlock ) oRange.MoveToElementEditStart( eNextBlock ) ; } else { if ( bIsStartOfBlock && bIsEndOfBlock && ePreviousBlock.tagName.toUpperCase() == 'LI' ) { oRange.MoveToElementStart( ePreviousBlock ) ; this._OutdentWithSelection( ePreviousBlock, oRange ) ; oRange.Release() ; return true ; } var eNewBlock ; if ( ePreviousBlock ) { var sPreviousBlockTag = ePreviousBlock.tagName.toUpperCase() ; // If is a header tag, or we are in a Shift+Enter (#77), // create a new block element (later in the code). if ( !this._HasShift && !(/^H[1-6]$/).test( sPreviousBlockTag ) ) { // Otherwise, duplicate the previous block. eNewBlock = FCKDomTools.CloneElement( ePreviousBlock ) ; } } else if ( eNextBlock ) eNewBlock = FCKDomTools.CloneElement( eNextBlock ) ; if ( !eNewBlock ) eNewBlock = this.Window.document.createElement( blockTag ) ; // Recreate the inline elements tree, which was available // before the hitting enter, so the same styles will be // available in the new block. var elementPath = oSplitInfo.ElementPath ; if ( elementPath ) { for ( var i = 0, len = elementPath.Elements.length ; i < len ; i++ ) { var element = elementPath.Elements[i] ; if ( element == elementPath.Block || element == elementPath.BlockLimit ) break ; if ( FCKListsLib.InlineChildReqElements[ element.nodeName.toLowerCase() ] ) { element = FCKDomTools.CloneElement( element ) ; FCKDomTools.MoveChildren( eNewBlock, element ) ; eNewBlock.appendChild( element ) ; } } } if ( FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( eNewBlock ) ; oRange.InsertNode( eNewBlock ) ; // This is tricky, but to make the new block visible correctly // we must select it. if ( FCKBrowserInfo.IsIE ) { // Move the selection to the new block. oRange.MoveToElementEditStart( eNewBlock ) ; oRange.Select() ; } // Move the selection to the new block. oRange.MoveToElementEditStart( bIsStartOfBlock && !bIsEndOfBlock ? eNextBlock : eNewBlock ) ; } if ( FCKBrowserInfo.IsGeckoLike ) { if ( eNextBlock ) { // If we have split the block, adds a temporary span at the // range position and scroll relatively to it. var tmpNode = this.Window.document.createElement( 'span' ) ; // We need some content for Safari. tmpNode.innerHTML = '&nbsp;'; oRange.InsertNode( tmpNode ) ; FCKDomTools.ScrollIntoView( tmpNode, false ) ; oRange.DeleteContents() ; } else { // We may use the above scroll logic for the new block case // too, but it gives some weird result with Opera. FCKDomTools.ScrollIntoView( eNextBlock || eNewBlock, false ) ; } } oRange.Select() ; } // Release the resources used by the range. oRange.Release() ; return true ; } FCKEnterKey.prototype._ExecuteEnterBr = function( blockTag ) { // Get the current selection. var oRange = new FCKDomRange( this.Window ) ; oRange.MoveToSelection() ; // The selection boundaries must be in the same "block limit" element. if ( oRange.StartBlockLimit == oRange.EndBlockLimit ) { oRange.DeleteContents() ; // Get the new selection (it is collapsed at this point). oRange.MoveToSelection() ; var bIsStartOfBlock = oRange.CheckStartOfBlock() ; var bIsEndOfBlock = oRange.CheckEndOfBlock() ; var sStartBlockTag = oRange.StartBlock ? oRange.StartBlock.tagName.toUpperCase() : '' ; var bHasShift = this._HasShift ; var bIsPre = false ; if ( !bHasShift && sStartBlockTag == 'LI' ) return this._ExecuteEnterBlock( null, oRange ) ; // If we are at the end of a header block. if ( !bHasShift && bIsEndOfBlock && (/^H[1-6]$/).test( sStartBlockTag ) ) { // Insert a BR after the current paragraph. FCKDomTools.InsertAfterNode( oRange.StartBlock, this.Window.document.createElement( 'br' ) ) ; // The space is required by Gecko only to make the cursor blink. if ( FCKBrowserInfo.IsGecko ) FCKDomTools.InsertAfterNode( oRange.StartBlock, this.Window.document.createTextNode( '' ) ) ; // IE and Gecko have different behaviors regarding the position. oRange.SetStart( oRange.StartBlock.nextSibling, FCKBrowserInfo.IsIE ? 3 : 1 ) ; } else { var eLineBreak ; bIsPre = sStartBlockTag.IEquals( 'pre' ) ; if ( bIsPre ) eLineBreak = this.Window.document.createTextNode( FCKBrowserInfo.IsIE ? '\r' : '\n' ) ; else eLineBreak = this.Window.document.createElement( 'br' ) ; oRange.InsertNode( eLineBreak ) ; // The space is required by Gecko only to make the cursor blink. if ( FCKBrowserInfo.IsGecko ) FCKDomTools.InsertAfterNode( eLineBreak, this.Window.document.createTextNode( '' ) ) ; // If we are at the end of a block, we must be sure the bogus node is available in that block. if ( bIsEndOfBlock && FCKBrowserInfo.IsGeckoLike ) FCKTools.AppendBogusBr( eLineBreak.parentNode ) ; if ( FCKBrowserInfo.IsIE ) oRange.SetStart( eLineBreak, 4 ) ; else oRange.SetStart( eLineBreak.nextSibling, 1 ) ; if ( ! FCKBrowserInfo.IsIE ) { var dummy = null ; if ( FCKBrowserInfo.IsOpera ) dummy = this.Window.document.createElement( 'span' ) ; else dummy = this.Window.document.createElement( 'br' ) ; eLineBreak.parentNode.insertBefore( dummy, eLineBreak.nextSibling ) ; FCKDomTools.ScrollIntoView( dummy, false ) ; dummy.parentNode.removeChild( dummy ) ; } } // This collapse guarantees the cursor will be blinking. oRange.Collapse( true ) ; oRange.Select( bIsPre ) ; } // Release the resources used by the range. oRange.Release() ; return true ; } // Outdents a LI, maintaining the selection defined on a range. FCKEnterKey.prototype._OutdentWithSelection = function( li, range ) { var oBookmark = range.CreateBookmark() ; FCKListHandler.OutdentListItem( li ) ; range.MoveToBookmark( oBookmark ) ; range.Select() ; } // Is all the contents under a node included by a range? FCKEnterKey.prototype._CheckIsAllContentsIncluded = function( range, node ) { var startOk = false ; var endOk = false ; /* FCKDebug.Output( 'sc='+range.StartContainer.nodeName+ ',so='+range._Range.startOffset+ ',ec='+range.EndContainer.nodeName+ ',eo='+range._Range.endOffset ) ; */ if ( range.StartContainer == node || range.StartContainer == node.firstChild ) startOk = ( range._Range.startOffset == 0 ) ; if ( range.EndContainer == node || range.EndContainer == node.lastChild ) { var nodeLength = range.EndContainer.nodeType == 3 ? range.EndContainer.length : range.EndContainer.childNodes.length ; endOk = ( range._Range.endOffset == nodeLength ) ; } return startOk && endOk ; } // Kludge for #247 FCKEnterKey.prototype._FixIESelectAllBug = function( range ) { var doc = this.Window.document ; doc.body.innerHTML = '' ; var editBlock ; if ( FCKConfig.EnterMode.IEquals( ['div', 'p'] ) ) { editBlock = doc.createElement( FCKConfig.EnterMode ) ; doc.body.appendChild( editBlock ) ; } else editBlock = doc.body ; range.MoveToNodeContents( editBlock ) ; range.Collapse( true ) ; range.Select() ; range.Release() ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fckenterkey.js
JavaScript
asf20
21,116
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * FCKToolbarButton Class: represents a button in the toolbar. */ var FCKToolbarButton = function( commandName, label, tooltip, style, sourceView, contextSensitive, icon ) { this.CommandName = commandName ; this.Label = label ; this.Tooltip = tooltip ; this.Style = style ; this.SourceView = sourceView ? true : false ; this.ContextSensitive = contextSensitive ? true : false ; if ( icon == null ) this.IconPath = FCKConfig.SkinPath + 'toolbar/' + commandName.toLowerCase() + '.gif' ; else if ( typeof( icon ) == 'number' ) this.IconPath = [ FCKConfig.SkinPath + 'fck_strip.gif', 16, icon ] ; else this.IconPath = icon ; } FCKToolbarButton.prototype.Create = function( targetElement ) { this._UIButton = new FCKToolbarButtonUI( this.CommandName, this.Label, this.Tooltip, this.IconPath, this.Style ) ; this._UIButton.OnClick = this.Click ; this._UIButton._ToolbarButton = this ; this._UIButton.Create( targetElement ) ; } FCKToolbarButton.prototype.RefreshState = function() { var uiButton = this._UIButton ; if ( !uiButton ) return ; // Gets the actual state. var eState = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).GetState() ; // If there are no state changes than do nothing and return. if ( eState == uiButton.State ) return ; // Sets the actual state. uiButton.ChangeState( eState ) ; } FCKToolbarButton.prototype.Click = function() { var oToolbarButton = this._ToolbarButton || this ; FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( oToolbarButton.CommandName ).Execute() ; } FCKToolbarButton.prototype.Enable = function() { this.RefreshState() ; } FCKToolbarButton.prototype.Disable = function() { // Sets the actual state. this._UIButton.ChangeState( FCK_TRISTATE_DISABLED ) ; }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fcktoolbarbutton.js
JavaScript
asf20
2,467
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * FCKToolbarButtonUI Class: interface representation of a toolbar button. */ var FCKToolbarButtonUI = function( name, label, tooltip, iconPathOrStripInfoArray, style, state ) { this.Name = name ; this.Label = label || name ; this.Tooltip = tooltip || this.Label ; this.Style = style || FCK_TOOLBARITEM_ONLYICON ; this.State = state || FCK_TRISTATE_OFF ; this.Icon = new FCKIcon( iconPathOrStripInfoArray ) ; if ( FCK.IECleanup ) FCK.IECleanup.AddItem( this, FCKToolbarButtonUI_Cleanup ) ; } FCKToolbarButtonUI.prototype._CreatePaddingElement = function( document ) { var oImg = document.createElement( 'IMG' ) ; oImg.className = 'TB_Button_Padding' ; oImg.src = FCK_SPACER_PATH ; return oImg ; } FCKToolbarButtonUI.prototype.Create = function( parentElement ) { var oDoc = FCKTools.GetElementDocument( parentElement ) ; // Create the Main Element. var oMainElement = this.MainElement = oDoc.createElement( 'DIV' ) ; oMainElement.title = this.Tooltip ; // The following will prevent the button from catching the focus. if ( FCKBrowserInfo.IsGecko ) oMainElement.onmousedown = FCKTools.CancelEvent ; FCKTools.AddEventListenerEx( oMainElement, 'mouseover', FCKToolbarButtonUI_OnMouseOver, this ) ; FCKTools.AddEventListenerEx( oMainElement, 'mouseout', FCKToolbarButtonUI_OnMouseOut, this ) ; FCKTools.AddEventListenerEx( oMainElement, 'click', FCKToolbarButtonUI_OnClick, this ) ; this.ChangeState( this.State, true ) ; if ( this.Style == FCK_TOOLBARITEM_ONLYICON && !this.ShowArrow ) { // <td><div class="TB_Button_On" title="Smiley">{Image}</div></td> oMainElement.appendChild( this.Icon.CreateIconElement( oDoc ) ) ; } else { // <td><div class="TB_Button_On" title="Smiley"><table cellpadding="0" cellspacing="0"><tr><td>{Image}</td><td nowrap>Toolbar Button</td><td><img class="TB_Button_Padding"></td></tr></table></div></td> // <td><div class="TB_Button_On" title="Smiley"><table cellpadding="0" cellspacing="0"><tr><td><img class="TB_Button_Padding"></td><td nowrap>Toolbar Button</td><td><img class="TB_Button_Padding"></td></tr></table></div></td> var oTable = oMainElement.appendChild( oDoc.createElement( 'TABLE' ) ) ; oTable.cellPadding = 0 ; oTable.cellSpacing = 0 ; var oRow = oTable.insertRow(-1) ; // The Image cell (icon or padding). var oCell = oRow.insertCell(-1) ; if ( this.Style == FCK_TOOLBARITEM_ONLYICON || this.Style == FCK_TOOLBARITEM_ICONTEXT ) oCell.appendChild( this.Icon.CreateIconElement( oDoc ) ) ; else oCell.appendChild( this._CreatePaddingElement( oDoc ) ) ; if ( this.Style == FCK_TOOLBARITEM_ONLYTEXT || this.Style == FCK_TOOLBARITEM_ICONTEXT ) { // The Text cell. oCell = oRow.insertCell(-1) ; oCell.className = 'TB_Button_Text' ; oCell.noWrap = true ; oCell.appendChild( oDoc.createTextNode( this.Label ) ) ; } if ( this.ShowArrow ) { if ( this.Style != FCK_TOOLBARITEM_ONLYICON ) { // A padding cell. oRow.insertCell(-1).appendChild( this._CreatePaddingElement( oDoc ) ) ; } oCell = oRow.insertCell(-1) ; var eImg = oCell.appendChild( oDoc.createElement( 'IMG' ) ) ; eImg.src = FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif' ; eImg.width = 5 ; eImg.height = 3 ; } // The last padding cell. oCell = oRow.insertCell(-1) ; oCell.appendChild( this._CreatePaddingElement( oDoc ) ) ; } parentElement.appendChild( oMainElement ) ; } FCKToolbarButtonUI.prototype.ChangeState = function( newState, force ) { if ( !force && this.State == newState ) return ; var e = this.MainElement ; // In IE it can happen when the page is reloaded that MainElement is null, so exit here if ( !e ) return ; switch ( parseInt( newState, 10 ) ) { case FCK_TRISTATE_OFF : e.className = 'TB_Button_Off' ; break ; case FCK_TRISTATE_ON : e.className = 'TB_Button_On' ; break ; case FCK_TRISTATE_DISABLED : e.className = 'TB_Button_Disabled' ; break ; } this.State = newState ; } function FCKToolbarButtonUI_OnMouseOver( ev, button ) { if ( button.State == FCK_TRISTATE_OFF ) this.className = 'TB_Button_Off_Over' ; else if ( button.State == FCK_TRISTATE_ON ) this.className = 'TB_Button_On_Over' ; } function FCKToolbarButtonUI_OnMouseOut( ev, button ) { if ( button.State == FCK_TRISTATE_OFF ) this.className = 'TB_Button_Off' ; else if ( button.State == FCK_TRISTATE_ON ) this.className = 'TB_Button_On' ; } function FCKToolbarButtonUI_OnClick( ev, button ) { if ( button.OnClick && button.State != FCK_TRISTATE_DISABLED ) button.OnClick( button ) ; } function FCKToolbarButtonUI_Cleanup() { // This one should not cause memory leak, but just for safety, let's clean // it up. this.MainElement = null ; } /* Sample outputs: This is the base structure. The variation is the image that is marked as {Image}: <td><div class="TB_Button_On" title="Smiley">{Image}</div></td> <td><div class="TB_Button_On" title="Smiley"><table cellpadding="0" cellspacing="0"><tr><td>{Image}</td><td nowrap>Toolbar Button</td><td><img class="TB_Button_Padding"></td></tr></table></div></td> <td><div class="TB_Button_On" title="Smiley"><table cellpadding="0" cellspacing="0"><tr><td><img class="TB_Button_Padding"></td><td nowrap>Toolbar Button</td><td><img class="TB_Button_Padding"></td></tr></table></div></td> These are samples of possible {Image} values: Strip - IE version: <div class="TB_Button_Image"><img src="strip.gif" style="top:-16px"></div> Strip : Firefox, Safari and Opera version <img class="TB_Button_Image" style="background-position: 0px -16px;background-image: url(strip.gif);"> No-Strip : Browser independent: <img class="TB_Button_Image" src="smiley.gif"> */
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js
JavaScript
asf20
6,537
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * FCKSpecialCombo Class: represents a special combo. */ var FCKSpecialCombo = function( caption, fieldWidth, panelWidth, panelMaxHeight, parentWindow ) { // Default properties values. this.FieldWidth = fieldWidth || 100 ; this.PanelWidth = panelWidth || 150 ; this.PanelMaxHeight = panelMaxHeight || 150 ; this.Label = '&nbsp;' ; this.Caption = caption ; this.Tooltip = caption ; this.Style = FCK_TOOLBARITEM_ICONTEXT ; this.Enabled = true ; this.Items = new Object() ; this._Panel = new FCKPanel( parentWindow || window ) ; this._Panel.AppendStyleSheet( FCKConfig.SkinEditorCSS ) ; this._PanelBox = this._Panel.MainNode.appendChild( this._Panel.Document.createElement( 'DIV' ) ) ; this._PanelBox.className = 'SC_Panel' ; this._PanelBox.style.width = this.PanelWidth + 'px' ; this._PanelBox.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ; this._ItemsHolderEl = this._PanelBox.getElementsByTagName('TD')[0] ; if ( FCK.IECleanup ) FCK.IECleanup.AddItem( this, FCKSpecialCombo_Cleanup ) ; // this._Panel.StyleSheet = FCKConfig.SkinPath + 'fck_contextmenu.css' ; // this._Panel.Create() ; // this._Panel.PanelDiv.className += ' SC_Panel' ; // this._Panel.PanelDiv.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ; // this._ItemsHolderEl = this._Panel.PanelDiv.getElementsByTagName('TD')[0] ; } function FCKSpecialCombo_ItemOnMouseOver() { this.className += ' SC_ItemOver' ; } function FCKSpecialCombo_ItemOnMouseOut() { this.className = this.originalClass ; } function FCKSpecialCombo_ItemOnClick( ev, specialCombo, itemId ) { this.className = this.originalClass ; specialCombo._Panel.Hide() ; specialCombo.SetLabel( this.FCKItemLabel ) ; if ( typeof( specialCombo.OnSelect ) == 'function' ) specialCombo.OnSelect( itemId, this ) ; } FCKSpecialCombo.prototype.ClearItems = function () { if ( this.Items ) this.Items = {} ; var itemsholder = this._ItemsHolderEl ; while ( itemsholder.firstChild ) itemsholder.removeChild( itemsholder.firstChild ) ; } FCKSpecialCombo.prototype.AddItem = function( id, html, label, bgColor ) { // <div class="SC_Item" onmouseover="this.className='SC_Item SC_ItemOver';" onmouseout="this.className='SC_Item';"><b>Bold 1</b></div> var oDiv = this._ItemsHolderEl.appendChild( this._Panel.Document.createElement( 'DIV' ) ) ; oDiv.className = oDiv.originalClass = 'SC_Item' ; oDiv.innerHTML = html ; oDiv.FCKItemLabel = label || id ; oDiv.Selected = false ; // In IE, the width must be set so the borders are shown correctly when the content overflows. if ( FCKBrowserInfo.IsIE ) oDiv.style.width = '100%' ; if ( bgColor ) oDiv.style.backgroundColor = bgColor ; FCKTools.AddEventListenerEx( oDiv, 'mouseover', FCKSpecialCombo_ItemOnMouseOver ) ; FCKTools.AddEventListenerEx( oDiv, 'mouseout', FCKSpecialCombo_ItemOnMouseOut ) ; FCKTools.AddEventListenerEx( oDiv, 'click', FCKSpecialCombo_ItemOnClick, [ this, id ] ) ; this.Items[ id.toString().toLowerCase() ] = oDiv ; return oDiv ; } FCKSpecialCombo.prototype.SelectItem = function( item ) { if ( typeof item == 'string' ) item = this.Items[ item.toString().toLowerCase() ] ; if ( item ) { item.className = item.originalClass = 'SC_ItemSelected' ; item.Selected = true ; } } FCKSpecialCombo.prototype.SelectItemByLabel = function( itemLabel, setLabel ) { for ( var id in this.Items ) { var oDiv = this.Items[id] ; if ( oDiv.FCKItemLabel == itemLabel ) { oDiv.className = oDiv.originalClass = 'SC_ItemSelected' ; oDiv.Selected = true ; if ( setLabel ) this.SetLabel( itemLabel ) ; } } } FCKSpecialCombo.prototype.DeselectAll = function( clearLabel ) { for ( var i in this.Items ) { if ( !this.Items[i] ) continue; this.Items[i].className = this.Items[i].originalClass = 'SC_Item' ; this.Items[i].Selected = false ; } if ( clearLabel ) this.SetLabel( '' ) ; } FCKSpecialCombo.prototype.SetLabelById = function( id ) { id = id ? id.toString().toLowerCase() : '' ; var oDiv = this.Items[ id ] ; this.SetLabel( oDiv ? oDiv.FCKItemLabel : '' ) ; } FCKSpecialCombo.prototype.SetLabel = function( text ) { text = ( !text || text.length == 0 ) ? '&nbsp;' : text ; if ( text == this.Label ) return ; this.Label = text ; var labelEl = this._LabelEl ; if ( labelEl ) { labelEl.innerHTML = text ; // It may happen that the label is some HTML, including tags. This // would be a problem because when the user click on those tags, the // combo will get the selection from the editing area. So we must // disable any kind of selection here. FCKTools.DisableSelection( labelEl ) ; } } FCKSpecialCombo.prototype.SetEnabled = function( isEnabled ) { this.Enabled = isEnabled ; // In IE it can happen when the page is reloaded that _OuterTable is null, so check its existence if ( this._OuterTable ) this._OuterTable.className = isEnabled ? '' : 'SC_FieldDisabled' ; } FCKSpecialCombo.prototype.Create = function( targetElement ) { var oDoc = FCKTools.GetElementDocument( targetElement ) ; var eOuterTable = this._OuterTable = targetElement.appendChild( oDoc.createElement( 'TABLE' ) ) ; eOuterTable.cellPadding = 0 ; eOuterTable.cellSpacing = 0 ; eOuterTable.insertRow(-1) ; var sClass ; var bShowLabel ; switch ( this.Style ) { case FCK_TOOLBARITEM_ONLYICON : sClass = 'TB_ButtonType_Icon' ; bShowLabel = false; break ; case FCK_TOOLBARITEM_ONLYTEXT : sClass = 'TB_ButtonType_Text' ; bShowLabel = false; break ; case FCK_TOOLBARITEM_ICONTEXT : bShowLabel = true; break ; } if ( this.Caption && this.Caption.length > 0 && bShowLabel ) { var oCaptionCell = eOuterTable.rows[0].insertCell(-1) ; oCaptionCell.innerHTML = this.Caption ; oCaptionCell.className = 'SC_FieldCaption' ; } // Create the main DIV element. var oField = FCKTools.AppendElement( eOuterTable.rows[0].insertCell(-1), 'div' ) ; if ( bShowLabel ) { oField.className = 'SC_Field' ; oField.style.width = this.FieldWidth + 'px' ; oField.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldLabel"><label>&nbsp;</label></td><td class="SC_FieldButton">&nbsp;</td></tr></tbody></table>' ; this._LabelEl = oField.getElementsByTagName('label')[0] ; // Memory Leak this._LabelEl.innerHTML = this.Label ; } else { oField.className = 'TB_Button_Off' ; //oField.innerHTML = '<span className="SC_FieldCaption">' + this.Caption + '<table cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldButton" style="border-left: none;">&nbsp;</td></tr></tbody></table>' ; //oField.innerHTML = '<table cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;"><tbody><tr><td class="SC_FieldButton" style="border-left: none;">&nbsp;</td></tr></tbody></table>' ; // Gets the correct CSS class to use for the specified style (param). oField.innerHTML = '<table title="' + this.Tooltip + '" class="' + sClass + '" cellspacing="0" cellpadding="0" border="0">' + '<tr>' + //'<td class="TB_Icon"><img src="' + FCKConfig.SkinPath + 'toolbar/' + this.Command.Name.toLowerCase() + '.gif" width="21" height="21"></td>' + '<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' + '<td class="TB_Text">' + this.Caption + '</td>' + '<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' + '<td class="TB_ButtonArrow"><img src="' + FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif" width="5" height="3"></td>' + '<td><img class="TB_Button_Padding" src="' + FCK_SPACER_PATH + '" /></td>' + '</tr>' + '</table>' ; } // Events Handlers FCKTools.AddEventListenerEx( oField, 'mouseover', FCKSpecialCombo_OnMouseOver, this ) ; FCKTools.AddEventListenerEx( oField, 'mouseout', FCKSpecialCombo_OnMouseOut, this ) ; FCKTools.AddEventListenerEx( oField, 'click', FCKSpecialCombo_OnClick, this ) ; FCKTools.DisableSelection( this._Panel.Document.body ) ; } function FCKSpecialCombo_Cleanup() { this._LabelEl = null ; this._OuterTable = null ; this._ItemsHolderEl = null ; this._PanelBox = null ; if ( this.Items ) { for ( var key in this.Items ) this.Items[key] = null ; } } function FCKSpecialCombo_OnMouseOver( ev, specialCombo ) { if ( specialCombo.Enabled ) { switch ( specialCombo.Style ) { case FCK_TOOLBARITEM_ONLYICON : this.className = 'TB_Button_On_Over'; break ; case FCK_TOOLBARITEM_ONLYTEXT : this.className = 'TB_Button_On_Over'; break ; case FCK_TOOLBARITEM_ICONTEXT : this.className = 'SC_Field SC_FieldOver' ; break ; } } } function FCKSpecialCombo_OnMouseOut( ev, specialCombo ) { switch ( specialCombo.Style ) { case FCK_TOOLBARITEM_ONLYICON : this.className = 'TB_Button_Off'; break ; case FCK_TOOLBARITEM_ONLYTEXT : this.className = 'TB_Button_Off'; break ; case FCK_TOOLBARITEM_ICONTEXT : this.className='SC_Field' ; break ; } } function FCKSpecialCombo_OnClick( e, specialCombo ) { // For Mozilla we must stop the event propagation to avoid it hiding // the panel because of a click outside of it. // if ( e ) // { // e.stopPropagation() ; // FCKPanelEventHandlers.OnDocumentClick( e ) ; // } if ( specialCombo.Enabled ) { var oPanel = specialCombo._Panel ; var oPanelBox = specialCombo._PanelBox ; var oItemsHolder = specialCombo._ItemsHolderEl ; var iMaxHeight = specialCombo.PanelMaxHeight ; if ( specialCombo.OnBeforeClick ) specialCombo.OnBeforeClick( specialCombo ) ; // This is a tricky thing. We must call the "Load" function, otherwise // it will not be possible to retrieve "oItemsHolder.offsetHeight" (IE only). if ( FCKBrowserInfo.IsIE ) oPanel.Preload( 0, this.offsetHeight, this ) ; if ( oItemsHolder.offsetHeight > iMaxHeight ) // { oPanelBox.style.height = iMaxHeight + 'px' ; // if ( FCKBrowserInfo.IsGecko ) // oPanelBox.style.overflow = '-moz-scrollbars-vertical' ; // } else oPanelBox.style.height = '' ; // oPanel.PanelDiv.style.width = specialCombo.PanelWidth + 'px' ; oPanel.Show( 0, this.offsetHeight, this ) ; } // return false ; } /* Sample Combo Field HTML output: <div class="SC_Field" style="width: 80px;"> <table width="100%" cellpadding="0" cellspacing="0" style="table-layout: fixed;"> <tbody> <tr> <td class="SC_FieldLabel"><label>&nbsp;</label></td> <td class="SC_FieldButton">&nbsp;</td> </tr> </tbody> </table> </div> */
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fckspecialcombo.js
JavaScript
asf20
11,632
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2009 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * FCKToolbarPanelButton Class: Handles the Fonts combo selector. */ var FCKToolbarFontFormatCombo = function( tooltip, style ) { if ( tooltip === false ) return ; this.CommandName = 'FontFormat' ; this.Label = this.GetLabel() ; this.Tooltip = tooltip ? tooltip : this.Label ; this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ; this.NormalLabel = 'Normal' ; this.PanelWidth = 190 ; this.DefaultLabel = FCKConfig.DefaultFontFormatLabel || '' ; } // Inherit from FCKToolbarSpecialCombo. FCKToolbarFontFormatCombo.prototype = new FCKToolbarStyleCombo( false ) ; FCKToolbarFontFormatCombo.prototype.GetLabel = function() { return FCKLang.FontFormat ; } FCKToolbarFontFormatCombo.prototype.GetStyles = function() { var styles = {} ; // Get the format names from the language file. var aNames = FCKLang['FontFormats'].split(';') ; var oNames = { p : aNames[0], pre : aNames[1], address : aNames[2], h1 : aNames[3], h2 : aNames[4], h3 : aNames[5], h4 : aNames[6], h5 : aNames[7], h6 : aNames[8], div : aNames[9] || ( aNames[0] + ' (DIV)') } ; // Get the available formats from the configuration file. var elements = FCKConfig.FontFormats.split(';') ; for ( var i = 0 ; i < elements.length ; i++ ) { var elementName = elements[ i ] ; var style = FCKStyles.GetStyle( '_FCK_' + elementName ) ; if ( style ) { style.Label = oNames[ elementName ] ; styles[ '_FCK_' + elementName ] = style ; } else alert( "The FCKConfig.CoreStyles['" + elementName + "'] setting was not found. Please check the fckconfig.js file" ) ; } return styles ; } FCKToolbarFontFormatCombo.prototype.RefreshActiveItems = function( targetSpecialCombo ) { var startElement = FCK.ToolbarSet.CurrentInstance.Selection.GetBoundaryParentElement( true ) ; if ( startElement ) { var path = new FCKElementPath( startElement ) ; var blockElement = path.Block ; if ( blockElement ) { for ( var i in targetSpecialCombo.Items ) { var item = targetSpecialCombo.Items[i] ; var style = item.Style ; if ( style.CheckElementRemovable( blockElement ) ) { targetSpecialCombo.SetLabel( style.Label ) ; return ; } } } } targetSpecialCombo.SetLabel( this.DefaultLabel ) ; } FCKToolbarFontFormatCombo.prototype.StyleCombo_OnBeforeClick = function( targetSpecialCombo ) { // Clear the current selection. targetSpecialCombo.DeselectAll() ; var startElement = FCK.ToolbarSet.CurrentInstance.Selection.GetBoundaryParentElement( true ) ; if ( startElement ) { var path = new FCKElementPath( startElement ) ; var blockElement = path.Block ; for ( var i in targetSpecialCombo.Items ) { var item = targetSpecialCombo.Items[i] ; var style = item.Style ; if ( style.CheckElementRemovable( blockElement ) ) { targetSpecialCombo.SelectItem( item ) ; return ; } } } }
01cms
01cms/branches/1.0/01cms/public/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
JavaScript
asf20
3,635