Removed unnessary files as a result of new theme work
@ -1,18 +0,0 @@
|
|||||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This class overrides Kohana's Form
|
|
||||||
*
|
|
||||||
* @package OSB
|
|
||||||
* @category Modifications
|
|
||||||
* @author Deon George
|
|
||||||
* @copyright (c) 2009-2013 Open Source Billing
|
|
||||||
* @license http://dev.osbill.net/license.html
|
|
||||||
*/
|
|
||||||
class Form extends Kohana_Form {
|
|
||||||
// Enable 3.0 features, default to current URI for empty Form::open()
|
|
||||||
public static function open($action = NULL, array $attributes = NULL) {
|
|
||||||
return parent::open(is_null($action) ? Request::detect_uri() : $action,$attributes);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,24 +0,0 @@
|
|||||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* OSB Configuration - Pagination Driver
|
|
||||||
*
|
|
||||||
* @package OSB
|
|
||||||
* @subpackage Pagination
|
|
||||||
* @category Configuration
|
|
||||||
* @author Deon George
|
|
||||||
* @copyright (c) 2010 Open Source Billing
|
|
||||||
* @license http://dev.osbill.net/license.html
|
|
||||||
*/
|
|
||||||
|
|
||||||
return array(
|
|
||||||
'default' => array(
|
|
||||||
'current_page' => array('source' => 'query_string', 'key' => 'page'),
|
|
||||||
'total_items' => 0,
|
|
||||||
'items_per_page' => 20,
|
|
||||||
'view' => 'pagination/floating',
|
|
||||||
'auto_hide' => TRUE,
|
|
||||||
'first_page_in_url' => FALSE,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
?>
|
|
@ -1,232 +0,0 @@
|
|||||||
/* The main calendar widget. DIV containing a table. */
|
|
||||||
|
|
||||||
div.calendar { position: relative; }
|
|
||||||
|
|
||||||
.calendar, .calendar table {
|
|
||||||
border: 1px solid #556;
|
|
||||||
font-size: 11px;
|
|
||||||
color: #000;
|
|
||||||
cursor: default;
|
|
||||||
background: #eef;
|
|
||||||
font-family: tahoma,verdana,sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Header part -- contains navigation buttons and day names. */
|
|
||||||
|
|
||||||
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
|
|
||||||
text-align: center; /* They are the navigation buttons */
|
|
||||||
padding: 2px; /* Make the buttons seem like they're pressing */
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar .nav {
|
|
||||||
background: #778 url(dhtml.menuarrow.gif) no-repeat 100% 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .title { /* This holds the current "month, year" */
|
|
||||||
font-weight: bold; /* Pressing it will take you to the current date */
|
|
||||||
text-align: center;
|
|
||||||
background: #fff;
|
|
||||||
color: #000;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .headrow { /* Row <TR> containing navigation buttons */
|
|
||||||
background: #778;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .daynames { /* Row <TR> containing the day names */
|
|
||||||
background: #bdf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .name { /* Cells <TD> containing the day names */
|
|
||||||
border-bottom: 1px solid #556;
|
|
||||||
padding: 2px;
|
|
||||||
text-align: center;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .weekend { /* How a weekend day name shows in header */
|
|
||||||
color: #a66;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .hilite { /* How do the buttons in header appear when hover */
|
|
||||||
background-color: #aaf;
|
|
||||||
color: #000;
|
|
||||||
border: 1px solid #04f;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar thead .active { /* Active (pressed) buttons in header */
|
|
||||||
background-color: #77c;
|
|
||||||
padding: 2px 0px 0px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The body part -- contains all the days in month. */
|
|
||||||
|
|
||||||
.calendar tbody .day { /* Cells <TD> containing month days dates */
|
|
||||||
width: 2em;
|
|
||||||
color: #456;
|
|
||||||
text-align: right;
|
|
||||||
padding: 2px 4px 2px 2px;
|
|
||||||
}
|
|
||||||
.calendar tbody .day.othermonth {
|
|
||||||
font-size: 80%;
|
|
||||||
color: #bbb;
|
|
||||||
}
|
|
||||||
.calendar tbody .day.othermonth.oweekend {
|
|
||||||
color: #fbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar table .wn {
|
|
||||||
padding: 2px 3px 2px 2px;
|
|
||||||
border-right: 1px solid #000;
|
|
||||||
background: #bdf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody .rowhilite td {
|
|
||||||
background: #def;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody .rowhilite td.wn {
|
|
||||||
background: #eef;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody td.hilite { /* Hovered cells <TD> */
|
|
||||||
background: #def;
|
|
||||||
padding: 1px 3px 1px 1px;
|
|
||||||
border: 1px solid #bbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody td.active { /* Active (pressed) cells <TD> */
|
|
||||||
background: #cde;
|
|
||||||
padding: 2px 2px 0px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody td.selected { /* Cell showing today date */
|
|
||||||
font-weight: bold;
|
|
||||||
border: 1px solid #000;
|
|
||||||
padding: 1px 3px 1px 1px;
|
|
||||||
background: #fff;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody td.weekend { /* Cells showing weekend days */
|
|
||||||
color: #a66;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody td.today { /* Cell showing selected date */
|
|
||||||
font-weight: bold;
|
|
||||||
color: #00f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody .disabled { color: #999; }
|
|
||||||
|
|
||||||
.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The footer part -- status bar and "Close" button */
|
|
||||||
|
|
||||||
.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
|
|
||||||
text-align: center;
|
|
||||||
background: #556;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
|
|
||||||
background: #fff;
|
|
||||||
color: #445;
|
|
||||||
border-top: 1px solid #556;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tfoot .hilite { /* Hover style for buttons in footer */
|
|
||||||
background: #aaf;
|
|
||||||
border: 1px solid #04f;
|
|
||||||
color: #000;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
|
|
||||||
background: #77c;
|
|
||||||
padding: 2px 0px 0px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Combo boxes (menus that display months/years for direct selection) */
|
|
||||||
|
|
||||||
.calendar .combo {
|
|
||||||
position: absolute;
|
|
||||||
display: none;
|
|
||||||
top: 0px;
|
|
||||||
left: 0px;
|
|
||||||
width: 4em;
|
|
||||||
cursor: default;
|
|
||||||
border: 1px solid #655;
|
|
||||||
background: #def;
|
|
||||||
color: #000;
|
|
||||||
font-size: 90%;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar .combo .label,
|
|
||||||
.calendar .combo .label-IEfix {
|
|
||||||
text-align: center;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar .combo .label-IEfix {
|
|
||||||
width: 4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar .combo .hilite {
|
|
||||||
background: #acf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar .combo .active {
|
|
||||||
border-top: 1px solid #46a;
|
|
||||||
border-bottom: 1px solid #46a;
|
|
||||||
background: #eef;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time {
|
|
||||||
border-top: 1px solid #000;
|
|
||||||
padding: 1px 0px;
|
|
||||||
text-align: center;
|
|
||||||
background-color: #f4f0e8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time .hour,
|
|
||||||
.calendar td.time .minute,
|
|
||||||
.calendar td.time .ampm {
|
|
||||||
padding: 0px 3px 0px 4px;
|
|
||||||
border: 1px solid #889;
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time .ampm {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time .colon {
|
|
||||||
padding: 0px 2px 0px 3px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time span.hilite {
|
|
||||||
border-color: #000;
|
|
||||||
background-color: #667;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar td.time span.active {
|
|
||||||
border-color: #f00;
|
|
||||||
background-color: #000;
|
|
||||||
color: #0f0;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 68 B |
@ -1,102 +0,0 @@
|
|||||||
/*
|
|
||||||
html5doctor.com Reset Stylesheet
|
|
||||||
v1.6.1
|
|
||||||
Last Updated: 2010-09-17
|
|
||||||
Author: Richard Clark - http://richclarkdesign.com
|
|
||||||
Twitter: @rich_clark
|
|
||||||
*/
|
|
||||||
|
|
||||||
html, body, div, span, object, iframe,
|
|
||||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
||||||
abbr, address, cite, code,
|
|
||||||
del, dfn, em, img, ins, kbd, q, samp,
|
|
||||||
small, strong, sub, sup, var,
|
|
||||||
b, i,
|
|
||||||
dl, dt, dd, ol, ul, li,
|
|
||||||
fieldset, form, label, legend,
|
|
||||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
||||||
article, aside, canvas, details, figcaption, figure,
|
|
||||||
footer, header, hgroup, menu, nav, section, summary,
|
|
||||||
time, mark, audio, video {
|
|
||||||
margin:0;
|
|
||||||
padding:0;
|
|
||||||
border:0;
|
|
||||||
outline:0;
|
|
||||||
font-size:100%;
|
|
||||||
vertical-align:baseline;
|
|
||||||
background:transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
line-height:1;
|
|
||||||
}
|
|
||||||
|
|
||||||
article,aside,details,figcaption,figure,
|
|
||||||
footer,header,hgroup,menu,nav,section {
|
|
||||||
display:block;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav ul {
|
|
||||||
list-style:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote, q {
|
|
||||||
quotes:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote:before, blockquote:after,
|
|
||||||
q:before, q:after {
|
|
||||||
content:'';
|
|
||||||
content:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
margin:0;
|
|
||||||
padding:0;
|
|
||||||
font-size:100%;
|
|
||||||
vertical-align:baseline;
|
|
||||||
background:transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* change colours to suit your needs */
|
|
||||||
ins {
|
|
||||||
background-color:#ff9;
|
|
||||||
color:#000;
|
|
||||||
text-decoration:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* change colours to suit your needs */
|
|
||||||
mark {
|
|
||||||
background-color:#ff9;
|
|
||||||
color:#000;
|
|
||||||
font-style:italic;
|
|
||||||
font-weight:bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
del {
|
|
||||||
text-decoration: line-through;
|
|
||||||
}
|
|
||||||
|
|
||||||
abbr[title], dfn[title] {
|
|
||||||
border-bottom:1px dotted;
|
|
||||||
cursor:help;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
border-collapse:collapse;
|
|
||||||
border-spacing:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* change border colour to suit your needs */
|
|
||||||
hr {
|
|
||||||
display:block;
|
|
||||||
height:1px;
|
|
||||||
border:0;
|
|
||||||
border-top:1px solid #cccccc;
|
|
||||||
margin:1em 0;
|
|
||||||
padding:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
input, select {
|
|
||||||
vertical-align:middle;
|
|
||||||
}
|
|
@ -1,92 +0,0 @@
|
|||||||
/* ie6 trash */
|
|
||||||
* html #gritter-notice-wrapper {
|
|
||||||
position:absolute;
|
|
||||||
}
|
|
||||||
* html .gritter-top {
|
|
||||||
margin-bottom:-10px;
|
|
||||||
}
|
|
||||||
* html .gritter-item {
|
|
||||||
padding-bottom:0;
|
|
||||||
}
|
|
||||||
* html .gritter-bottom {
|
|
||||||
margin-bottom:0;
|
|
||||||
}
|
|
||||||
* html .gritter-close {
|
|
||||||
background:url(../img/jquery.gritter-close-ie6.gif);
|
|
||||||
width:22px;
|
|
||||||
height:22px;
|
|
||||||
top:7px;
|
|
||||||
left:7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* the norm */
|
|
||||||
#gritter-notice-wrapper {
|
|
||||||
position:fixed;
|
|
||||||
top:20px;
|
|
||||||
right:20px;
|
|
||||||
width:301px;
|
|
||||||
z-index:9999;
|
|
||||||
}
|
|
||||||
.gritter-item-wrapper {
|
|
||||||
position:relative;
|
|
||||||
margin:0 0 10px 0;
|
|
||||||
}
|
|
||||||
.gritter-top {
|
|
||||||
background:url(../img/jquery.gritter.png) no-repeat left -30px;
|
|
||||||
height:10px;
|
|
||||||
}
|
|
||||||
.hover .gritter-top {
|
|
||||||
background-position:right -30px;
|
|
||||||
}
|
|
||||||
.gritter-bottom {
|
|
||||||
background:url(../img/jquery.gritter.png) no-repeat left bottom;
|
|
||||||
height:8px;
|
|
||||||
margin:0;
|
|
||||||
}
|
|
||||||
.hover .gritter-bottom {
|
|
||||||
background-position: bottom right;
|
|
||||||
}
|
|
||||||
.gritter-item {
|
|
||||||
display:block;
|
|
||||||
background:url(../img/jquery.gritter.png) no-repeat left -40px;
|
|
||||||
color:#eee;
|
|
||||||
padding:2px 11px 8px 11px;
|
|
||||||
font-size: 11px;
|
|
||||||
font-family:verdana;
|
|
||||||
}
|
|
||||||
.hover .gritter-item {
|
|
||||||
background-position:right -40px;
|
|
||||||
}
|
|
||||||
.gritter-item p {
|
|
||||||
padding:0;
|
|
||||||
margin:0;
|
|
||||||
}
|
|
||||||
.gritter-close {
|
|
||||||
position:absolute;
|
|
||||||
top:5px;
|
|
||||||
left:3px;
|
|
||||||
background:url(../img/jquery.gritter.png) no-repeat left top;
|
|
||||||
cursor:pointer;
|
|
||||||
width:30px;
|
|
||||||
height:30px;
|
|
||||||
}
|
|
||||||
.gritter-title {
|
|
||||||
font-size:14px;
|
|
||||||
font-weight:bold;
|
|
||||||
padding:0 0 7px 0;
|
|
||||||
display:block;
|
|
||||||
text-shadow:1px 1px #000; /* Not supported by IE :( */
|
|
||||||
}
|
|
||||||
.gritter-image {
|
|
||||||
width:24px;
|
|
||||||
height:24px;
|
|
||||||
float:left;
|
|
||||||
}
|
|
||||||
.gritter-with-image,
|
|
||||||
.gritter-without-image {
|
|
||||||
padding:0 0 0px 0;
|
|
||||||
}
|
|
||||||
.gritter-with-image {
|
|
||||||
width:250px;
|
|
||||||
float:right;
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
/** Login Style Sheet **/
|
|
||||||
|
|
||||||
table.login {
|
|
||||||
width: 5%;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
background-color: #FBFBFB;
|
|
||||||
border: 1px solid #A0A0A0;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-uid {
|
|
||||||
background: url('../img/login.user.png') no-repeat 0 1px;
|
|
||||||
background-color: #FAFAFF;
|
|
||||||
color: #000000;
|
|
||||||
padding-left: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-uid:focus {
|
|
||||||
background-color: #F0F0FF;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-uid:disabled {
|
|
||||||
background-color: #DDDDFF;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-pwd {
|
|
||||||
background: url('../img/dialog-password.png') no-repeat 0 1px;
|
|
||||||
background-color: #FAFAFF;
|
|
||||||
color: #000000;
|
|
||||||
padding-left: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-pwd:focus {
|
|
||||||
background-color: #F0F0FF;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-pwd:disabled {
|
|
||||||
background-color: #DDDDFF;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 928 B |
Before Width: | Height: | Size: 478 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 718 B |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 981 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 738 B |
Before Width: | Height: | Size: 718 B |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 654 B |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 102 B |
Before Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 1.4 KiB |
4
application/media/js/jquery-1.6.4.min.js
vendored
Before Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 120 B |
Before Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 101 B |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB |
@ -1,568 +0,0 @@
|
|||||||
/*
|
|
||||||
* jQuery UI CSS Framework 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Theming/API
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Layout helpers
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-helper-hidden { display: none; }
|
|
||||||
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
|
||||||
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
|
||||||
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
|
||||||
.ui-helper-clearfix { display: inline-block; }
|
|
||||||
/* required comment for clearfix to work in Opera \*/
|
|
||||||
* html .ui-helper-clearfix { height:1%; }
|
|
||||||
.ui-helper-clearfix { display:block; }
|
|
||||||
/* end clearfix */
|
|
||||||
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
|
||||||
|
|
||||||
|
|
||||||
/* Interaction Cues
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-disabled { cursor: default !important; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Icons
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* states and images */
|
|
||||||
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Misc visuals
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* Overlays */
|
|
||||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI CSS Framework 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Theming/API
|
|
||||||
*
|
|
||||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/* Component containers
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-widget { font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 60%; }
|
|
||||||
.ui-widget .ui-widget { font-size: 1em; }
|
|
||||||
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
|
|
||||||
.ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
|
|
||||||
.ui-widget-content a { color: #222222; }
|
|
||||||
.ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
|
|
||||||
.ui-widget-header a { color: #222222; }
|
|
||||||
|
|
||||||
/* Interaction states
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
|
|
||||||
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
|
|
||||||
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
|
|
||||||
.ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
|
|
||||||
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
|
|
||||||
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
|
|
||||||
.ui-widget :active { outline: none; }
|
|
||||||
|
|
||||||
/* Interaction Cues
|
|
||||||
----------------------------------*/
|
|
||||||
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
|
|
||||||
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
|
||||||
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
|
|
||||||
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
|
|
||||||
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
|
|
||||||
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
|
||||||
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
|
||||||
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
|
||||||
|
|
||||||
/* Icons
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* states and images */
|
|
||||||
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
|
|
||||||
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
|
||||||
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
|
||||||
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
|
|
||||||
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
|
|
||||||
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
|
|
||||||
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
|
|
||||||
|
|
||||||
/* positioning */
|
|
||||||
.ui-icon-carat-1-n { background-position: 0 0; }
|
|
||||||
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
|
||||||
.ui-icon-carat-1-e { background-position: -32px 0; }
|
|
||||||
.ui-icon-carat-1-se { background-position: -48px 0; }
|
|
||||||
.ui-icon-carat-1-s { background-position: -64px 0; }
|
|
||||||
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
|
||||||
.ui-icon-carat-1-w { background-position: -96px 0; }
|
|
||||||
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
|
||||||
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
|
||||||
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
|
||||||
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
|
||||||
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
|
||||||
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
|
||||||
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
|
||||||
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
|
||||||
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
|
||||||
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
|
||||||
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
|
||||||
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
|
||||||
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
|
||||||
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
|
||||||
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
|
||||||
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
|
||||||
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
|
||||||
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
|
||||||
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
|
||||||
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
|
||||||
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
|
||||||
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
|
||||||
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
|
||||||
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
|
||||||
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
|
||||||
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
|
||||||
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
|
||||||
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
|
||||||
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
|
||||||
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
|
||||||
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
|
||||||
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
|
||||||
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
|
||||||
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
|
||||||
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
|
||||||
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
|
||||||
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
|
||||||
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
|
||||||
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
|
||||||
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
|
||||||
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
|
||||||
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
|
||||||
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
|
||||||
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
|
||||||
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
|
||||||
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
|
||||||
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
|
||||||
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
|
||||||
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
|
||||||
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
|
||||||
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
|
||||||
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
|
||||||
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
|
||||||
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
|
||||||
.ui-icon-extlink { background-position: -32px -80px; }
|
|
||||||
.ui-icon-newwin { background-position: -48px -80px; }
|
|
||||||
.ui-icon-refresh { background-position: -64px -80px; }
|
|
||||||
.ui-icon-shuffle { background-position: -80px -80px; }
|
|
||||||
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
|
||||||
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
|
||||||
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
|
||||||
.ui-icon-folder-open { background-position: -16px -96px; }
|
|
||||||
.ui-icon-document { background-position: -32px -96px; }
|
|
||||||
.ui-icon-document-b { background-position: -48px -96px; }
|
|
||||||
.ui-icon-note { background-position: -64px -96px; }
|
|
||||||
.ui-icon-mail-closed { background-position: -80px -96px; }
|
|
||||||
.ui-icon-mail-open { background-position: -96px -96px; }
|
|
||||||
.ui-icon-suitcase { background-position: -112px -96px; }
|
|
||||||
.ui-icon-comment { background-position: -128px -96px; }
|
|
||||||
.ui-icon-person { background-position: -144px -96px; }
|
|
||||||
.ui-icon-print { background-position: -160px -96px; }
|
|
||||||
.ui-icon-trash { background-position: -176px -96px; }
|
|
||||||
.ui-icon-locked { background-position: -192px -96px; }
|
|
||||||
.ui-icon-unlocked { background-position: -208px -96px; }
|
|
||||||
.ui-icon-bookmark { background-position: -224px -96px; }
|
|
||||||
.ui-icon-tag { background-position: -240px -96px; }
|
|
||||||
.ui-icon-home { background-position: 0 -112px; }
|
|
||||||
.ui-icon-flag { background-position: -16px -112px; }
|
|
||||||
.ui-icon-calendar { background-position: -32px -112px; }
|
|
||||||
.ui-icon-cart { background-position: -48px -112px; }
|
|
||||||
.ui-icon-pencil { background-position: -64px -112px; }
|
|
||||||
.ui-icon-clock { background-position: -80px -112px; }
|
|
||||||
.ui-icon-disk { background-position: -96px -112px; }
|
|
||||||
.ui-icon-calculator { background-position: -112px -112px; }
|
|
||||||
.ui-icon-zoomin { background-position: -128px -112px; }
|
|
||||||
.ui-icon-zoomout { background-position: -144px -112px; }
|
|
||||||
.ui-icon-search { background-position: -160px -112px; }
|
|
||||||
.ui-icon-wrench { background-position: -176px -112px; }
|
|
||||||
.ui-icon-gear { background-position: -192px -112px; }
|
|
||||||
.ui-icon-heart { background-position: -208px -112px; }
|
|
||||||
.ui-icon-star { background-position: -224px -112px; }
|
|
||||||
.ui-icon-link { background-position: -240px -112px; }
|
|
||||||
.ui-icon-cancel { background-position: 0 -128px; }
|
|
||||||
.ui-icon-plus { background-position: -16px -128px; }
|
|
||||||
.ui-icon-plusthick { background-position: -32px -128px; }
|
|
||||||
.ui-icon-minus { background-position: -48px -128px; }
|
|
||||||
.ui-icon-minusthick { background-position: -64px -128px; }
|
|
||||||
.ui-icon-close { background-position: -80px -128px; }
|
|
||||||
.ui-icon-closethick { background-position: -96px -128px; }
|
|
||||||
.ui-icon-key { background-position: -112px -128px; }
|
|
||||||
.ui-icon-lightbulb { background-position: -128px -128px; }
|
|
||||||
.ui-icon-scissors { background-position: -144px -128px; }
|
|
||||||
.ui-icon-clipboard { background-position: -160px -128px; }
|
|
||||||
.ui-icon-copy { background-position: -176px -128px; }
|
|
||||||
.ui-icon-contact { background-position: -192px -128px; }
|
|
||||||
.ui-icon-image { background-position: -208px -128px; }
|
|
||||||
.ui-icon-video { background-position: -224px -128px; }
|
|
||||||
.ui-icon-script { background-position: -240px -128px; }
|
|
||||||
.ui-icon-alert { background-position: 0 -144px; }
|
|
||||||
.ui-icon-info { background-position: -16px -144px; }
|
|
||||||
.ui-icon-notice { background-position: -32px -144px; }
|
|
||||||
.ui-icon-help { background-position: -48px -144px; }
|
|
||||||
.ui-icon-check { background-position: -64px -144px; }
|
|
||||||
.ui-icon-bullet { background-position: -80px -144px; }
|
|
||||||
.ui-icon-radio-off { background-position: -96px -144px; }
|
|
||||||
.ui-icon-radio-on { background-position: -112px -144px; }
|
|
||||||
.ui-icon-pin-w { background-position: -128px -144px; }
|
|
||||||
.ui-icon-pin-s { background-position: -144px -144px; }
|
|
||||||
.ui-icon-play { background-position: 0 -160px; }
|
|
||||||
.ui-icon-pause { background-position: -16px -160px; }
|
|
||||||
.ui-icon-seek-next { background-position: -32px -160px; }
|
|
||||||
.ui-icon-seek-prev { background-position: -48px -160px; }
|
|
||||||
.ui-icon-seek-end { background-position: -64px -160px; }
|
|
||||||
.ui-icon-seek-start { background-position: -80px -160px; }
|
|
||||||
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
|
||||||
.ui-icon-seek-first { background-position: -80px -160px; }
|
|
||||||
.ui-icon-stop { background-position: -96px -160px; }
|
|
||||||
.ui-icon-eject { background-position: -112px -160px; }
|
|
||||||
.ui-icon-volume-off { background-position: -128px -160px; }
|
|
||||||
.ui-icon-volume-on { background-position: -144px -160px; }
|
|
||||||
.ui-icon-power { background-position: 0 -176px; }
|
|
||||||
.ui-icon-signal-diag { background-position: -16px -176px; }
|
|
||||||
.ui-icon-signal { background-position: -32px -176px; }
|
|
||||||
.ui-icon-battery-0 { background-position: -48px -176px; }
|
|
||||||
.ui-icon-battery-1 { background-position: -64px -176px; }
|
|
||||||
.ui-icon-battery-2 { background-position: -80px -176px; }
|
|
||||||
.ui-icon-battery-3 { background-position: -96px -176px; }
|
|
||||||
.ui-icon-circle-plus { background-position: 0 -192px; }
|
|
||||||
.ui-icon-circle-minus { background-position: -16px -192px; }
|
|
||||||
.ui-icon-circle-close { background-position: -32px -192px; }
|
|
||||||
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
|
||||||
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
|
||||||
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
|
||||||
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
|
||||||
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
|
||||||
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
|
||||||
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
|
||||||
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
|
||||||
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
|
||||||
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
|
||||||
.ui-icon-circle-check { background-position: -208px -192px; }
|
|
||||||
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
|
||||||
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
|
||||||
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
|
||||||
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
|
||||||
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
|
||||||
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
|
||||||
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
|
||||||
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
|
||||||
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
|
||||||
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
|
||||||
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
|
||||||
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
|
||||||
|
|
||||||
|
|
||||||
/* Misc visuals
|
|
||||||
----------------------------------*/
|
|
||||||
|
|
||||||
/* Corner radius */
|
|
||||||
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
|
|
||||||
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
|
|
||||||
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
|
|
||||||
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
|
||||||
|
|
||||||
/* Overlays */
|
|
||||||
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
|
|
||||||
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
|
|
||||||
* jQuery UI Resizable 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Resizable#theming
|
|
||||||
*/
|
|
||||||
.ui-resizable { position: relative;}
|
|
||||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
|
|
||||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
|
||||||
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
|
||||||
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
|
||||||
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
|
||||||
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
|
||||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
|
||||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
|
||||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
|
||||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
|
|
||||||
* jQuery UI Selectable 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Selectable#theming
|
|
||||||
*/
|
|
||||||
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Accordion 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Accordion#theming
|
|
||||||
*/
|
|
||||||
/* IE/Win - Fix animation bug - #4615 */
|
|
||||||
.ui-accordion { width: 100%; }
|
|
||||||
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
|
||||||
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
|
||||||
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
|
||||||
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
|
|
||||||
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
|
|
||||||
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
|
||||||
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
|
|
||||||
.ui-accordion .ui-accordion-content-active { display: block; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Autocomplete 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Autocomplete#theming
|
|
||||||
*/
|
|
||||||
.ui-autocomplete { position: absolute; cursor: default; }
|
|
||||||
|
|
||||||
/* workarounds */
|
|
||||||
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* jQuery UI Menu 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Menu#theming
|
|
||||||
*/
|
|
||||||
.ui-menu {
|
|
||||||
list-style:none;
|
|
||||||
padding: 2px;
|
|
||||||
margin: 0;
|
|
||||||
display:block;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu {
|
|
||||||
margin-top: -3px;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item {
|
|
||||||
margin:0;
|
|
||||||
padding: 0;
|
|
||||||
zoom: 1;
|
|
||||||
float: left;
|
|
||||||
clear: left;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item a {
|
|
||||||
text-decoration:none;
|
|
||||||
display:block;
|
|
||||||
padding:.2em .4em;
|
|
||||||
line-height:1.5;
|
|
||||||
zoom:1;
|
|
||||||
}
|
|
||||||
.ui-menu .ui-menu-item a.ui-state-hover,
|
|
||||||
.ui-menu .ui-menu-item a.ui-state-active {
|
|
||||||
font-weight: normal;
|
|
||||||
margin: -1px;
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* jQuery UI Button 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Button#theming
|
|
||||||
*/
|
|
||||||
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
|
||||||
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
|
||||||
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
|
||||||
.ui-button-icons-only { width: 3.4em; }
|
|
||||||
button.ui-button-icons-only { width: 3.7em; }
|
|
||||||
|
|
||||||
/*button text element */
|
|
||||||
.ui-button .ui-button-text { display: block; line-height: 1.4; }
|
|
||||||
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
|
|
||||||
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
|
||||||
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
|
||||||
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
|
||||||
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
|
||||||
/* no icon support for input elements, provide padding by default */
|
|
||||||
input.ui-button { padding: .4em 1em; }
|
|
||||||
|
|
||||||
/*button icon element(s) */
|
|
||||||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
|
||||||
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
|
||||||
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
|
||||||
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
|
||||||
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
|
||||||
|
|
||||||
/*button sets*/
|
|
||||||
.ui-buttonset { margin-right: 7px; }
|
|
||||||
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
|
|
||||||
|
|
||||||
/* workarounds */
|
|
||||||
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
|
||||||
/*
|
|
||||||
* jQuery UI Dialog 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Dialog#theming
|
|
||||||
*/
|
|
||||||
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
|
|
||||||
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
|
|
||||||
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
|
|
||||||
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
|
||||||
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
|
||||||
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
|
||||||
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
|
||||||
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
|
||||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
|
||||||
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
|
||||||
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
|
||||||
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Slider 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Slider#theming
|
|
||||||
*/
|
|
||||||
.ui-slider { position: relative; text-align: left; }
|
|
||||||
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
|
||||||
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
|
|
||||||
|
|
||||||
.ui-slider-horizontal { height: .8em; }
|
|
||||||
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
|
||||||
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
|
||||||
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
|
||||||
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
|
||||||
|
|
||||||
.ui-slider-vertical { width: .8em; height: 100px; }
|
|
||||||
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
|
||||||
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
|
||||||
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
|
||||||
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
|
|
||||||
* jQuery UI Tabs 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Tabs#theming
|
|
||||||
*/
|
|
||||||
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
|
||||||
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
|
||||||
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
|
|
||||||
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
|
||||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
|
|
||||||
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
|
||||||
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
|
||||||
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
|
||||||
.ui-tabs .ui-tabs-hide { display: none !important; }
|
|
||||||
/*
|
|
||||||
* jQuery UI Datepicker 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Datepicker#theming
|
|
||||||
*/
|
|
||||||
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
|
|
||||||
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
|
||||||
.ui-datepicker .ui-datepicker-next { right:2px; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
|
||||||
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
|
||||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
|
||||||
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
|
||||||
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
|
||||||
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
|
||||||
.ui-datepicker select.ui-datepicker-month,
|
|
||||||
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
|
||||||
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
|
||||||
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
|
||||||
.ui-datepicker td { border: 0; padding: 1px; }
|
|
||||||
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
|
||||||
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
|
||||||
|
|
||||||
/* with multiple calendars */
|
|
||||||
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
|
||||||
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
|
||||||
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
|
||||||
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
|
||||||
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
|
||||||
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
|
||||||
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
|
||||||
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
|
||||||
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
|
||||||
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
|
||||||
|
|
||||||
/* RTL support */
|
|
||||||
.ui-datepicker-rtl { direction: rtl; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
|
||||||
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
|
||||||
|
|
||||||
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
|
||||||
.ui-datepicker-cover {
|
|
||||||
display: none; /*sorry for IE5*/
|
|
||||||
display/**/: block; /*sorry for IE5*/
|
|
||||||
position: absolute; /*must have*/
|
|
||||||
z-index: -1; /*must have*/
|
|
||||||
filter: mask(); /*must have*/
|
|
||||||
top: -4px; /*must have*/
|
|
||||||
left: -4px; /*must have*/
|
|
||||||
width: 200px; /*must have*/
|
|
||||||
height: 200px; /*must have*/
|
|
||||||
}/*
|
|
||||||
* jQuery UI Progressbar 1.8.16
|
|
||||||
*
|
|
||||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
||||||
* http://jquery.org/license
|
|
||||||
*
|
|
||||||
* http://docs.jquery.com/UI/Progressbar#theming
|
|
||||||
*/
|
|
||||||
.ui-progressbar { height:2em; text-align: left; }
|
|
||||||
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
|
|
@ -1 +0,0 @@
|
|||||||
(function(b){var e,d,a=[],c=window;b.fn.tinymce=function(j){var p=this,g,k,h,m,i,l="",n="";if(!p.length){return p}if(!j){return tinyMCE.get(p[0].id)}p.css("visibility","hidden");function o(){var r=[],q=0;if(f){f();f=null}p.each(function(t,u){var s,w=u.id,v=j.oninit;if(!w){u.id=w=tinymce.DOM.uniqueId()}s=new tinymce.Editor(w,j);r.push(s);s.onInit.add(function(){var x,y=v;p.css("visibility","");if(v){if(++q==r.length){if(tinymce.is(y,"string")){x=(y.indexOf(".")===-1)?null:tinymce.resolve(y.replace(/\.\w+$/,""));y=tinymce.resolve(y)}y.apply(x||tinymce,r)}}})});b.each(r,function(t,s){s.render()})}if(!c.tinymce&&!d&&(g=j.script_url)){d=1;h=g.substring(0,g.lastIndexOf("/"));if(/_(src|dev)\.js/g.test(g)){n="_src"}m=g.lastIndexOf("?");if(m!=-1){l=g.substring(m+1)}c.tinyMCEPreInit=c.tinyMCEPreInit||{base:h,suffix:n,query:l};if(g.indexOf("gzip")!=-1){i=j.language||"en";g=g+(/\?/.test(g)?"&":"?")+"js=true&core=true&suffix="+escape(n)+"&themes="+escape(j.theme)+"&plugins="+escape(j.plugins)+"&languages="+i;if(!c.tinyMCE_GZ){tinyMCE_GZ={start:function(){tinymce.suffix=n;function q(r){tinymce.ScriptLoader.markDone(tinyMCE.baseURI.toAbsolute(r))}q("langs/"+i+".js");q("themes/"+j.theme+"/editor_template"+n+".js");q("themes/"+j.theme+"/langs/"+i+".js");b.each(j.plugins.split(","),function(s,r){if(r){q("plugins/"+r+"/editor_plugin"+n+".js");q("plugins/"+r+"/langs/"+i+".js")}})},end:function(){}}}}b.ajax({type:"GET",url:g,dataType:"script",cache:true,success:function(){tinymce.dom.Event.domLoaded=1;d=2;if(j.script_loaded){j.script_loaded()}o();b.each(a,function(q,r){r()})}})}else{if(d===1){a.push(o)}else{o()}}return p};b.extend(b.expr[":"],{tinymce:function(g){return g.id&&!!tinyMCE.get(g.id)}});function f(){function i(l){if(l==="remove"){this.each(function(n,o){var m=h(o);if(m){m.remove()}})}this.find("span.mceEditor,div.mceEditor").each(function(n,o){var m=tinyMCE.get(o.id.replace(/_parent$/,""));if(m){m.remove()}})}function k(n){var m=this,l;if(n!==e){i.call(m);m.each(function(p,q){var o;if(o=tinyMCE.get(q.id)){o.setContent(n)}})}else{if(m.length>0){if(l=tinyMCE.get(m[0].id)){return l.getContent()}}}}function h(m){var l=null;(m)&&(m.id)&&(c.tinymce)&&(l=tinyMCE.get(m.id));return l}function g(l){return !!((l)&&(l.length)&&(c.tinymce)&&(l.is(":tinymce")))}var j={};b.each(["text","html","val"],function(n,l){var o=j[l]=b.fn[l],m=(l==="text");b.fn[l]=function(s){var p=this;if(!g(p)){return o.apply(p,arguments)}if(s!==e){k.call(p.filter(":tinymce"),s);o.apply(p.not(":tinymce"),arguments);return p}else{var r="";var q=arguments;(m?p:p.eq(0)).each(function(u,v){var t=h(v);r+=t?(m?t.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):t.getContent()):o.apply(b(v),q)});return r}}});b.each(["append","prepend"],function(n,m){var o=j[m]=b.fn[m],l=(m==="prepend");b.fn[m]=function(q){var p=this;if(!g(p)){return o.apply(p,arguments)}if(q!==e){p.filter(":tinymce").each(function(s,t){var r=h(t);r&&r.setContent(l?q+r.getContent():r.getContent()+q)});o.apply(p.not(":tinymce"),arguments);return p}}});b.each(["remove","replaceWith","replaceAll","empty"],function(m,l){var n=j[l]=b.fn[l];b.fn[l]=function(){i.call(this,l);return n.apply(this,arguments)}});j.attr=b.fn.attr;b.fn.attr=function(n,q,o){var m=this;if((!n)||(n!=="value")||(!g(m))){return j.attr.call(m,n,q,o)}if(q!==e){k.call(m.filter(":tinymce"),q);j.attr.call(m.not(":tinymce"),n,q,o);return m}else{var p=m[0],l=h(p);return l?l.getContent():j.attr.call(b(p),n,q,o)}}}})(jQuery);
|
|
170
application/media/js/tiny_mce/langs/en.js
vendored
@ -1,170 +0,0 @@
|
|||||||
tinyMCE.addI18n({en:{
|
|
||||||
common:{
|
|
||||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
|
||||||
apply:"Apply",
|
|
||||||
insert:"Insert",
|
|
||||||
update:"Update",
|
|
||||||
cancel:"Cancel",
|
|
||||||
close:"Close",
|
|
||||||
browse:"Browse",
|
|
||||||
class_name:"Class",
|
|
||||||
not_set:"-- Not set --",
|
|
||||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
|
||||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
|
||||||
popup_blocked:"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.",
|
|
||||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
|
||||||
more_colors:"More colors"
|
|
||||||
},
|
|
||||||
contextmenu:{
|
|
||||||
align:"Alignment",
|
|
||||||
left:"Left",
|
|
||||||
center:"Center",
|
|
||||||
right:"Right",
|
|
||||||
full:"Full"
|
|
||||||
},
|
|
||||||
insertdatetime:{
|
|
||||||
date_fmt:"%Y-%m-%d",
|
|
||||||
time_fmt:"%H:%M:%S",
|
|
||||||
insertdate_desc:"Insert date",
|
|
||||||
inserttime_desc:"Insert time",
|
|
||||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
|
||||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
|
||||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
|
||||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
|
||||||
},
|
|
||||||
print:{
|
|
||||||
print_desc:"Print"
|
|
||||||
},
|
|
||||||
preview:{
|
|
||||||
preview_desc:"Preview"
|
|
||||||
},
|
|
||||||
directionality:{
|
|
||||||
ltr_desc:"Direction left to right",
|
|
||||||
rtl_desc:"Direction right to left"
|
|
||||||
},
|
|
||||||
layer:{
|
|
||||||
insertlayer_desc:"Insert new layer",
|
|
||||||
forward_desc:"Move forward",
|
|
||||||
backward_desc:"Move backward",
|
|
||||||
absolute_desc:"Toggle absolute positioning",
|
|
||||||
content:"New layer..."
|
|
||||||
},
|
|
||||||
save:{
|
|
||||||
save_desc:"Save",
|
|
||||||
cancel_desc:"Cancel all changes"
|
|
||||||
},
|
|
||||||
nonbreaking:{
|
|
||||||
nonbreaking_desc:"Insert non-breaking space character"
|
|
||||||
},
|
|
||||||
iespell:{
|
|
||||||
iespell_desc:"Run spell checking",
|
|
||||||
download:"ieSpell not detected. Do you want to install it now?"
|
|
||||||
},
|
|
||||||
advhr:{
|
|
||||||
advhr_desc:"Horizontal rule"
|
|
||||||
},
|
|
||||||
emotions:{
|
|
||||||
emotions_desc:"Emotions"
|
|
||||||
},
|
|
||||||
searchreplace:{
|
|
||||||
search_desc:"Find",
|
|
||||||
replace_desc:"Find/Replace"
|
|
||||||
},
|
|
||||||
advimage:{
|
|
||||||
image_desc:"Insert/edit image"
|
|
||||||
},
|
|
||||||
advlink:{
|
|
||||||
link_desc:"Insert/edit link"
|
|
||||||
},
|
|
||||||
xhtmlxtras:{
|
|
||||||
cite_desc:"Citation",
|
|
||||||
abbr_desc:"Abbreviation",
|
|
||||||
acronym_desc:"Acronym",
|
|
||||||
del_desc:"Deletion",
|
|
||||||
ins_desc:"Insertion",
|
|
||||||
attribs_desc:"Insert/Edit Attributes"
|
|
||||||
},
|
|
||||||
style:{
|
|
||||||
desc:"Edit CSS Style"
|
|
||||||
},
|
|
||||||
paste:{
|
|
||||||
paste_text_desc:"Paste as Plain Text",
|
|
||||||
paste_word_desc:"Paste from Word",
|
|
||||||
selectall_desc:"Select All",
|
|
||||||
plaintext_mode_sticky:"Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.",
|
|
||||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
|
||||||
},
|
|
||||||
paste_dlg:{
|
|
||||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
|
||||||
text_linebreaks:"Keep linebreaks",
|
|
||||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
|
||||||
},
|
|
||||||
table:{
|
|
||||||
desc:"Inserts a new table",
|
|
||||||
row_before_desc:"Insert row before",
|
|
||||||
row_after_desc:"Insert row after",
|
|
||||||
delete_row_desc:"Delete row",
|
|
||||||
col_before_desc:"Insert column before",
|
|
||||||
col_after_desc:"Insert column after",
|
|
||||||
delete_col_desc:"Remove column",
|
|
||||||
split_cells_desc:"Split merged table cells",
|
|
||||||
merge_cells_desc:"Merge table cells",
|
|
||||||
row_desc:"Table row properties",
|
|
||||||
cell_desc:"Table cell properties",
|
|
||||||
props_desc:"Table properties",
|
|
||||||
paste_row_before_desc:"Paste table row before",
|
|
||||||
paste_row_after_desc:"Paste table row after",
|
|
||||||
cut_row_desc:"Cut table row",
|
|
||||||
copy_row_desc:"Copy table row",
|
|
||||||
del:"Delete table",
|
|
||||||
row:"Row",
|
|
||||||
col:"Column",
|
|
||||||
cell:"Cell"
|
|
||||||
},
|
|
||||||
autosave:{
|
|
||||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
|
||||||
restore_content:"Restore auto-saved content.",
|
|
||||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
|
||||||
},
|
|
||||||
fullscreen:{
|
|
||||||
desc:"Toggle fullscreen mode"
|
|
||||||
},
|
|
||||||
media:{
|
|
||||||
desc:"Insert / edit embedded media",
|
|
||||||
edit:"Edit embedded media"
|
|
||||||
},
|
|
||||||
fullpage:{
|
|
||||||
desc:"Document properties"
|
|
||||||
},
|
|
||||||
template:{
|
|
||||||
desc:"Insert predefined template content"
|
|
||||||
},
|
|
||||||
visualchars:{
|
|
||||||
desc:"Visual control characters on/off."
|
|
||||||
},
|
|
||||||
spellchecker:{
|
|
||||||
desc:"Toggle spellchecker",
|
|
||||||
menu:"Spellchecker settings",
|
|
||||||
ignore_word:"Ignore word",
|
|
||||||
ignore_words:"Ignore all",
|
|
||||||
langs:"Languages",
|
|
||||||
wait:"Please wait...",
|
|
||||||
sug:"Suggestions",
|
|
||||||
no_sug:"No suggestions",
|
|
||||||
no_mpell:"No misspellings found."
|
|
||||||
},
|
|
||||||
pagebreak:{
|
|
||||||
desc:"Insert page break."
|
|
||||||
},
|
|
||||||
advlist:{
|
|
||||||
types:"Types",
|
|
||||||
def:"Default",
|
|
||||||
lower_alpha:"Lower alpha",
|
|
||||||
lower_greek:"Lower greek",
|
|
||||||
lower_roman:"Lower roman",
|
|
||||||
upper_alpha:"Upper alpha",
|
|
||||||
upper_roman:"Upper roman",
|
|
||||||
circle:"Circle",
|
|
||||||
disc:"Disc",
|
|
||||||
square:"Square"
|
|
||||||
}}});
|
|
@ -1,504 +0,0 @@
|
|||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
|
||||||
Version 2.1, February 1999
|
|
||||||
|
|
||||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
[This is the first released version of the Lesser GPL. It also counts
|
|
||||||
as the successor of the GNU Library Public License, version 2, hence
|
|
||||||
the version number 2.1.]
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
|
||||||
Licenses are intended to guarantee your freedom to share and change
|
|
||||||
free software--to make sure the software is free for all its users.
|
|
||||||
|
|
||||||
This license, the Lesser General Public License, applies to some
|
|
||||||
specially designated software packages--typically libraries--of the
|
|
||||||
Free Software Foundation and other authors who decide to use it. You
|
|
||||||
can use it too, but we suggest you first think carefully about whether
|
|
||||||
this license or the ordinary General Public License is the better
|
|
||||||
strategy to use in any particular case, based on the explanations below.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom of use,
|
|
||||||
not price. Our General Public Licenses are designed to make sure that
|
|
||||||
you have the freedom to distribute copies of free software (and charge
|
|
||||||
for this service if you wish); that you receive source code or can get
|
|
||||||
it if you want it; that you can change the software and use pieces of
|
|
||||||
it in new free programs; and that you are informed that you can do
|
|
||||||
these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to make restrictions that forbid
|
|
||||||
distributors to deny you these rights or to ask you to surrender these
|
|
||||||
rights. These restrictions translate to certain responsibilities for
|
|
||||||
you if you distribute copies of the library or if you modify it.
|
|
||||||
|
|
||||||
For example, if you distribute copies of the library, whether gratis
|
|
||||||
or for a fee, you must give the recipients all the rights that we gave
|
|
||||||
you. You must make sure that they, too, receive or can get the source
|
|
||||||
code. If you link other code with the library, you must provide
|
|
||||||
complete object files to the recipients, so that they can relink them
|
|
||||||
with the library after making changes to the library and recompiling
|
|
||||||
it. And you must show them these terms so they know their rights.
|
|
||||||
|
|
||||||
We protect your rights with a two-step method: (1) we copyright the
|
|
||||||
library, and (2) we offer you this license, which gives you legal
|
|
||||||
permission to copy, distribute and/or modify the library.
|
|
||||||
|
|
||||||
To protect each distributor, we want to make it very clear that
|
|
||||||
there is no warranty for the free library. Also, if the library is
|
|
||||||
modified by someone else and passed on, the recipients should know
|
|
||||||
that what they have is not the original version, so that the original
|
|
||||||
author's reputation will not be affected by problems that might be
|
|
||||||
introduced by others.
|
|
||||||
|
|
||||||
Finally, software patents pose a constant threat to the existence of
|
|
||||||
any free program. We wish to make sure that a company cannot
|
|
||||||
effectively restrict the users of a free program by obtaining a
|
|
||||||
restrictive license from a patent holder. Therefore, we insist that
|
|
||||||
any patent license obtained for a version of the library must be
|
|
||||||
consistent with the full freedom of use specified in this license.
|
|
||||||
|
|
||||||
Most GNU software, including some libraries, is covered by the
|
|
||||||
ordinary GNU General Public License. This license, the GNU Lesser
|
|
||||||
General Public License, applies to certain designated libraries, and
|
|
||||||
is quite different from the ordinary General Public License. We use
|
|
||||||
this license for certain libraries in order to permit linking those
|
|
||||||
libraries into non-free programs.
|
|
||||||
|
|
||||||
When a program is linked with a library, whether statically or using
|
|
||||||
a shared library, the combination of the two is legally speaking a
|
|
||||||
combined work, a derivative of the original library. The ordinary
|
|
||||||
General Public License therefore permits such linking only if the
|
|
||||||
entire combination fits its criteria of freedom. The Lesser General
|
|
||||||
Public License permits more lax criteria for linking other code with
|
|
||||||
the library.
|
|
||||||
|
|
||||||
We call this license the "Lesser" General Public License because it
|
|
||||||
does Less to protect the user's freedom than the ordinary General
|
|
||||||
Public License. It also provides other free software developers Less
|
|
||||||
of an advantage over competing non-free programs. These disadvantages
|
|
||||||
are the reason we use the ordinary General Public License for many
|
|
||||||
libraries. However, the Lesser license provides advantages in certain
|
|
||||||
special circumstances.
|
|
||||||
|
|
||||||
For example, on rare occasions, there may be a special need to
|
|
||||||
encourage the widest possible use of a certain library, so that it becomes
|
|
||||||
a de-facto standard. To achieve this, non-free programs must be
|
|
||||||
allowed to use the library. A more frequent case is that a free
|
|
||||||
library does the same job as widely used non-free libraries. In this
|
|
||||||
case, there is little to gain by limiting the free library to free
|
|
||||||
software only, so we use the Lesser General Public License.
|
|
||||||
|
|
||||||
In other cases, permission to use a particular library in non-free
|
|
||||||
programs enables a greater number of people to use a large body of
|
|
||||||
free software. For example, permission to use the GNU C Library in
|
|
||||||
non-free programs enables many more people to use the whole GNU
|
|
||||||
operating system, as well as its variant, the GNU/Linux operating
|
|
||||||
system.
|
|
||||||
|
|
||||||
Although the Lesser General Public License is Less protective of the
|
|
||||||
users' freedom, it does ensure that the user of a program that is
|
|
||||||
linked with the Library has the freedom and the wherewithal to run
|
|
||||||
that program using a modified version of the Library.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow. Pay close attention to the difference between a
|
|
||||||
"work based on the library" and a "work that uses the library". The
|
|
||||||
former contains code derived from the library, whereas the latter must
|
|
||||||
be combined with the library in order to run.
|
|
||||||
|
|
||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. This License Agreement applies to any software library or other
|
|
||||||
program which contains a notice placed by the copyright holder or
|
|
||||||
other authorized party saying it may be distributed under the terms of
|
|
||||||
this Lesser General Public License (also called "this License").
|
|
||||||
Each licensee is addressed as "you".
|
|
||||||
|
|
||||||
A "library" means a collection of software functions and/or data
|
|
||||||
prepared so as to be conveniently linked with application programs
|
|
||||||
(which use some of those functions and data) to form executables.
|
|
||||||
|
|
||||||
The "Library", below, refers to any such software library or work
|
|
||||||
which has been distributed under these terms. A "work based on the
|
|
||||||
Library" means either the Library or any derivative work under
|
|
||||||
copyright law: that is to say, a work containing the Library or a
|
|
||||||
portion of it, either verbatim or with modifications and/or translated
|
|
||||||
straightforwardly into another language. (Hereinafter, translation is
|
|
||||||
included without limitation in the term "modification".)
|
|
||||||
|
|
||||||
"Source code" for a work means the preferred form of the work for
|
|
||||||
making modifications to it. For a library, complete source code means
|
|
||||||
all the source code for all modules it contains, plus any associated
|
|
||||||
interface definition files, plus the scripts used to control compilation
|
|
||||||
and installation of the library.
|
|
||||||
|
|
||||||
Activities other than copying, distribution and modification are not
|
|
||||||
covered by this License; they are outside its scope. The act of
|
|
||||||
running a program using the Library is not restricted, and output from
|
|
||||||
such a program is covered only if its contents constitute a work based
|
|
||||||
on the Library (independent of the use of the Library in a tool for
|
|
||||||
writing it). Whether that is true depends on what the Library does
|
|
||||||
and what the program that uses the Library does.
|
|
||||||
|
|
||||||
1. You may copy and distribute verbatim copies of the Library's
|
|
||||||
complete source code as you receive it, in any medium, provided that
|
|
||||||
you conspicuously and appropriately publish on each copy an
|
|
||||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
|
||||||
all the notices that refer to this License and to the absence of any
|
|
||||||
warranty; and distribute a copy of this License along with the
|
|
||||||
Library.
|
|
||||||
|
|
||||||
You may charge a fee for the physical act of transferring a copy,
|
|
||||||
and you may at your option offer warranty protection in exchange for a
|
|
||||||
fee.
|
|
||||||
|
|
||||||
2. You may modify your copy or copies of the Library or any portion
|
|
||||||
of it, thus forming a work based on the Library, and copy and
|
|
||||||
distribute such modifications or work under the terms of Section 1
|
|
||||||
above, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The modified work must itself be a software library.
|
|
||||||
|
|
||||||
b) You must cause the files modified to carry prominent notices
|
|
||||||
stating that you changed the files and the date of any change.
|
|
||||||
|
|
||||||
c) You must cause the whole of the work to be licensed at no
|
|
||||||
charge to all third parties under the terms of this License.
|
|
||||||
|
|
||||||
d) If a facility in the modified Library refers to a function or a
|
|
||||||
table of data to be supplied by an application program that uses
|
|
||||||
the facility, other than as an argument passed when the facility
|
|
||||||
is invoked, then you must make a good faith effort to ensure that,
|
|
||||||
in the event an application does not supply such function or
|
|
||||||
table, the facility still operates, and performs whatever part of
|
|
||||||
its purpose remains meaningful.
|
|
||||||
|
|
||||||
(For example, a function in a library to compute square roots has
|
|
||||||
a purpose that is entirely well-defined independent of the
|
|
||||||
application. Therefore, Subsection 2d requires that any
|
|
||||||
application-supplied function or table used by this function must
|
|
||||||
be optional: if the application does not supply it, the square
|
|
||||||
root function must still compute square roots.)
|
|
||||||
|
|
||||||
These requirements apply to the modified work as a whole. If
|
|
||||||
identifiable sections of that work are not derived from the Library,
|
|
||||||
and can be reasonably considered independent and separate works in
|
|
||||||
themselves, then this License, and its terms, do not apply to those
|
|
||||||
sections when you distribute them as separate works. But when you
|
|
||||||
distribute the same sections as part of a whole which is a work based
|
|
||||||
on the Library, the distribution of the whole must be on the terms of
|
|
||||||
this License, whose permissions for other licensees extend to the
|
|
||||||
entire whole, and thus to each and every part regardless of who wrote
|
|
||||||
it.
|
|
||||||
|
|
||||||
Thus, it is not the intent of this section to claim rights or contest
|
|
||||||
your rights to work written entirely by you; rather, the intent is to
|
|
||||||
exercise the right to control the distribution of derivative or
|
|
||||||
collective works based on the Library.
|
|
||||||
|
|
||||||
In addition, mere aggregation of another work not based on the Library
|
|
||||||
with the Library (or with a work based on the Library) on a volume of
|
|
||||||
a storage or distribution medium does not bring the other work under
|
|
||||||
the scope of this License.
|
|
||||||
|
|
||||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
|
||||||
License instead of this License to a given copy of the Library. To do
|
|
||||||
this, you must alter all the notices that refer to this License, so
|
|
||||||
that they refer to the ordinary GNU General Public License, version 2,
|
|
||||||
instead of to this License. (If a newer version than version 2 of the
|
|
||||||
ordinary GNU General Public License has appeared, then you can specify
|
|
||||||
that version instead if you wish.) Do not make any other change in
|
|
||||||
these notices.
|
|
||||||
|
|
||||||
Once this change is made in a given copy, it is irreversible for
|
|
||||||
that copy, so the ordinary GNU General Public License applies to all
|
|
||||||
subsequent copies and derivative works made from that copy.
|
|
||||||
|
|
||||||
This option is useful when you wish to copy part of the code of
|
|
||||||
the Library into a program that is not a library.
|
|
||||||
|
|
||||||
4. You may copy and distribute the Library (or a portion or
|
|
||||||
derivative of it, under Section 2) in object code or executable form
|
|
||||||
under the terms of Sections 1 and 2 above provided that you accompany
|
|
||||||
it with the complete corresponding machine-readable source code, which
|
|
||||||
must be distributed under the terms of Sections 1 and 2 above on a
|
|
||||||
medium customarily used for software interchange.
|
|
||||||
|
|
||||||
If distribution of object code is made by offering access to copy
|
|
||||||
from a designated place, then offering equivalent access to copy the
|
|
||||||
source code from the same place satisfies the requirement to
|
|
||||||
distribute the source code, even though third parties are not
|
|
||||||
compelled to copy the source along with the object code.
|
|
||||||
|
|
||||||
5. A program that contains no derivative of any portion of the
|
|
||||||
Library, but is designed to work with the Library by being compiled or
|
|
||||||
linked with it, is called a "work that uses the Library". Such a
|
|
||||||
work, in isolation, is not a derivative work of the Library, and
|
|
||||||
therefore falls outside the scope of this License.
|
|
||||||
|
|
||||||
However, linking a "work that uses the Library" with the Library
|
|
||||||
creates an executable that is a derivative of the Library (because it
|
|
||||||
contains portions of the Library), rather than a "work that uses the
|
|
||||||
library". The executable is therefore covered by this License.
|
|
||||||
Section 6 states terms for distribution of such executables.
|
|
||||||
|
|
||||||
When a "work that uses the Library" uses material from a header file
|
|
||||||
that is part of the Library, the object code for the work may be a
|
|
||||||
derivative work of the Library even though the source code is not.
|
|
||||||
Whether this is true is especially significant if the work can be
|
|
||||||
linked without the Library, or if the work is itself a library. The
|
|
||||||
threshold for this to be true is not precisely defined by law.
|
|
||||||
|
|
||||||
If such an object file uses only numerical parameters, data
|
|
||||||
structure layouts and accessors, and small macros and small inline
|
|
||||||
functions (ten lines or less in length), then the use of the object
|
|
||||||
file is unrestricted, regardless of whether it is legally a derivative
|
|
||||||
work. (Executables containing this object code plus portions of the
|
|
||||||
Library will still fall under Section 6.)
|
|
||||||
|
|
||||||
Otherwise, if the work is a derivative of the Library, you may
|
|
||||||
distribute the object code for the work under the terms of Section 6.
|
|
||||||
Any executables containing that work also fall under Section 6,
|
|
||||||
whether or not they are linked directly with the Library itself.
|
|
||||||
|
|
||||||
6. As an exception to the Sections above, you may also combine or
|
|
||||||
link a "work that uses the Library" with the Library to produce a
|
|
||||||
work containing portions of the Library, and distribute that work
|
|
||||||
under terms of your choice, provided that the terms permit
|
|
||||||
modification of the work for the customer's own use and reverse
|
|
||||||
engineering for debugging such modifications.
|
|
||||||
|
|
||||||
You must give prominent notice with each copy of the work that the
|
|
||||||
Library is used in it and that the Library and its use are covered by
|
|
||||||
this License. You must supply a copy of this License. If the work
|
|
||||||
during execution displays copyright notices, you must include the
|
|
||||||
copyright notice for the Library among them, as well as a reference
|
|
||||||
directing the user to the copy of this License. Also, you must do one
|
|
||||||
of these things:
|
|
||||||
|
|
||||||
a) Accompany the work with the complete corresponding
|
|
||||||
machine-readable source code for the Library including whatever
|
|
||||||
changes were used in the work (which must be distributed under
|
|
||||||
Sections 1 and 2 above); and, if the work is an executable linked
|
|
||||||
with the Library, with the complete machine-readable "work that
|
|
||||||
uses the Library", as object code and/or source code, so that the
|
|
||||||
user can modify the Library and then relink to produce a modified
|
|
||||||
executable containing the modified Library. (It is understood
|
|
||||||
that the user who changes the contents of definitions files in the
|
|
||||||
Library will not necessarily be able to recompile the application
|
|
||||||
to use the modified definitions.)
|
|
||||||
|
|
||||||
b) Use a suitable shared library mechanism for linking with the
|
|
||||||
Library. A suitable mechanism is one that (1) uses at run time a
|
|
||||||
copy of the library already present on the user's computer system,
|
|
||||||
rather than copying library functions into the executable, and (2)
|
|
||||||
will operate properly with a modified version of the library, if
|
|
||||||
the user installs one, as long as the modified version is
|
|
||||||
interface-compatible with the version that the work was made with.
|
|
||||||
|
|
||||||
c) Accompany the work with a written offer, valid for at
|
|
||||||
least three years, to give the same user the materials
|
|
||||||
specified in Subsection 6a, above, for a charge no more
|
|
||||||
than the cost of performing this distribution.
|
|
||||||
|
|
||||||
d) If distribution of the work is made by offering access to copy
|
|
||||||
from a designated place, offer equivalent access to copy the above
|
|
||||||
specified materials from the same place.
|
|
||||||
|
|
||||||
e) Verify that the user has already received a copy of these
|
|
||||||
materials or that you have already sent this user a copy.
|
|
||||||
|
|
||||||
For an executable, the required form of the "work that uses the
|
|
||||||
Library" must include any data and utility programs needed for
|
|
||||||
reproducing the executable from it. However, as a special exception,
|
|
||||||
the materials to be distributed need not include anything that is
|
|
||||||
normally distributed (in either source or binary form) with the major
|
|
||||||
components (compiler, kernel, and so on) of the operating system on
|
|
||||||
which the executable runs, unless that component itself accompanies
|
|
||||||
the executable.
|
|
||||||
|
|
||||||
It may happen that this requirement contradicts the license
|
|
||||||
restrictions of other proprietary libraries that do not normally
|
|
||||||
accompany the operating system. Such a contradiction means you cannot
|
|
||||||
use both them and the Library together in an executable that you
|
|
||||||
distribute.
|
|
||||||
|
|
||||||
7. You may place library facilities that are a work based on the
|
|
||||||
Library side-by-side in a single library together with other library
|
|
||||||
facilities not covered by this License, and distribute such a combined
|
|
||||||
library, provided that the separate distribution of the work based on
|
|
||||||
the Library and of the other library facilities is otherwise
|
|
||||||
permitted, and provided that you do these two things:
|
|
||||||
|
|
||||||
a) Accompany the combined library with a copy of the same work
|
|
||||||
based on the Library, uncombined with any other library
|
|
||||||
facilities. This must be distributed under the terms of the
|
|
||||||
Sections above.
|
|
||||||
|
|
||||||
b) Give prominent notice with the combined library of the fact
|
|
||||||
that part of it is a work based on the Library, and explaining
|
|
||||||
where to find the accompanying uncombined form of the same work.
|
|
||||||
|
|
||||||
8. You may not copy, modify, sublicense, link with, or distribute
|
|
||||||
the Library except as expressly provided under this License. Any
|
|
||||||
attempt otherwise to copy, modify, sublicense, link with, or
|
|
||||||
distribute the Library is void, and will automatically terminate your
|
|
||||||
rights under this License. However, parties who have received copies,
|
|
||||||
or rights, from you under this License will not have their licenses
|
|
||||||
terminated so long as such parties remain in full compliance.
|
|
||||||
|
|
||||||
9. You are not required to accept this License, since you have not
|
|
||||||
signed it. However, nothing else grants you permission to modify or
|
|
||||||
distribute the Library or its derivative works. These actions are
|
|
||||||
prohibited by law if you do not accept this License. Therefore, by
|
|
||||||
modifying or distributing the Library (or any work based on the
|
|
||||||
Library), you indicate your acceptance of this License to do so, and
|
|
||||||
all its terms and conditions for copying, distributing or modifying
|
|
||||||
the Library or works based on it.
|
|
||||||
|
|
||||||
10. Each time you redistribute the Library (or any work based on the
|
|
||||||
Library), the recipient automatically receives a license from the
|
|
||||||
original licensor to copy, distribute, link with or modify the Library
|
|
||||||
subject to these terms and conditions. You may not impose any further
|
|
||||||
restrictions on the recipients' exercise of the rights granted herein.
|
|
||||||
You are not responsible for enforcing compliance by third parties with
|
|
||||||
this License.
|
|
||||||
|
|
||||||
11. If, as a consequence of a court judgment or allegation of patent
|
|
||||||
infringement or for any other reason (not limited to patent issues),
|
|
||||||
conditions are imposed on you (whether by court order, agreement or
|
|
||||||
otherwise) that contradict the conditions of this License, they do not
|
|
||||||
excuse you from the conditions of this License. If you cannot
|
|
||||||
distribute so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you
|
|
||||||
may not distribute the Library at all. For example, if a patent
|
|
||||||
license would not permit royalty-free redistribution of the Library by
|
|
||||||
all those who receive copies directly or indirectly through you, then
|
|
||||||
the only way you could satisfy both it and this License would be to
|
|
||||||
refrain entirely from distribution of the Library.
|
|
||||||
|
|
||||||
If any portion of this section is held invalid or unenforceable under any
|
|
||||||
particular circumstance, the balance of the section is intended to apply,
|
|
||||||
and the section as a whole is intended to apply in other circumstances.
|
|
||||||
|
|
||||||
It is not the purpose of this section to induce you to infringe any
|
|
||||||
patents or other property right claims or to contest validity of any
|
|
||||||
such claims; this section has the sole purpose of protecting the
|
|
||||||
integrity of the free software distribution system which is
|
|
||||||
implemented by public license practices. Many people have made
|
|
||||||
generous contributions to the wide range of software distributed
|
|
||||||
through that system in reliance on consistent application of that
|
|
||||||
system; it is up to the author/donor to decide if he or she is willing
|
|
||||||
to distribute software through any other system and a licensee cannot
|
|
||||||
impose that choice.
|
|
||||||
|
|
||||||
This section is intended to make thoroughly clear what is believed to
|
|
||||||
be a consequence of the rest of this License.
|
|
||||||
|
|
||||||
12. If the distribution and/or use of the Library is restricted in
|
|
||||||
certain countries either by patents or by copyrighted interfaces, the
|
|
||||||
original copyright holder who places the Library under this License may add
|
|
||||||
an explicit geographical distribution limitation excluding those countries,
|
|
||||||
so that distribution is permitted only in or among countries not thus
|
|
||||||
excluded. In such case, this License incorporates the limitation as if
|
|
||||||
written in the body of this License.
|
|
||||||
|
|
||||||
13. The Free Software Foundation may publish revised and/or new
|
|
||||||
versions of the Lesser General Public License from time to time.
|
|
||||||
Such new versions will be similar in spirit to the present version,
|
|
||||||
but may differ in detail to address new problems or concerns.
|
|
||||||
|
|
||||||
Each version is given a distinguishing version number. If the Library
|
|
||||||
specifies a version number of this License which applies to it and
|
|
||||||
"any later version", you have the option of following the terms and
|
|
||||||
conditions either of that version or of any later version published by
|
|
||||||
the Free Software Foundation. If the Library does not specify a
|
|
||||||
license version number, you may choose any version ever published by
|
|
||||||
the Free Software Foundation.
|
|
||||||
|
|
||||||
14. If you wish to incorporate parts of the Library into other free
|
|
||||||
programs whose distribution conditions are incompatible with these,
|
|
||||||
write to the author to ask for permission. For software which is
|
|
||||||
copyrighted by the Free Software Foundation, write to the Free
|
|
||||||
Software Foundation; we sometimes make exceptions for this. Our
|
|
||||||
decision will be guided by the two goals of preserving the free status
|
|
||||||
of all derivatives of our free software and of promoting the sharing
|
|
||||||
and reuse of software generally.
|
|
||||||
|
|
||||||
NO WARRANTY
|
|
||||||
|
|
||||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
|
||||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
|
||||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
|
||||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
|
||||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
|
||||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
|
||||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
|
||||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
|
||||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
|
||||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
|
||||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
|
||||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
|
||||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
|
||||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
|
||||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
||||||
DAMAGES.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Libraries
|
|
||||||
|
|
||||||
If you develop a new library, and you want it to be of the greatest
|
|
||||||
possible use to the public, we recommend making it free software that
|
|
||||||
everyone can redistribute and change. You can do so by permitting
|
|
||||||
redistribution under these terms (or, alternatively, under the terms of the
|
|
||||||
ordinary General Public License).
|
|
||||||
|
|
||||||
To apply these terms, attach the following notices to the library. It is
|
|
||||||
safest to attach them to the start of each source file to most effectively
|
|
||||||
convey the exclusion of warranty; and each file should have at least the
|
|
||||||
"copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the library's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Lesser General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2.1 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This library is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
Lesser General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public
|
|
||||||
License along with this library; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or your
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
|
||||||
necessary. Here is a sample; alter the names:
|
|
||||||
|
|
||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
|
||||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
|
||||||
|
|
||||||
<signature of Ty Coon>, 1 April 1990
|
|
||||||
Ty Coon, President of Vice
|
|
||||||
|
|
||||||
That's all there is to it!
|
|
||||||
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
|||||||
input.radio {border:1px none #000; background:transparent; vertical-align:middle;}
|
|
||||||
.panel_wrapper div.current {height:80px;}
|
|
||||||
#width {width:50px; vertical-align:middle;}
|
|
||||||
#width2 {width:50px; vertical-align:middle;}
|
|
||||||
#size {width:100px;}
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})();
|
|
@ -1,57 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
tinymce.create('tinymce.plugins.AdvancedHRPlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
// Register commands
|
|
||||||
ed.addCommand('mceAdvancedHr', function() {
|
|
||||||
ed.windowManager.open({
|
|
||||||
file : url + '/rule.htm',
|
|
||||||
width : 250 + parseInt(ed.getLang('advhr.delta_width', 0)),
|
|
||||||
height : 160 + parseInt(ed.getLang('advhr.delta_height', 0)),
|
|
||||||
inline : 1
|
|
||||||
}, {
|
|
||||||
plugin_url : url
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register buttons
|
|
||||||
ed.addButton('advhr', {
|
|
||||||
title : 'advhr.advhr_desc',
|
|
||||||
cmd : 'mceAdvancedHr'
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onNodeChange.add(function(ed, cm, n) {
|
|
||||||
cm.setActive('advhr', n.nodeName == 'HR');
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onClick.add(function(ed, e) {
|
|
||||||
e = e.target;
|
|
||||||
|
|
||||||
if (e.nodeName === 'HR')
|
|
||||||
ed.selection.select(e);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Advanced HR',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('advhr', tinymce.plugins.AdvancedHRPlugin);
|
|
||||||
})();
|
|
@ -1,43 +0,0 @@
|
|||||||
var AdvHRDialog = {
|
|
||||||
init : function(ed) {
|
|
||||||
var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w;
|
|
||||||
|
|
||||||
w = dom.getAttrib(n, 'width');
|
|
||||||
f.width.value = w ? parseInt(w) : (dom.getStyle('width') || '');
|
|
||||||
f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || '';
|
|
||||||
f.noshade.checked = !!dom.getAttrib(n, 'noshade') || !!dom.getStyle('border-width');
|
|
||||||
selectByValue(f, 'width2', w.indexOf('%') != -1 ? '%' : 'px');
|
|
||||||
},
|
|
||||||
|
|
||||||
update : function() {
|
|
||||||
var ed = tinyMCEPopup.editor, h, f = document.forms[0], st = '';
|
|
||||||
|
|
||||||
h = '<hr';
|
|
||||||
|
|
||||||
if (f.size.value) {
|
|
||||||
h += ' size="' + f.size.value + '"';
|
|
||||||
st += ' height:' + f.size.value + 'px;';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f.width.value) {
|
|
||||||
h += ' width="' + f.width.value + (f.width2.value == '%' ? '%' : '') + '"';
|
|
||||||
st += ' width:' + f.width.value + (f.width2.value == '%' ? '%' : 'px') + ';';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f.noshade.checked) {
|
|
||||||
h += ' noshade="noshade"';
|
|
||||||
st += ' border-width: 1px; border-style: solid; border-color: #CCCCCC; color: #ffffff;';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ed.settings.inline_styles)
|
|
||||||
h += ' style="' + tinymce.trim(st) + '"';
|
|
||||||
|
|
||||||
h += ' />';
|
|
||||||
|
|
||||||
ed.execCommand("mceInsertContent", false, h);
|
|
||||||
tinyMCEPopup.close();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
tinyMCEPopup.requireLangPack();
|
|
||||||
tinyMCEPopup.onInit.add(AdvHRDialog.init, AdvHRDialog);
|
|
@ -1,5 +0,0 @@
|
|||||||
tinyMCE.addI18n('en.advhr_dlg',{
|
|
||||||
width:"Width",
|
|
||||||
size:"Height",
|
|
||||||
noshade:"No shadow"
|
|
||||||
});
|
|
@ -1,57 +0,0 @@
|
|||||||
<!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>
|
|
||||||
<title>{#advhr.advhr_desc}</title>
|
|
||||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
|
||||||
<script type="text/javascript" src="js/rule.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/form_utils.js"></script>
|
|
||||||
<link href="css/advhr.css" rel="stylesheet" type="text/css" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<form onsubmit="AdvHRDialog.update();return false;" action="#">
|
|
||||||
<div class="tabs">
|
|
||||||
<ul>
|
|
||||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advhr.advhr_desc}</a></span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="panel_wrapper">
|
|
||||||
<div id="general_panel" class="panel current">
|
|
||||||
<table border="0" cellpadding="4" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td><label for="width">{#advhr_dlg.width}</label></td>
|
|
||||||
<td class="nowrap">
|
|
||||||
<input id="width" name="width" type="text" value="" class="mceFocus" />
|
|
||||||
<select name="width2" id="width2">
|
|
||||||
<option value="">px</option>
|
|
||||||
<option value="%">%</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label for="size">{#advhr_dlg.size}</label></td>
|
|
||||||
<td><select id="size" name="size">
|
|
||||||
<option value="">Normal</option>
|
|
||||||
<option value="1">1</option>
|
|
||||||
<option value="2">2</option>
|
|
||||||
<option value="3">3</option>
|
|
||||||
<option value="4">4</option>
|
|
||||||
<option value="5">5</option>
|
|
||||||
</select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label for="noshade">{#advhr_dlg.noshade}</label></td>
|
|
||||||
<td><input type="checkbox" name="noshade" id="noshade" class="radio" /></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mceActionPanel">
|
|
||||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
|
||||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,13 +0,0 @@
|
|||||||
#src_list, #over_list, #out_list {width:280px;}
|
|
||||||
.mceActionPanel {margin-top:7px;}
|
|
||||||
.alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;}
|
|
||||||
.checkbox {border:0;}
|
|
||||||
.panel_wrapper div.current {height:305px;}
|
|
||||||
#prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;}
|
|
||||||
#align, #classlist {width:150px;}
|
|
||||||
#width, #height {vertical-align:middle; width:50px; text-align:center;}
|
|
||||||
#vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;}
|
|
||||||
#class_list {width:180px;}
|
|
||||||
input {width: 280px;}
|
|
||||||
#constrain, #onmousemovecheck {width:auto;}
|
|
||||||
#id, #dir, #lang, #usemap, #longdesc {width:200px;}
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.AdvancedImagePlugin",{init:function(a,b){a.addCommand("mceAdvImage",function(){if(a.dom.getAttrib(a.selection.getNode(),"class").indexOf("mceItem")!=-1){return}a.windowManager.open({file:b+"/image.htm",width:480+parseInt(a.getLang("advimage.delta_width",0)),height:385+parseInt(a.getLang("advimage.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("image",{title:"advimage.image_desc",cmd:"mceAdvImage"})},getInfo:function(){return{longname:"Advanced image",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advimage",tinymce.plugins.AdvancedImagePlugin)})();
|
|
@ -1,50 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
tinymce.create('tinymce.plugins.AdvancedImagePlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
// Register commands
|
|
||||||
ed.addCommand('mceAdvImage', function() {
|
|
||||||
// Internal image object like a flash placeholder
|
|
||||||
if (ed.dom.getAttrib(ed.selection.getNode(), 'class').indexOf('mceItem') != -1)
|
|
||||||
return;
|
|
||||||
|
|
||||||
ed.windowManager.open({
|
|
||||||
file : url + '/image.htm',
|
|
||||||
width : 480 + parseInt(ed.getLang('advimage.delta_width', 0)),
|
|
||||||
height : 385 + parseInt(ed.getLang('advimage.delta_height', 0)),
|
|
||||||
inline : 1
|
|
||||||
}, {
|
|
||||||
plugin_url : url
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register buttons
|
|
||||||
ed.addButton('image', {
|
|
||||||
title : 'advimage.image_desc',
|
|
||||||
cmd : 'mceAdvImage'
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Advanced image',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('advimage', tinymce.plugins.AdvancedImagePlugin);
|
|
||||||
})();
|
|
@ -1,232 +0,0 @@
|
|||||||
<!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>
|
|
||||||
<title>{#advimage_dlg.dialog_title}</title>
|
|
||||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/form_utils.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/validate.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/editable_selects.js"></script>
|
|
||||||
<script type="text/javascript" src="js/image.js"></script>
|
|
||||||
<link href="css/advimage.css" rel="stylesheet" type="text/css" />
|
|
||||||
</head>
|
|
||||||
<body id="advimage" style="display: none">
|
|
||||||
<form onsubmit="ImageDialog.insert();return false;" action="#">
|
|
||||||
<div class="tabs">
|
|
||||||
<ul>
|
|
||||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advimage_dlg.tab_general}</a></span></li>
|
|
||||||
<li id="appearance_tab"><span><a href="javascript:mcTabs.displayTab('appearance_tab','appearance_panel');" onmousedown="return false;">{#advimage_dlg.tab_appearance}</a></span></li>
|
|
||||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advimage_dlg.tab_advanced}</a></span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="panel_wrapper">
|
|
||||||
<div id="general_panel" class="panel current">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advimage_dlg.general}</legend>
|
|
||||||
|
|
||||||
<table class="properties">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="srclabel" for="src">{#advimage_dlg.src}</label></td>
|
|
||||||
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input name="src" type="text" id="src" value="" class="mceFocus" onchange="ImageDialog.showPreviewImage(this.value);" /></td>
|
|
||||||
<td id="srcbrowsercontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label for="src_list">{#advimage_dlg.image_list}</label></td>
|
|
||||||
<td><select id="src_list" name="src_list" onchange="document.getElementById('src').value=this.options[this.selectedIndex].value;document.getElementById('alt').value=this.options[this.selectedIndex].text;document.getElementById('title').value=this.options[this.selectedIndex].text;ImageDialog.showPreviewImage(this.options[this.selectedIndex].value);"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="altlabel" for="alt">{#advimage_dlg.alt}</label></td>
|
|
||||||
<td colspan="2"><input id="alt" name="alt" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="titlelabel" for="title">{#advimage_dlg.title}</label></td>
|
|
||||||
<td colspan="2"><input id="title" name="title" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advimage_dlg.preview}</legend>
|
|
||||||
<div id="prev"></div>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="appearance_panel" class="panel">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advimage_dlg.tab_appearance}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="4" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="alignlabel" for="align">{#advimage_dlg.align}</label></td>
|
|
||||||
<td><select id="align" name="align" onchange="ImageDialog.updateStyle('align');ImageDialog.changeAppearance();">
|
|
||||||
<option value="">{#not_set}</option>
|
|
||||||
<option value="baseline">{#advimage_dlg.align_baseline}</option>
|
|
||||||
<option value="top">{#advimage_dlg.align_top}</option>
|
|
||||||
<option value="middle">{#advimage_dlg.align_middle}</option>
|
|
||||||
<option value="bottom">{#advimage_dlg.align_bottom}</option>
|
|
||||||
<option value="text-top">{#advimage_dlg.align_texttop}</option>
|
|
||||||
<option value="text-bottom">{#advimage_dlg.align_textbottom}</option>
|
|
||||||
<option value="left">{#advimage_dlg.align_left}</option>
|
|
||||||
<option value="right">{#advimage_dlg.align_right}</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
<td rowspan="6" valign="top">
|
|
||||||
<div class="alignPreview">
|
|
||||||
<img id="alignSampleImg" src="img/sample.gif" alt="{#advimage_dlg.example_img}" />
|
|
||||||
Lorem ipsum, Dolor sit amet, consectetuer adipiscing loreum ipsum edipiscing elit, sed diam
|
|
||||||
nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Loreum ipsum
|
|
||||||
edipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam
|
|
||||||
erat volutpat.
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="widthlabel" for="width">{#advimage_dlg.dimensions}</label></td>
|
|
||||||
<td class="nowrap">
|
|
||||||
<input name="width" type="text" id="width" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeHeight();" /> x
|
|
||||||
<input name="height" type="text" id="height" value="" size="5" maxlength="5" class="size" onchange="ImageDialog.changeWidth();" /> px
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td> </td>
|
|
||||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td><input id="constrain" type="checkbox" name="constrain" class="checkbox" /></td>
|
|
||||||
<td><label id="constrainlabel" for="constrain">{#advimage_dlg.constrain_proportions}</label></td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="vspacelabel" for="vspace">{#advimage_dlg.vspace}</label></td>
|
|
||||||
<td><input name="vspace" type="text" id="vspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('vspace');ImageDialog.changeAppearance();" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="hspacelabel" for="hspace">{#advimage_dlg.hspace}</label></td>
|
|
||||||
<td><input name="hspace" type="text" id="hspace" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('hspace');ImageDialog.changeAppearance();" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="borderlabel" for="border">{#advimage_dlg.border}</label></td>
|
|
||||||
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3" class="number" onchange="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" onblur="ImageDialog.updateStyle('border');ImageDialog.changeAppearance();" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label for="class_list">{#class_name}</label></td>
|
|
||||||
<td colspan="2"><select id="class_list" name="class_list" class="mceEditableSelect"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="stylelabel" for="style">{#advimage_dlg.style}</label></td>
|
|
||||||
<td colspan="2"><input id="style" name="style" type="text" value="" onchange="ImageDialog.changeAppearance();" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<!-- <tr>
|
|
||||||
<td class="column1"><label id="classeslabel" for="classes">{#advimage_dlg.classes}</label></td>
|
|
||||||
<td colspan="2"><input id="classes" name="classes" type="text" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td>
|
|
||||||
</tr> -->
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="advanced_panel" class="panel">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advimage_dlg.swap_image}</legend>
|
|
||||||
|
|
||||||
<input type="checkbox" id="onmousemovecheck" name="onmousemovecheck" class="checkbox" onclick="ImageDialog.setSwapImage(this.checked);" />
|
|
||||||
<label id="onmousemovechecklabel" for="onmousemovecheck">{#advimage_dlg.alt_image}</label>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="4" cellspacing="0" width="100%">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="onmouseoversrclabel" for="onmouseoversrc">{#advimage_dlg.mouseover}</label></td>
|
|
||||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input id="onmouseoversrc" name="onmouseoversrc" type="text" value="" /></td>
|
|
||||||
<td id="onmouseoversrccontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label for="over_list">{#advimage_dlg.image_list}</label></td>
|
|
||||||
<td><select id="over_list" name="over_list" onchange="document.getElementById('onmouseoversrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="onmouseoutsrclabel" for="onmouseoutsrc">{#advimage_dlg.mouseout}</label></td>
|
|
||||||
<td class="column2"><table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input id="onmouseoutsrc" name="onmouseoutsrc" type="text" value="" /></td>
|
|
||||||
<td id="onmouseoutsrccontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label for="out_list">{#advimage_dlg.image_list}</label></td>
|
|
||||||
<td><select id="out_list" name="out_list" onchange="document.getElementById('onmouseoutsrc').value=this.options[this.selectedIndex].value;"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advimage_dlg.misc}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="4" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="idlabel" for="id">{#advimage_dlg.id}</label></td>
|
|
||||||
<td><input id="id" name="id" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="dirlabel" for="dir">{#advimage_dlg.langdir}</label></td>
|
|
||||||
<td>
|
|
||||||
<select id="dir" name="dir" onchange="ImageDialog.changeAppearance();">
|
|
||||||
<option value="">{#not_set}</option>
|
|
||||||
<option value="ltr">{#advimage_dlg.ltr}</option>
|
|
||||||
<option value="rtl">{#advimage_dlg.rtl}</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="langlabel" for="lang">{#advimage_dlg.langcode}</label></td>
|
|
||||||
<td>
|
|
||||||
<input id="lang" name="lang" type="text" value="" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="usemaplabel" for="usemap">{#advimage_dlg.map}</label></td>
|
|
||||||
<td>
|
|
||||||
<input id="usemap" name="usemap" type="text" value="" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="longdesclabel" for="longdesc">{#advimage_dlg.long_desc}</label></td>
|
|
||||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input id="longdesc" name="longdesc" type="text" value="" /></td>
|
|
||||||
<td id="longdesccontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mceActionPanel">
|
|
||||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
|
||||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,445 +0,0 @@
|
|||||||
var ImageDialog = {
|
|
||||||
preInit : function() {
|
|
||||||
var url;
|
|
||||||
|
|
||||||
tinyMCEPopup.requireLangPack();
|
|
||||||
|
|
||||||
if (url = tinyMCEPopup.getParam("external_image_list_url"))
|
|
||||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
|
||||||
},
|
|
||||||
|
|
||||||
init : function(ed) {
|
|
||||||
var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, dom = ed.dom, n = ed.selection.getNode();
|
|
||||||
|
|
||||||
tinyMCEPopup.resizeToInnerSize();
|
|
||||||
this.fillClassList('class_list');
|
|
||||||
this.fillFileList('src_list', 'tinyMCEImageList');
|
|
||||||
this.fillFileList('over_list', 'tinyMCEImageList');
|
|
||||||
this.fillFileList('out_list', 'tinyMCEImageList');
|
|
||||||
TinyMCE_EditableSelects.init();
|
|
||||||
|
|
||||||
if (n.nodeName == 'IMG') {
|
|
||||||
nl.src.value = dom.getAttrib(n, 'src');
|
|
||||||
nl.width.value = dom.getAttrib(n, 'width');
|
|
||||||
nl.height.value = dom.getAttrib(n, 'height');
|
|
||||||
nl.alt.value = dom.getAttrib(n, 'alt');
|
|
||||||
nl.title.value = dom.getAttrib(n, 'title');
|
|
||||||
nl.vspace.value = this.getAttrib(n, 'vspace');
|
|
||||||
nl.hspace.value = this.getAttrib(n, 'hspace');
|
|
||||||
nl.border.value = this.getAttrib(n, 'border');
|
|
||||||
selectByValue(f, 'align', this.getAttrib(n, 'align'));
|
|
||||||
selectByValue(f, 'class_list', dom.getAttrib(n, 'class'), true, true);
|
|
||||||
nl.style.value = dom.getAttrib(n, 'style');
|
|
||||||
nl.id.value = dom.getAttrib(n, 'id');
|
|
||||||
nl.dir.value = dom.getAttrib(n, 'dir');
|
|
||||||
nl.lang.value = dom.getAttrib(n, 'lang');
|
|
||||||
nl.usemap.value = dom.getAttrib(n, 'usemap');
|
|
||||||
nl.longdesc.value = dom.getAttrib(n, 'longdesc');
|
|
||||||
nl.insert.value = ed.getLang('update');
|
|
||||||
|
|
||||||
if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseover')))
|
|
||||||
nl.onmouseoversrc.value = dom.getAttrib(n, 'onmouseover').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1');
|
|
||||||
|
|
||||||
if (/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/.test(dom.getAttrib(n, 'onmouseout')))
|
|
||||||
nl.onmouseoutsrc.value = dom.getAttrib(n, 'onmouseout').replace(/^\s*this.src\s*=\s*\'([^\']+)\';?\s*$/, '$1');
|
|
||||||
|
|
||||||
if (ed.settings.inline_styles) {
|
|
||||||
// Move attribs to styles
|
|
||||||
if (dom.getAttrib(n, 'align'))
|
|
||||||
this.updateStyle('align');
|
|
||||||
|
|
||||||
if (dom.getAttrib(n, 'hspace'))
|
|
||||||
this.updateStyle('hspace');
|
|
||||||
|
|
||||||
if (dom.getAttrib(n, 'border'))
|
|
||||||
this.updateStyle('border');
|
|
||||||
|
|
||||||
if (dom.getAttrib(n, 'vspace'))
|
|
||||||
this.updateStyle('vspace');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Setup browse button
|
|
||||||
document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image');
|
|
||||||
if (isVisible('srcbrowser'))
|
|
||||||
document.getElementById('src').style.width = '260px';
|
|
||||||
|
|
||||||
// Setup browse button
|
|
||||||
document.getElementById('onmouseoversrccontainer').innerHTML = getBrowserHTML('overbrowser','onmouseoversrc','image','theme_advanced_image');
|
|
||||||
if (isVisible('overbrowser'))
|
|
||||||
document.getElementById('onmouseoversrc').style.width = '260px';
|
|
||||||
|
|
||||||
// Setup browse button
|
|
||||||
document.getElementById('onmouseoutsrccontainer').innerHTML = getBrowserHTML('outbrowser','onmouseoutsrc','image','theme_advanced_image');
|
|
||||||
if (isVisible('outbrowser'))
|
|
||||||
document.getElementById('onmouseoutsrc').style.width = '260px';
|
|
||||||
|
|
||||||
// If option enabled default contrain proportions to checked
|
|
||||||
if (ed.getParam("advimage_constrain_proportions", true))
|
|
||||||
f.constrain.checked = true;
|
|
||||||
|
|
||||||
// Check swap image if valid data
|
|
||||||
if (nl.onmouseoversrc.value || nl.onmouseoutsrc.value)
|
|
||||||
this.setSwapImage(true);
|
|
||||||
else
|
|
||||||
this.setSwapImage(false);
|
|
||||||
|
|
||||||
this.changeAppearance();
|
|
||||||
this.showPreviewImage(nl.src.value, 1);
|
|
||||||
},
|
|
||||||
|
|
||||||
insert : function(file, title) {
|
|
||||||
var ed = tinyMCEPopup.editor, t = this, f = document.forms[0];
|
|
||||||
|
|
||||||
if (f.src.value === '') {
|
|
||||||
if (ed.selection.getNode().nodeName == 'IMG') {
|
|
||||||
ed.dom.remove(ed.selection.getNode());
|
|
||||||
ed.execCommand('mceRepaint');
|
|
||||||
}
|
|
||||||
|
|
||||||
tinyMCEPopup.close();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tinyMCEPopup.getParam("accessibility_warnings", 1)) {
|
|
||||||
if (!f.alt.value) {
|
|
||||||
tinyMCEPopup.confirm(tinyMCEPopup.getLang('advimage_dlg.missing_alt'), function(s) {
|
|
||||||
if (s)
|
|
||||||
t.insertAndClose();
|
|
||||||
});
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
t.insertAndClose();
|
|
||||||
},
|
|
||||||
|
|
||||||
insertAndClose : function() {
|
|
||||||
var ed = tinyMCEPopup.editor, f = document.forms[0], nl = f.elements, v, args = {}, el;
|
|
||||||
|
|
||||||
tinyMCEPopup.restoreSelection();
|
|
||||||
|
|
||||||
// Fixes crash in Safari
|
|
||||||
if (tinymce.isWebKit)
|
|
||||||
ed.getWin().focus();
|
|
||||||
|
|
||||||
if (!ed.settings.inline_styles) {
|
|
||||||
args = {
|
|
||||||
vspace : nl.vspace.value,
|
|
||||||
hspace : nl.hspace.value,
|
|
||||||
border : nl.border.value,
|
|
||||||
align : getSelectValue(f, 'align')
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
// Remove deprecated values
|
|
||||||
args = {
|
|
||||||
vspace : '',
|
|
||||||
hspace : '',
|
|
||||||
border : '',
|
|
||||||
align : ''
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
tinymce.extend(args, {
|
|
||||||
src : nl.src.value.replace(/ /g, '%20'),
|
|
||||||
width : nl.width.value,
|
|
||||||
height : nl.height.value,
|
|
||||||
alt : nl.alt.value,
|
|
||||||
title : nl.title.value,
|
|
||||||
'class' : getSelectValue(f, 'class_list'),
|
|
||||||
style : nl.style.value,
|
|
||||||
id : nl.id.value,
|
|
||||||
dir : nl.dir.value,
|
|
||||||
lang : nl.lang.value,
|
|
||||||
usemap : nl.usemap.value,
|
|
||||||
longdesc : nl.longdesc.value
|
|
||||||
});
|
|
||||||
|
|
||||||
args.onmouseover = args.onmouseout = '';
|
|
||||||
|
|
||||||
if (f.onmousemovecheck.checked) {
|
|
||||||
if (nl.onmouseoversrc.value)
|
|
||||||
args.onmouseover = "this.src='" + nl.onmouseoversrc.value + "';";
|
|
||||||
|
|
||||||
if (nl.onmouseoutsrc.value)
|
|
||||||
args.onmouseout = "this.src='" + nl.onmouseoutsrc.value + "';";
|
|
||||||
}
|
|
||||||
|
|
||||||
el = ed.selection.getNode();
|
|
||||||
|
|
||||||
if (el && el.nodeName == 'IMG') {
|
|
||||||
ed.dom.setAttribs(el, args);
|
|
||||||
} else {
|
|
||||||
ed.execCommand('mceInsertContent', false, '<img id="__mce_tmp" />', {skip_undo : 1});
|
|
||||||
ed.dom.setAttribs('__mce_tmp', args);
|
|
||||||
ed.dom.setAttrib('__mce_tmp', 'id', '');
|
|
||||||
ed.undoManager.add();
|
|
||||||
}
|
|
||||||
|
|
||||||
tinyMCEPopup.editor.execCommand('mceRepaint');
|
|
||||||
tinyMCEPopup.editor.focus();
|
|
||||||
tinyMCEPopup.close();
|
|
||||||
},
|
|
||||||
|
|
||||||
getAttrib : function(e, at) {
|
|
||||||
var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2;
|
|
||||||
|
|
||||||
if (ed.settings.inline_styles) {
|
|
||||||
switch (at) {
|
|
||||||
case 'align':
|
|
||||||
if (v = dom.getStyle(e, 'float'))
|
|
||||||
return v;
|
|
||||||
|
|
||||||
if (v = dom.getStyle(e, 'vertical-align'))
|
|
||||||
return v;
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'hspace':
|
|
||||||
v = dom.getStyle(e, 'margin-left')
|
|
||||||
v2 = dom.getStyle(e, 'margin-right');
|
|
||||||
|
|
||||||
if (v && v == v2)
|
|
||||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'vspace':
|
|
||||||
v = dom.getStyle(e, 'margin-top')
|
|
||||||
v2 = dom.getStyle(e, 'margin-bottom');
|
|
||||||
if (v && v == v2)
|
|
||||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'border':
|
|
||||||
v = 0;
|
|
||||||
|
|
||||||
tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) {
|
|
||||||
sv = dom.getStyle(e, 'border-' + sv + '-width');
|
|
||||||
|
|
||||||
// False or not the same as prev
|
|
||||||
if (!sv || (sv != v && v !== 0)) {
|
|
||||||
v = 0;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sv)
|
|
||||||
v = sv;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (v)
|
|
||||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (v = dom.getAttrib(e, at))
|
|
||||||
return v;
|
|
||||||
|
|
||||||
return '';
|
|
||||||
},
|
|
||||||
|
|
||||||
setSwapImage : function(st) {
|
|
||||||
var f = document.forms[0];
|
|
||||||
|
|
||||||
f.onmousemovecheck.checked = st;
|
|
||||||
setBrowserDisabled('overbrowser', !st);
|
|
||||||
setBrowserDisabled('outbrowser', !st);
|
|
||||||
|
|
||||||
if (f.over_list)
|
|
||||||
f.over_list.disabled = !st;
|
|
||||||
|
|
||||||
if (f.out_list)
|
|
||||||
f.out_list.disabled = !st;
|
|
||||||
|
|
||||||
f.onmouseoversrc.disabled = !st;
|
|
||||||
f.onmouseoutsrc.disabled = !st;
|
|
||||||
},
|
|
||||||
|
|
||||||
fillClassList : function(id) {
|
|
||||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
|
||||||
|
|
||||||
if (v = tinyMCEPopup.getParam('theme_advanced_styles')) {
|
|
||||||
cl = [];
|
|
||||||
|
|
||||||
tinymce.each(v.split(';'), function(v) {
|
|
||||||
var p = v.split('=');
|
|
||||||
|
|
||||||
cl.push({'title' : p[0], 'class' : p[1]});
|
|
||||||
});
|
|
||||||
} else
|
|
||||||
cl = tinyMCEPopup.editor.dom.getClasses();
|
|
||||||
|
|
||||||
if (cl.length > 0) {
|
|
||||||
lst.options.length = 0;
|
|
||||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), '');
|
|
||||||
|
|
||||||
tinymce.each(cl, function(o) {
|
|
||||||
lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']);
|
|
||||||
});
|
|
||||||
} else
|
|
||||||
dom.remove(dom.getParent(id, 'tr'));
|
|
||||||
},
|
|
||||||
|
|
||||||
fillFileList : function(id, l) {
|
|
||||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
|
||||||
|
|
||||||
l = window[l];
|
|
||||||
lst.options.length = 0;
|
|
||||||
|
|
||||||
if (l && l.length > 0) {
|
|
||||||
lst.options[lst.options.length] = new Option('', '');
|
|
||||||
|
|
||||||
tinymce.each(l, function(o) {
|
|
||||||
lst.options[lst.options.length] = new Option(o[0], o[1]);
|
|
||||||
});
|
|
||||||
} else
|
|
||||||
dom.remove(dom.getParent(id, 'tr'));
|
|
||||||
},
|
|
||||||
|
|
||||||
resetImageData : function() {
|
|
||||||
var f = document.forms[0];
|
|
||||||
|
|
||||||
f.elements.width.value = f.elements.height.value = '';
|
|
||||||
},
|
|
||||||
|
|
||||||
updateImageData : function(img, st) {
|
|
||||||
var f = document.forms[0];
|
|
||||||
|
|
||||||
if (!st) {
|
|
||||||
f.elements.width.value = img.width;
|
|
||||||
f.elements.height.value = img.height;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.preloadImg = img;
|
|
||||||
},
|
|
||||||
|
|
||||||
changeAppearance : function() {
|
|
||||||
var ed = tinyMCEPopup.editor, f = document.forms[0], img = document.getElementById('alignSampleImg');
|
|
||||||
|
|
||||||
if (img) {
|
|
||||||
if (ed.getParam('inline_styles')) {
|
|
||||||
ed.dom.setAttrib(img, 'style', f.style.value);
|
|
||||||
} else {
|
|
||||||
img.align = f.align.value;
|
|
||||||
img.border = f.border.value;
|
|
||||||
img.hspace = f.hspace.value;
|
|
||||||
img.vspace = f.vspace.value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
changeHeight : function() {
|
|
||||||
var f = document.forms[0], tp, t = this;
|
|
||||||
|
|
||||||
if (!f.constrain.checked || !t.preloadImg) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f.width.value == "" || f.height.value == "")
|
|
||||||
return;
|
|
||||||
|
|
||||||
tp = (parseInt(f.width.value) / parseInt(t.preloadImg.width)) * t.preloadImg.height;
|
|
||||||
f.height.value = tp.toFixed(0);
|
|
||||||
},
|
|
||||||
|
|
||||||
changeWidth : function() {
|
|
||||||
var f = document.forms[0], tp, t = this;
|
|
||||||
|
|
||||||
if (!f.constrain.checked || !t.preloadImg) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f.width.value == "" || f.height.value == "")
|
|
||||||
return;
|
|
||||||
|
|
||||||
tp = (parseInt(f.height.value) / parseInt(t.preloadImg.height)) * t.preloadImg.width;
|
|
||||||
f.width.value = tp.toFixed(0);
|
|
||||||
},
|
|
||||||
|
|
||||||
updateStyle : function(ty) {
|
|
||||||
var dom = tinyMCEPopup.dom, st, v, f = document.forms[0], img = dom.create('img', {style : dom.get('style').value});
|
|
||||||
|
|
||||||
if (tinyMCEPopup.editor.settings.inline_styles) {
|
|
||||||
// Handle align
|
|
||||||
if (ty == 'align') {
|
|
||||||
dom.setStyle(img, 'float', '');
|
|
||||||
dom.setStyle(img, 'vertical-align', '');
|
|
||||||
|
|
||||||
v = getSelectValue(f, 'align');
|
|
||||||
if (v) {
|
|
||||||
if (v == 'left' || v == 'right')
|
|
||||||
dom.setStyle(img, 'float', v);
|
|
||||||
else
|
|
||||||
img.style.verticalAlign = v;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle border
|
|
||||||
if (ty == 'border') {
|
|
||||||
dom.setStyle(img, 'border', '');
|
|
||||||
|
|
||||||
v = f.border.value;
|
|
||||||
if (v || v == '0') {
|
|
||||||
if (v == '0')
|
|
||||||
img.style.border = '0';
|
|
||||||
else
|
|
||||||
img.style.border = v + 'px solid black';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle hspace
|
|
||||||
if (ty == 'hspace') {
|
|
||||||
dom.setStyle(img, 'marginLeft', '');
|
|
||||||
dom.setStyle(img, 'marginRight', '');
|
|
||||||
|
|
||||||
v = f.hspace.value;
|
|
||||||
if (v) {
|
|
||||||
img.style.marginLeft = v + 'px';
|
|
||||||
img.style.marginRight = v + 'px';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle vspace
|
|
||||||
if (ty == 'vspace') {
|
|
||||||
dom.setStyle(img, 'marginTop', '');
|
|
||||||
dom.setStyle(img, 'marginBottom', '');
|
|
||||||
|
|
||||||
v = f.vspace.value;
|
|
||||||
if (v) {
|
|
||||||
img.style.marginTop = v + 'px';
|
|
||||||
img.style.marginBottom = v + 'px';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Merge
|
|
||||||
dom.get('style').value = dom.serializeStyle(dom.parseStyle(img.style.cssText), 'img');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
changeMouseMove : function() {
|
|
||||||
},
|
|
||||||
|
|
||||||
showPreviewImage : function(u, st) {
|
|
||||||
if (!u) {
|
|
||||||
tinyMCEPopup.dom.setHTML('prev', '');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!st && tinyMCEPopup.getParam("advimage_update_dimensions_onchange", true))
|
|
||||||
this.resetImageData();
|
|
||||||
|
|
||||||
u = tinyMCEPopup.editor.documentBaseURI.toAbsolute(u);
|
|
||||||
|
|
||||||
if (!st)
|
|
||||||
tinyMCEPopup.dom.setHTML('prev', '<img id="previewImg" src="' + u + '" border="0" onload="ImageDialog.updateImageData(this);" onerror="ImageDialog.resetImageData();" />');
|
|
||||||
else
|
|
||||||
tinyMCEPopup.dom.setHTML('prev', '<img id="previewImg" src="' + u + '" border="0" onload="ImageDialog.updateImageData(this, 1);" />');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
ImageDialog.preInit();
|
|
||||||
tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog);
|
|
@ -1,43 +0,0 @@
|
|||||||
tinyMCE.addI18n('en.advimage_dlg',{
|
|
||||||
tab_general:"General",
|
|
||||||
tab_appearance:"Appearance",
|
|
||||||
tab_advanced:"Advanced",
|
|
||||||
general:"General",
|
|
||||||
title:"Title",
|
|
||||||
preview:"Preview",
|
|
||||||
constrain_proportions:"Constrain proportions",
|
|
||||||
langdir:"Language direction",
|
|
||||||
langcode:"Language code",
|
|
||||||
long_desc:"Long description link",
|
|
||||||
style:"Style",
|
|
||||||
classes:"Classes",
|
|
||||||
ltr:"Left to right",
|
|
||||||
rtl:"Right to left",
|
|
||||||
id:"Id",
|
|
||||||
map:"Image map",
|
|
||||||
swap_image:"Swap image",
|
|
||||||
alt_image:"Alternative image",
|
|
||||||
mouseover:"for mouse over",
|
|
||||||
mouseout:"for mouse out",
|
|
||||||
misc:"Miscellaneous",
|
|
||||||
example_img:"Appearance preview image",
|
|
||||||
missing_alt:"Are you sure you want to continue without including an Image Description? Without it the image may not be accessible to some users with disabilities, or to those using a text browser, or browsing the Web with images turned off.",
|
|
||||||
dialog_title:"Insert/edit image",
|
|
||||||
src:"Image URL",
|
|
||||||
alt:"Image description",
|
|
||||||
list:"Image list",
|
|
||||||
border:"Border",
|
|
||||||
dimensions:"Dimensions",
|
|
||||||
vspace:"Vertical space",
|
|
||||||
hspace:"Horizontal space",
|
|
||||||
align:"Alignment",
|
|
||||||
align_baseline:"Baseline",
|
|
||||||
align_top:"Top",
|
|
||||||
align_middle:"Middle",
|
|
||||||
align_bottom:"Bottom",
|
|
||||||
align_texttop:"Text top",
|
|
||||||
align_textbottom:"Text bottom",
|
|
||||||
align_left:"Left",
|
|
||||||
align_right:"Right",
|
|
||||||
image_list:"Image list"
|
|
||||||
});
|
|
@ -1,8 +0,0 @@
|
|||||||
.mceLinkList, .mceAnchorList, #targetlist {width:280px;}
|
|
||||||
.mceActionPanel {margin-top:7px;}
|
|
||||||
.panel_wrapper div.current {height:320px;}
|
|
||||||
#classlist, #title, #href {width:280px;}
|
|
||||||
#popupurl, #popupname {width:200px;}
|
|
||||||
#popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;}
|
|
||||||
#id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;}
|
|
||||||
#events_panel input {width:200px;}
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.AdvancedLinkPlugin",{init:function(a,b){this.editor=a;a.addCommand("mceAdvLink",function(){var c=a.selection;if(c.isCollapsed()&&!a.dom.getParent(c.getNode(),"A")){return}a.windowManager.open({file:b+"/link.htm",width:480+parseInt(a.getLang("advlink.delta_width",0)),height:400+parseInt(a.getLang("advlink.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("link",{title:"advlink.link_desc",cmd:"mceAdvLink"});a.addShortcut("ctrl+k","advlink.advlink_desc","mceAdvLink");a.onNodeChange.add(function(d,c,f,e){c.setDisabled("link",e&&f.nodeName!="A");c.setActive("link",f.nodeName=="A"&&!f.name)})},getInfo:function(){return{longname:"Advanced link",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlink",tinymce.plugins.AdvancedLinkPlugin)})();
|
|
@ -1,61 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
tinymce.create('tinymce.plugins.AdvancedLinkPlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
this.editor = ed;
|
|
||||||
|
|
||||||
// Register commands
|
|
||||||
ed.addCommand('mceAdvLink', function() {
|
|
||||||
var se = ed.selection;
|
|
||||||
|
|
||||||
// No selection and not in link
|
|
||||||
if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A'))
|
|
||||||
return;
|
|
||||||
|
|
||||||
ed.windowManager.open({
|
|
||||||
file : url + '/link.htm',
|
|
||||||
width : 480 + parseInt(ed.getLang('advlink.delta_width', 0)),
|
|
||||||
height : 400 + parseInt(ed.getLang('advlink.delta_height', 0)),
|
|
||||||
inline : 1
|
|
||||||
}, {
|
|
||||||
plugin_url : url
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register buttons
|
|
||||||
ed.addButton('link', {
|
|
||||||
title : 'advlink.link_desc',
|
|
||||||
cmd : 'mceAdvLink'
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.addShortcut('ctrl+k', 'advlink.advlink_desc', 'mceAdvLink');
|
|
||||||
|
|
||||||
ed.onNodeChange.add(function(ed, cm, n, co) {
|
|
||||||
cm.setDisabled('link', co && n.nodeName != 'A');
|
|
||||||
cm.setActive('link', n.nodeName == 'A' && !n.name);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Advanced link',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('advlink', tinymce.plugins.AdvancedLinkPlugin);
|
|
||||||
})();
|
|
@ -1,528 +0,0 @@
|
|||||||
/* Functions for the advlink plugin popup */
|
|
||||||
|
|
||||||
tinyMCEPopup.requireLangPack();
|
|
||||||
|
|
||||||
var templates = {
|
|
||||||
"window.open" : "window.open('${url}','${target}','${options}')"
|
|
||||||
};
|
|
||||||
|
|
||||||
function preinit() {
|
|
||||||
var url;
|
|
||||||
|
|
||||||
if (url = tinyMCEPopup.getParam("external_link_list_url"))
|
|
||||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
|
||||||
}
|
|
||||||
|
|
||||||
function changeClass() {
|
|
||||||
var f = document.forms[0];
|
|
||||||
|
|
||||||
f.classes.value = getSelectValue(f, 'classlist');
|
|
||||||
}
|
|
||||||
|
|
||||||
function init() {
|
|
||||||
tinyMCEPopup.resizeToInnerSize();
|
|
||||||
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
var inst = tinyMCEPopup.editor;
|
|
||||||
var elm = inst.selection.getNode();
|
|
||||||
var action = "insert";
|
|
||||||
var html;
|
|
||||||
|
|
||||||
document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','advlink');
|
|
||||||
document.getElementById('popupurlbrowsercontainer').innerHTML = getBrowserHTML('popupurlbrowser','popupurl','file','advlink');
|
|
||||||
document.getElementById('linklisthrefcontainer').innerHTML = getLinkListHTML('linklisthref','href');
|
|
||||||
document.getElementById('anchorlistcontainer').innerHTML = getAnchorListHTML('anchorlist','href');
|
|
||||||
document.getElementById('targetlistcontainer').innerHTML = getTargetListHTML('targetlist','target');
|
|
||||||
|
|
||||||
// Link list
|
|
||||||
html = getLinkListHTML('linklisthref','href');
|
|
||||||
if (html == "")
|
|
||||||
document.getElementById("linklisthrefrow").style.display = 'none';
|
|
||||||
else
|
|
||||||
document.getElementById("linklisthrefcontainer").innerHTML = html;
|
|
||||||
|
|
||||||
// Resize some elements
|
|
||||||
if (isVisible('hrefbrowser'))
|
|
||||||
document.getElementById('href').style.width = '260px';
|
|
||||||
|
|
||||||
if (isVisible('popupurlbrowser'))
|
|
||||||
document.getElementById('popupurl').style.width = '180px';
|
|
||||||
|
|
||||||
elm = inst.dom.getParent(elm, "A");
|
|
||||||
if (elm != null && elm.nodeName == "A")
|
|
||||||
action = "update";
|
|
||||||
|
|
||||||
formObj.insert.value = tinyMCEPopup.getLang(action, 'Insert', true);
|
|
||||||
|
|
||||||
setPopupControlsDisabled(true);
|
|
||||||
|
|
||||||
if (action == "update") {
|
|
||||||
var href = inst.dom.getAttrib(elm, 'href');
|
|
||||||
var onclick = inst.dom.getAttrib(elm, 'onclick');
|
|
||||||
|
|
||||||
// Setup form data
|
|
||||||
setFormValue('href', href);
|
|
||||||
setFormValue('title', inst.dom.getAttrib(elm, 'title'));
|
|
||||||
setFormValue('id', inst.dom.getAttrib(elm, 'id'));
|
|
||||||
setFormValue('style', inst.dom.getAttrib(elm, "style"));
|
|
||||||
setFormValue('rel', inst.dom.getAttrib(elm, 'rel'));
|
|
||||||
setFormValue('rev', inst.dom.getAttrib(elm, 'rev'));
|
|
||||||
setFormValue('charset', inst.dom.getAttrib(elm, 'charset'));
|
|
||||||
setFormValue('hreflang', inst.dom.getAttrib(elm, 'hreflang'));
|
|
||||||
setFormValue('dir', inst.dom.getAttrib(elm, 'dir'));
|
|
||||||
setFormValue('lang', inst.dom.getAttrib(elm, 'lang'));
|
|
||||||
setFormValue('tabindex', inst.dom.getAttrib(elm, 'tabindex', typeof(elm.tabindex) != "undefined" ? elm.tabindex : ""));
|
|
||||||
setFormValue('accesskey', inst.dom.getAttrib(elm, 'accesskey', typeof(elm.accesskey) != "undefined" ? elm.accesskey : ""));
|
|
||||||
setFormValue('type', inst.dom.getAttrib(elm, 'type'));
|
|
||||||
setFormValue('onfocus', inst.dom.getAttrib(elm, 'onfocus'));
|
|
||||||
setFormValue('onblur', inst.dom.getAttrib(elm, 'onblur'));
|
|
||||||
setFormValue('onclick', onclick);
|
|
||||||
setFormValue('ondblclick', inst.dom.getAttrib(elm, 'ondblclick'));
|
|
||||||
setFormValue('onmousedown', inst.dom.getAttrib(elm, 'onmousedown'));
|
|
||||||
setFormValue('onmouseup', inst.dom.getAttrib(elm, 'onmouseup'));
|
|
||||||
setFormValue('onmouseover', inst.dom.getAttrib(elm, 'onmouseover'));
|
|
||||||
setFormValue('onmousemove', inst.dom.getAttrib(elm, 'onmousemove'));
|
|
||||||
setFormValue('onmouseout', inst.dom.getAttrib(elm, 'onmouseout'));
|
|
||||||
setFormValue('onkeypress', inst.dom.getAttrib(elm, 'onkeypress'));
|
|
||||||
setFormValue('onkeydown', inst.dom.getAttrib(elm, 'onkeydown'));
|
|
||||||
setFormValue('onkeyup', inst.dom.getAttrib(elm, 'onkeyup'));
|
|
||||||
setFormValue('target', inst.dom.getAttrib(elm, 'target'));
|
|
||||||
setFormValue('classes', inst.dom.getAttrib(elm, 'class'));
|
|
||||||
|
|
||||||
// Parse onclick data
|
|
||||||
if (onclick != null && onclick.indexOf('window.open') != -1)
|
|
||||||
parseWindowOpen(onclick);
|
|
||||||
else
|
|
||||||
parseFunction(onclick);
|
|
||||||
|
|
||||||
// Select by the values
|
|
||||||
selectByValue(formObj, 'dir', inst.dom.getAttrib(elm, 'dir'));
|
|
||||||
selectByValue(formObj, 'rel', inst.dom.getAttrib(elm, 'rel'));
|
|
||||||
selectByValue(formObj, 'rev', inst.dom.getAttrib(elm, 'rev'));
|
|
||||||
selectByValue(formObj, 'linklisthref', href);
|
|
||||||
|
|
||||||
if (href.charAt(0) == '#')
|
|
||||||
selectByValue(formObj, 'anchorlist', href);
|
|
||||||
|
|
||||||
addClassesToList('classlist', 'advlink_styles');
|
|
||||||
|
|
||||||
selectByValue(formObj, 'classlist', inst.dom.getAttrib(elm, 'class'), true);
|
|
||||||
selectByValue(formObj, 'targetlist', inst.dom.getAttrib(elm, 'target'), true);
|
|
||||||
} else
|
|
||||||
addClassesToList('classlist', 'advlink_styles');
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkPrefix(n) {
|
|
||||||
if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_email')))
|
|
||||||
n.value = 'mailto:' + n.value;
|
|
||||||
|
|
||||||
if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advlink_dlg.is_external')))
|
|
||||||
n.value = 'http://' + n.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setFormValue(name, value) {
|
|
||||||
document.forms[0].elements[name].value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseWindowOpen(onclick) {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
|
|
||||||
// Preprocess center code
|
|
||||||
if (onclick.indexOf('return false;') != -1) {
|
|
||||||
formObj.popupreturn.checked = true;
|
|
||||||
onclick = onclick.replace('return false;', '');
|
|
||||||
} else
|
|
||||||
formObj.popupreturn.checked = false;
|
|
||||||
|
|
||||||
var onClickData = parseLink(onclick);
|
|
||||||
|
|
||||||
if (onClickData != null) {
|
|
||||||
formObj.ispopup.checked = true;
|
|
||||||
setPopupControlsDisabled(false);
|
|
||||||
|
|
||||||
var onClickWindowOptions = parseOptions(onClickData['options']);
|
|
||||||
var url = onClickData['url'];
|
|
||||||
|
|
||||||
formObj.popupname.value = onClickData['target'];
|
|
||||||
formObj.popupurl.value = url;
|
|
||||||
formObj.popupwidth.value = getOption(onClickWindowOptions, 'width');
|
|
||||||
formObj.popupheight.value = getOption(onClickWindowOptions, 'height');
|
|
||||||
|
|
||||||
formObj.popupleft.value = getOption(onClickWindowOptions, 'left');
|
|
||||||
formObj.popuptop.value = getOption(onClickWindowOptions, 'top');
|
|
||||||
|
|
||||||
if (formObj.popupleft.value.indexOf('screen') != -1)
|
|
||||||
formObj.popupleft.value = "c";
|
|
||||||
|
|
||||||
if (formObj.popuptop.value.indexOf('screen') != -1)
|
|
||||||
formObj.popuptop.value = "c";
|
|
||||||
|
|
||||||
formObj.popuplocation.checked = getOption(onClickWindowOptions, 'location') == "yes";
|
|
||||||
formObj.popupscrollbars.checked = getOption(onClickWindowOptions, 'scrollbars') == "yes";
|
|
||||||
formObj.popupmenubar.checked = getOption(onClickWindowOptions, 'menubar') == "yes";
|
|
||||||
formObj.popupresizable.checked = getOption(onClickWindowOptions, 'resizable') == "yes";
|
|
||||||
formObj.popuptoolbar.checked = getOption(onClickWindowOptions, 'toolbar') == "yes";
|
|
||||||
formObj.popupstatus.checked = getOption(onClickWindowOptions, 'status') == "yes";
|
|
||||||
formObj.popupdependent.checked = getOption(onClickWindowOptions, 'dependent') == "yes";
|
|
||||||
|
|
||||||
buildOnClick();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseFunction(onclick) {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
var onClickData = parseLink(onclick);
|
|
||||||
|
|
||||||
// TODO: Add stuff here
|
|
||||||
}
|
|
||||||
|
|
||||||
function getOption(opts, name) {
|
|
||||||
return typeof(opts[name]) == "undefined" ? "" : opts[name];
|
|
||||||
}
|
|
||||||
|
|
||||||
function setPopupControlsDisabled(state) {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
|
|
||||||
formObj.popupname.disabled = state;
|
|
||||||
formObj.popupurl.disabled = state;
|
|
||||||
formObj.popupwidth.disabled = state;
|
|
||||||
formObj.popupheight.disabled = state;
|
|
||||||
formObj.popupleft.disabled = state;
|
|
||||||
formObj.popuptop.disabled = state;
|
|
||||||
formObj.popuplocation.disabled = state;
|
|
||||||
formObj.popupscrollbars.disabled = state;
|
|
||||||
formObj.popupmenubar.disabled = state;
|
|
||||||
formObj.popupresizable.disabled = state;
|
|
||||||
formObj.popuptoolbar.disabled = state;
|
|
||||||
formObj.popupstatus.disabled = state;
|
|
||||||
formObj.popupreturn.disabled = state;
|
|
||||||
formObj.popupdependent.disabled = state;
|
|
||||||
|
|
||||||
setBrowserDisabled('popupurlbrowser', state);
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseLink(link) {
|
|
||||||
link = link.replace(new RegExp(''', 'g'), "'");
|
|
||||||
|
|
||||||
var fnName = link.replace(new RegExp("\\s*([A-Za-z0-9\.]*)\\s*\\(.*", "gi"), "$1");
|
|
||||||
|
|
||||||
// Is function name a template function
|
|
||||||
var template = templates[fnName];
|
|
||||||
if (template) {
|
|
||||||
// Build regexp
|
|
||||||
var variableNames = template.match(new RegExp("'?\\$\\{[A-Za-z0-9\.]*\\}'?", "gi"));
|
|
||||||
var regExp = "\\s*[A-Za-z0-9\.]*\\s*\\(";
|
|
||||||
var replaceStr = "";
|
|
||||||
for (var i=0; i<variableNames.length; i++) {
|
|
||||||
// Is string value
|
|
||||||
if (variableNames[i].indexOf("'${") != -1)
|
|
||||||
regExp += "'(.*)'";
|
|
||||||
else // Number value
|
|
||||||
regExp += "([0-9]*)";
|
|
||||||
|
|
||||||
replaceStr += "$" + (i+1);
|
|
||||||
|
|
||||||
// Cleanup variable name
|
|
||||||
variableNames[i] = variableNames[i].replace(new RegExp("[^A-Za-z0-9]", "gi"), "");
|
|
||||||
|
|
||||||
if (i != variableNames.length-1) {
|
|
||||||
regExp += "\\s*,\\s*";
|
|
||||||
replaceStr += "<delim>";
|
|
||||||
} else
|
|
||||||
regExp += ".*";
|
|
||||||
}
|
|
||||||
|
|
||||||
regExp += "\\);?";
|
|
||||||
|
|
||||||
// Build variable array
|
|
||||||
var variables = [];
|
|
||||||
variables["_function"] = fnName;
|
|
||||||
var variableValues = link.replace(new RegExp(regExp, "gi"), replaceStr).split('<delim>');
|
|
||||||
for (var i=0; i<variableNames.length; i++)
|
|
||||||
variables[variableNames[i]] = variableValues[i];
|
|
||||||
|
|
||||||
return variables;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseOptions(opts) {
|
|
||||||
if (opts == null || opts == "")
|
|
||||||
return [];
|
|
||||||
|
|
||||||
// Cleanup the options
|
|
||||||
opts = opts.toLowerCase();
|
|
||||||
opts = opts.replace(/;/g, ",");
|
|
||||||
opts = opts.replace(/[^0-9a-z=,]/g, "");
|
|
||||||
|
|
||||||
var optionChunks = opts.split(',');
|
|
||||||
var options = [];
|
|
||||||
|
|
||||||
for (var i=0; i<optionChunks.length; i++) {
|
|
||||||
var parts = optionChunks[i].split('=');
|
|
||||||
|
|
||||||
if (parts.length == 2)
|
|
||||||
options[parts[0]] = parts[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
return options;
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildOnClick() {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
|
|
||||||
if (!formObj.ispopup.checked) {
|
|
||||||
formObj.onclick.value = "";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var onclick = "window.open('";
|
|
||||||
var url = formObj.popupurl.value;
|
|
||||||
|
|
||||||
onclick += url + "','";
|
|
||||||
onclick += formObj.popupname.value + "','";
|
|
||||||
|
|
||||||
if (formObj.popuplocation.checked)
|
|
||||||
onclick += "location=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupscrollbars.checked)
|
|
||||||
onclick += "scrollbars=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupmenubar.checked)
|
|
||||||
onclick += "menubar=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupresizable.checked)
|
|
||||||
onclick += "resizable=yes,";
|
|
||||||
|
|
||||||
if (formObj.popuptoolbar.checked)
|
|
||||||
onclick += "toolbar=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupstatus.checked)
|
|
||||||
onclick += "status=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupdependent.checked)
|
|
||||||
onclick += "dependent=yes,";
|
|
||||||
|
|
||||||
if (formObj.popupwidth.value != "")
|
|
||||||
onclick += "width=" + formObj.popupwidth.value + ",";
|
|
||||||
|
|
||||||
if (formObj.popupheight.value != "")
|
|
||||||
onclick += "height=" + formObj.popupheight.value + ",";
|
|
||||||
|
|
||||||
if (formObj.popupleft.value != "") {
|
|
||||||
if (formObj.popupleft.value != "c")
|
|
||||||
onclick += "left=" + formObj.popupleft.value + ",";
|
|
||||||
else
|
|
||||||
onclick += "left='+(screen.availWidth/2-" + (formObj.popupwidth.value/2) + ")+',";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (formObj.popuptop.value != "") {
|
|
||||||
if (formObj.popuptop.value != "c")
|
|
||||||
onclick += "top=" + formObj.popuptop.value + ",";
|
|
||||||
else
|
|
||||||
onclick += "top='+(screen.availHeight/2-" + (formObj.popupheight.value/2) + ")+',";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (onclick.charAt(onclick.length-1) == ',')
|
|
||||||
onclick = onclick.substring(0, onclick.length-1);
|
|
||||||
|
|
||||||
onclick += "');";
|
|
||||||
|
|
||||||
if (formObj.popupreturn.checked)
|
|
||||||
onclick += "return false;";
|
|
||||||
|
|
||||||
// tinyMCE.debug(onclick);
|
|
||||||
|
|
||||||
formObj.onclick.value = onclick;
|
|
||||||
|
|
||||||
if (formObj.href.value == "")
|
|
||||||
formObj.href.value = url;
|
|
||||||
}
|
|
||||||
|
|
||||||
function setAttrib(elm, attrib, value) {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
var valueElm = formObj.elements[attrib.toLowerCase()];
|
|
||||||
var dom = tinyMCEPopup.editor.dom;
|
|
||||||
|
|
||||||
if (typeof(value) == "undefined" || value == null) {
|
|
||||||
value = "";
|
|
||||||
|
|
||||||
if (valueElm)
|
|
||||||
value = valueElm.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up the style
|
|
||||||
if (attrib == 'style')
|
|
||||||
value = dom.serializeStyle(dom.parseStyle(value), 'a');
|
|
||||||
|
|
||||||
dom.setAttrib(elm, attrib, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getAnchorListHTML(id, target) {
|
|
||||||
var inst = tinyMCEPopup.editor;
|
|
||||||
var nodes = inst.dom.select('a.mceItemAnchor,img.mceItemAnchor'), name, i;
|
|
||||||
var html = "";
|
|
||||||
|
|
||||||
html += '<select id="' + id + '" name="' + id + '" class="mceAnchorList" o2nfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target + '.value=';
|
|
||||||
html += 'this.options[this.selectedIndex].value;">';
|
|
||||||
html += '<option value="">---</option>';
|
|
||||||
|
|
||||||
for (i=0; i<nodes.length; i++) {
|
|
||||||
if ((name = inst.dom.getAttrib(nodes[i], "name")) != "")
|
|
||||||
html += '<option value="#' + name + '">' + name + '</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
html += '</select>';
|
|
||||||
|
|
||||||
return html;
|
|
||||||
}
|
|
||||||
|
|
||||||
function insertAction() {
|
|
||||||
var inst = tinyMCEPopup.editor;
|
|
||||||
var elm, elementArray, i;
|
|
||||||
|
|
||||||
elm = inst.selection.getNode();
|
|
||||||
checkPrefix(document.forms[0].href);
|
|
||||||
|
|
||||||
elm = inst.dom.getParent(elm, "A");
|
|
||||||
|
|
||||||
// Remove element if there is no href
|
|
||||||
if (!document.forms[0].href.value) {
|
|
||||||
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
|
||||||
i = inst.selection.getBookmark();
|
|
||||||
inst.dom.remove(elm, 1);
|
|
||||||
inst.selection.moveToBookmark(i);
|
|
||||||
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
|
||||||
tinyMCEPopup.close();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
|
||||||
|
|
||||||
// Create new anchor elements
|
|
||||||
if (elm == null) {
|
|
||||||
inst.getDoc().execCommand("unlink", false, null);
|
|
||||||
tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1});
|
|
||||||
|
|
||||||
elementArray = tinymce.grep(inst.dom.select("a"), function(n) {return inst.dom.getAttrib(n, 'href') == '#mce_temp_url#';});
|
|
||||||
for (i=0; i<elementArray.length; i++)
|
|
||||||
setAllAttribs(elm = elementArray[i]);
|
|
||||||
} else
|
|
||||||
setAllAttribs(elm);
|
|
||||||
|
|
||||||
// Don't move caret if selection was image
|
|
||||||
if (elm.childNodes.length != 1 || elm.firstChild.nodeName != 'IMG') {
|
|
||||||
inst.focus();
|
|
||||||
inst.selection.select(elm);
|
|
||||||
inst.selection.collapse(0);
|
|
||||||
tinyMCEPopup.storeSelection();
|
|
||||||
}
|
|
||||||
|
|
||||||
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
|
||||||
tinyMCEPopup.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
function setAllAttribs(elm) {
|
|
||||||
var formObj = document.forms[0];
|
|
||||||
var href = formObj.href.value.replace(/ /g, '%20');
|
|
||||||
var target = getSelectValue(formObj, 'targetlist');
|
|
||||||
|
|
||||||
setAttrib(elm, 'href', href);
|
|
||||||
setAttrib(elm, 'title');
|
|
||||||
setAttrib(elm, 'target', target == '_self' ? '' : target);
|
|
||||||
setAttrib(elm, 'id');
|
|
||||||
setAttrib(elm, 'style');
|
|
||||||
setAttrib(elm, 'class', getSelectValue(formObj, 'classlist'));
|
|
||||||
setAttrib(elm, 'rel');
|
|
||||||
setAttrib(elm, 'rev');
|
|
||||||
setAttrib(elm, 'charset');
|
|
||||||
setAttrib(elm, 'hreflang');
|
|
||||||
setAttrib(elm, 'dir');
|
|
||||||
setAttrib(elm, 'lang');
|
|
||||||
setAttrib(elm, 'tabindex');
|
|
||||||
setAttrib(elm, 'accesskey');
|
|
||||||
setAttrib(elm, 'type');
|
|
||||||
setAttrib(elm, 'onfocus');
|
|
||||||
setAttrib(elm, 'onblur');
|
|
||||||
setAttrib(elm, 'onclick');
|
|
||||||
setAttrib(elm, 'ondblclick');
|
|
||||||
setAttrib(elm, 'onmousedown');
|
|
||||||
setAttrib(elm, 'onmouseup');
|
|
||||||
setAttrib(elm, 'onmouseover');
|
|
||||||
setAttrib(elm, 'onmousemove');
|
|
||||||
setAttrib(elm, 'onmouseout');
|
|
||||||
setAttrib(elm, 'onkeypress');
|
|
||||||
setAttrib(elm, 'onkeydown');
|
|
||||||
setAttrib(elm, 'onkeyup');
|
|
||||||
|
|
||||||
// Refresh in old MSIE
|
|
||||||
if (tinyMCE.isMSIE5)
|
|
||||||
elm.outerHTML = elm.outerHTML;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSelectValue(form_obj, field_name) {
|
|
||||||
var elm = form_obj.elements[field_name];
|
|
||||||
|
|
||||||
if (!elm || elm.options == null || elm.selectedIndex == -1)
|
|
||||||
return "";
|
|
||||||
|
|
||||||
return elm.options[elm.selectedIndex].value;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getLinkListHTML(elm_id, target_form_element, onchange_func) {
|
|
||||||
if (typeof(tinyMCELinkList) == "undefined" || tinyMCELinkList.length == 0)
|
|
||||||
return "";
|
|
||||||
|
|
||||||
var html = "";
|
|
||||||
|
|
||||||
html += '<select id="' + elm_id + '" name="' + elm_id + '"';
|
|
||||||
html += ' class="mceLinkList" onfoc2us="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value=';
|
|
||||||
html += 'this.options[this.selectedIndex].value;';
|
|
||||||
|
|
||||||
if (typeof(onchange_func) != "undefined")
|
|
||||||
html += onchange_func + '(\'' + target_form_element + '\',this.options[this.selectedIndex].text,this.options[this.selectedIndex].value);';
|
|
||||||
|
|
||||||
html += '"><option value="">---</option>';
|
|
||||||
|
|
||||||
for (var i=0; i<tinyMCELinkList.length; i++)
|
|
||||||
html += '<option value="' + tinyMCELinkList[i][1] + '">' + tinyMCELinkList[i][0] + '</option>';
|
|
||||||
|
|
||||||
html += '</select>';
|
|
||||||
|
|
||||||
return html;
|
|
||||||
|
|
||||||
// tinyMCE.debug('-- image list start --', html, '-- image list end --');
|
|
||||||
}
|
|
||||||
|
|
||||||
function getTargetListHTML(elm_id, target_form_element) {
|
|
||||||
var targets = tinyMCEPopup.getParam('theme_advanced_link_targets', '').split(';');
|
|
||||||
var html = '';
|
|
||||||
|
|
||||||
html += '<select id="' + elm_id + '" name="' + elm_id + '" onf2ocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.' + target_form_element + '.value=';
|
|
||||||
html += 'this.options[this.selectedIndex].value;">';
|
|
||||||
html += '<option value="_self">' + tinyMCEPopup.getLang('advlink_dlg.target_same') + '</option>';
|
|
||||||
html += '<option value="_blank">' + tinyMCEPopup.getLang('advlink_dlg.target_blank') + ' (_blank)</option>';
|
|
||||||
html += '<option value="_parent">' + tinyMCEPopup.getLang('advlink_dlg.target_parent') + ' (_parent)</option>';
|
|
||||||
html += '<option value="_top">' + tinyMCEPopup.getLang('advlink_dlg.target_top') + ' (_top)</option>';
|
|
||||||
|
|
||||||
for (var i=0; i<targets.length; i++) {
|
|
||||||
var key, value;
|
|
||||||
|
|
||||||
if (targets[i] == "")
|
|
||||||
continue;
|
|
||||||
|
|
||||||
key = targets[i].split('=')[0];
|
|
||||||
value = targets[i].split('=')[1];
|
|
||||||
|
|
||||||
html += '<option value="' + key + '">' + value + ' (' + key + ')</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
html += '</select>';
|
|
||||||
|
|
||||||
return html;
|
|
||||||
}
|
|
||||||
|
|
||||||
// While loading
|
|
||||||
preinit();
|
|
||||||
tinyMCEPopup.onInit.add(init);
|
|
@ -1,52 +0,0 @@
|
|||||||
tinyMCE.addI18n('en.advlink_dlg',{
|
|
||||||
title:"Insert/edit link",
|
|
||||||
url:"Link URL",
|
|
||||||
target:"Target",
|
|
||||||
titlefield:"Title",
|
|
||||||
is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
|
|
||||||
is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
|
|
||||||
list:"Link list",
|
|
||||||
general_tab:"General",
|
|
||||||
popup_tab:"Popup",
|
|
||||||
events_tab:"Events",
|
|
||||||
advanced_tab:"Advanced",
|
|
||||||
general_props:"General properties",
|
|
||||||
popup_props:"Popup properties",
|
|
||||||
event_props:"Events",
|
|
||||||
advanced_props:"Advanced properties",
|
|
||||||
popup_opts:"Options",
|
|
||||||
anchor_names:"Anchors",
|
|
||||||
target_same:"Open in this window / frame",
|
|
||||||
target_parent:"Open in parent window / frame",
|
|
||||||
target_top:"Open in top frame (replaces all frames)",
|
|
||||||
target_blank:"Open in new window",
|
|
||||||
popup:"Javascript popup",
|
|
||||||
popup_url:"Popup URL",
|
|
||||||
popup_name:"Window name",
|
|
||||||
popup_return:"Insert 'return false'",
|
|
||||||
popup_scrollbars:"Show scrollbars",
|
|
||||||
popup_statusbar:"Show status bar",
|
|
||||||
popup_toolbar:"Show toolbars",
|
|
||||||
popup_menubar:"Show menu bar",
|
|
||||||
popup_location:"Show location bar",
|
|
||||||
popup_resizable:"Make window resizable",
|
|
||||||
popup_dependent:"Dependent (Mozilla/Firefox only)",
|
|
||||||
popup_size:"Size",
|
|
||||||
popup_position:"Position (X/Y)",
|
|
||||||
id:"Id",
|
|
||||||
style:"Style",
|
|
||||||
classes:"Classes",
|
|
||||||
target_name:"Target name",
|
|
||||||
langdir:"Language direction",
|
|
||||||
target_langcode:"Target language",
|
|
||||||
langcode:"Language code",
|
|
||||||
encoding:"Target character encoding",
|
|
||||||
mime:"Target MIME type",
|
|
||||||
rel:"Relationship page to target",
|
|
||||||
rev:"Relationship target to page",
|
|
||||||
tabindex:"Tabindex",
|
|
||||||
accesskey:"Accesskey",
|
|
||||||
ltr:"Left to right",
|
|
||||||
rtl:"Right to left",
|
|
||||||
link_list:"Link list"
|
|
||||||
});
|
|
@ -1,333 +0,0 @@
|
|||||||
<!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>
|
|
||||||
<title>{#advlink_dlg.title}</title>
|
|
||||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/form_utils.js"></script>
|
|
||||||
<script type="text/javascript" src="../../utils/validate.js"></script>
|
|
||||||
<script type="text/javascript" src="js/advlink.js"></script>
|
|
||||||
<link href="css/advlink.css" rel="stylesheet" type="text/css" />
|
|
||||||
</head>
|
|
||||||
<body id="advlink" style="display: none">
|
|
||||||
<form onsubmit="insertAction();return false;" action="#">
|
|
||||||
<div class="tabs">
|
|
||||||
<ul>
|
|
||||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advlink_dlg.general_tab}</a></span></li>
|
|
||||||
<li id="popup_tab"><span><a href="javascript:mcTabs.displayTab('popup_tab','popup_panel');" onmousedown="return false;">{#advlink_dlg.popup_tab}</a></span></li>
|
|
||||||
<li id="events_tab"><span><a href="javascript:mcTabs.displayTab('events_tab','events_panel');" onmousedown="return false;">{#advlink_dlg.events_tab}</a></span></li>
|
|
||||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#advlink_dlg.advanced_tab}</a></span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="panel_wrapper">
|
|
||||||
<div id="general_panel" class="panel current">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advlink_dlg.general_props}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="4" cellspacing="0">
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap"><label id="hreflabel" for="href">{#advlink_dlg.url}</label></td>
|
|
||||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input id="href" name="href" type="text" class="mceFocus" value="" onchange="selectByValue(this.form,'linklisthref',this.value);" /></td>
|
|
||||||
<td id="hrefbrowsercontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
<tr id="linklisthrefrow">
|
|
||||||
<td class="column1"><label for="linklisthref">{#advlink_dlg.list}</label></td>
|
|
||||||
<td colspan="2" id="linklisthrefcontainer"><select id="linklisthref"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="anchorlist">{#advlink_dlg.anchor_names}</label></td>
|
|
||||||
<td colspan="2" id="anchorlistcontainer"><select id="anchorlist"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label id="targetlistlabel" for="targetlist">{#advlink_dlg.target}</label></td>
|
|
||||||
<td id="targetlistcontainer"><select id="targetlist"><option value=""></option></select></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap"><label id="titlelabel" for="title">{#advlink_dlg.titlefield}</label></td>
|
|
||||||
<td><input id="title" name="title" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><label id="classlabel" for="classlist">{#class_name}</label></td>
|
|
||||||
<td>
|
|
||||||
<select id="classlist" name="classlist" onchange="changeClass();">
|
|
||||||
<option value="" selected="selected">{#not_set}</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="popup_panel" class="panel">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advlink_dlg.popup_props}</legend>
|
|
||||||
|
|
||||||
<input type="checkbox" id="ispopup" name="ispopup" class="radio" onclick="setPopupControlsDisabled(!this.checked);buildOnClick();" />
|
|
||||||
<label id="ispopuplabel" for="ispopup">{#advlink_dlg.popup}</label>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="4">
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap"><label for="popupurl">{#advlink_dlg.popup_url}</label> </td>
|
|
||||||
<td>
|
|
||||||
<table border="0" cellspacing="0" cellpadding="0">
|
|
||||||
<tr>
|
|
||||||
<td><input type="text" name="popupurl" id="popupurl" value="" onchange="buildOnClick();" /></td>
|
|
||||||
<td id="popupurlbrowsercontainer"> </td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap"><label for="popupname">{#advlink_dlg.popup_name}</label> </td>
|
|
||||||
<td><input type="text" name="popupname" id="popupname" value="" onchange="buildOnClick();" /></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap"><label>{#advlink_dlg.popup_size}</label> </td>
|
|
||||||
<td class="nowrap">
|
|
||||||
<input type="text" id="popupwidth" name="popupwidth" value="" onchange="buildOnClick();" /> x
|
|
||||||
<input type="text" id="popupheight" name="popupheight" value="" onchange="buildOnClick();" /> px
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="nowrap" id="labelleft"><label>{#advlink_dlg.popup_position}</label> </td>
|
|
||||||
<td class="nowrap">
|
|
||||||
<input type="text" id="popupleft" name="popupleft" value="" onchange="buildOnClick();" /> /
|
|
||||||
<input type="text" id="popuptop" name="popuptop" value="" onchange="buildOnClick();" /> (c /c = center)
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advlink_dlg.popup_opts}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="4">
|
|
||||||
<tr>
|
|
||||||
<td><input type="checkbox" id="popuplocation" name="popuplocation" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popuplocationlabel" for="popuplocation">{#advlink_dlg.popup_location}</label></td>
|
|
||||||
<td><input type="checkbox" id="popupscrollbars" name="popupscrollbars" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popupscrollbarslabel" for="popupscrollbars">{#advlink_dlg.popup_scrollbars}</label></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><input type="checkbox" id="popupmenubar" name="popupmenubar" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popupmenubarlabel" for="popupmenubar">{#advlink_dlg.popup_menubar}</label></td>
|
|
||||||
<td><input type="checkbox" id="popupresizable" name="popupresizable" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popupresizablelabel" for="popupresizable">{#advlink_dlg.popup_resizable}</label></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><input type="checkbox" id="popuptoolbar" name="popuptoolbar" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popuptoolbarlabel" for="popuptoolbar">{#advlink_dlg.popup_toolbar}</label></td>
|
|
||||||
<td><input type="checkbox" id="popupdependent" name="popupdependent" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popupdependentlabel" for="popupdependent">{#advlink_dlg.popup_dependent}</label></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><input type="checkbox" id="popupstatus" name="popupstatus" class="checkbox" onchange="buildOnClick();" /></td>
|
|
||||||
<td class="nowrap"><label id="popupstatuslabel" for="popupstatus">{#advlink_dlg.popup_statusbar}</label></td>
|
|
||||||
<td><input type="checkbox" id="popupreturn" name="popupreturn" class="checkbox" onchange="buildOnClick();" checked="checked" /></td>
|
|
||||||
<td class="nowrap"><label id="popupreturnlabel" for="popupreturn">{#advlink_dlg.popup_return}</label></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="advanced_panel" class="panel">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advlink_dlg.advanced_props}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="4">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="idlabel" for="id">{#advlink_dlg.id}</label></td>
|
|
||||||
<td><input id="id" name="id" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="stylelabel" for="style">{#advlink_dlg.style}</label></td>
|
|
||||||
<td><input type="text" id="style" name="style" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="classeslabel" for="classes">{#advlink_dlg.classes}</label></td>
|
|
||||||
<td><input type="text" id="classes" name="classes" value="" onchange="selectByValue(this.form,'classlist',this.value,true);" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="targetlabel" for="target">{#advlink_dlg.target_name}</label></td>
|
|
||||||
<td><input type="text" id="target" name="target" value="" onchange="selectByValue(this.form,'targetlist',this.value,true);" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="dirlabel" for="dir">{#advlink_dlg.langdir}</label></td>
|
|
||||||
<td>
|
|
||||||
<select id="dir" name="dir">
|
|
||||||
<option value="">{#not_set}</option>
|
|
||||||
<option value="ltr">{#advlink_dlg.ltr}</option>
|
|
||||||
<option value="rtl">{#advlink_dlg.rtl}</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="hreflanglabel" for="hreflang">{#advlink_dlg.target_langcode}</label></td>
|
|
||||||
<td><input type="text" id="hreflang" name="hreflang" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label id="langlabel" for="lang">{#advlink_dlg.langcode}</label></td>
|
|
||||||
<td>
|
|
||||||
<input id="lang" name="lang" type="text" value="" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="charsetlabel" for="charset">{#advlink_dlg.encoding}</label></td>
|
|
||||||
<td><input type="text" id="charset" name="charset" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="typelabel" for="type">{#advlink_dlg.mime}</label></td>
|
|
||||||
<td><input type="text" id="type" name="type" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="rellabel" for="rel">{#advlink_dlg.rel}</label></td>
|
|
||||||
<td><select id="rel" name="rel">
|
|
||||||
<option value="">{#not_set}</option>
|
|
||||||
<option value="lightbox">Lightbox</option>
|
|
||||||
<option value="alternate">Alternate</option>
|
|
||||||
<option value="designates">Designates</option>
|
|
||||||
<option value="stylesheet">Stylesheet</option>
|
|
||||||
<option value="start">Start</option>
|
|
||||||
<option value="next">Next</option>
|
|
||||||
<option value="prev">Prev</option>
|
|
||||||
<option value="contents">Contents</option>
|
|
||||||
<option value="index">Index</option>
|
|
||||||
<option value="glossary">Glossary</option>
|
|
||||||
<option value="copyright">Copyright</option>
|
|
||||||
<option value="chapter">Chapter</option>
|
|
||||||
<option value="subsection">Subsection</option>
|
|
||||||
<option value="appendix">Appendix</option>
|
|
||||||
<option value="help">Help</option>
|
|
||||||
<option value="bookmark">Bookmark</option>
|
|
||||||
<option value="nofollow">No Follow</option>
|
|
||||||
<option value="tag">Tag</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="revlabel" for="rev">{#advlink_dlg.rev}</label></td>
|
|
||||||
<td><select id="rev" name="rev">
|
|
||||||
<option value="">{#not_set}</option>
|
|
||||||
<option value="alternate">Alternate</option>
|
|
||||||
<option value="designates">Designates</option>
|
|
||||||
<option value="stylesheet">Stylesheet</option>
|
|
||||||
<option value="start">Start</option>
|
|
||||||
<option value="next">Next</option>
|
|
||||||
<option value="prev">Prev</option>
|
|
||||||
<option value="contents">Contents</option>
|
|
||||||
<option value="index">Index</option>
|
|
||||||
<option value="glossary">Glossary</option>
|
|
||||||
<option value="copyright">Copyright</option>
|
|
||||||
<option value="chapter">Chapter</option>
|
|
||||||
<option value="subsection">Subsection</option>
|
|
||||||
<option value="appendix">Appendix</option>
|
|
||||||
<option value="help">Help</option>
|
|
||||||
<option value="bookmark">Bookmark</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="tabindexlabel" for="tabindex">{#advlink_dlg.tabindex}</label></td>
|
|
||||||
<td><input type="text" id="tabindex" name="tabindex" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><label id="accesskeylabel" for="accesskey">{#advlink_dlg.accesskey}</label></td>
|
|
||||||
<td><input type="text" id="accesskey" name="accesskey" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="events_panel" class="panel">
|
|
||||||
<fieldset>
|
|
||||||
<legend>{#advlink_dlg.event_props}</legend>
|
|
||||||
|
|
||||||
<table border="0" cellpadding="0" cellspacing="4">
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onfocus">onfocus</label></td>
|
|
||||||
<td><input id="onfocus" name="onfocus" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onblur">onblur</label></td>
|
|
||||||
<td><input id="onblur" name="onblur" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onclick">onclick</label></td>
|
|
||||||
<td><input id="onclick" name="onclick" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="ondblclick">ondblclick</label></td>
|
|
||||||
<td><input id="ondblclick" name="ondblclick" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onmousedown">onmousedown</label></td>
|
|
||||||
<td><input id="onmousedown" name="onmousedown" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onmouseup">onmouseup</label></td>
|
|
||||||
<td><input id="onmouseup" name="onmouseup" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onmouseover">onmouseover</label></td>
|
|
||||||
<td><input id="onmouseover" name="onmouseover" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onmousemove">onmousemove</label></td>
|
|
||||||
<td><input id="onmousemove" name="onmousemove" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onmouseout">onmouseout</label></td>
|
|
||||||
<td><input id="onmouseout" name="onmouseout" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onkeypress">onkeypress</label></td>
|
|
||||||
<td><input id="onkeypress" name="onkeypress" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onkeydown">onkeydown</label></td>
|
|
||||||
<td><input id="onkeydown" name="onkeydown" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td class="column1"><label for="onkeyup">onkeyup</label></td>
|
|
||||||
<td><input id="onkeyup" name="onkeyup" type="text" value="" /></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mceActionPanel">
|
|
||||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
|
||||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1 +0,0 @@
|
|||||||
(function(){var a=tinymce.each;tinymce.create("tinymce.plugins.AdvListPlugin",{init:function(b,c){var d=this;d.editor=b;function e(g){var f=[];a(g.split(/,/),function(h){f.push({title:"advlist."+(h=="default"?"def":h.replace(/-/g,"_")),styles:{listStyleType:h=="default"?"":h}})});return f}d.numlist=b.getParam("advlist_number_styles")||e("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");d.bullist=b.getParam("advlist_bullet_styles")||e("default,circle,disc,square")},createControl:function(d,b){var f=this,e,h;if(d=="numlist"||d=="bullist"){if(f[d][0].title=="advlist.def"){h=f[d][0]}function c(i,k){var j=true;a(k.styles,function(m,l){if(f.editor.dom.getStyle(i,l)!=m){j=false;return false}});return j}function g(){var k,i=f.editor,l=i.dom,j=i.selection;k=l.getParent(j.getNode(),"ol,ul");if(!k||k.nodeName==(d=="bullist"?"OL":"UL")||c(k,h)){i.execCommand(d=="bullist"?"InsertUnorderedList":"InsertOrderedList")}if(h){k=l.getParent(j.getNode(),"ol,ul");if(k){l.setStyles(k,h.styles);k.removeAttribute("data-mce-style")}}}e=b.createSplitButton(d,{title:"advanced."+d+"_desc","class":"mce_"+d,onclick:function(){g()}});e.onRenderMenu.add(function(i,j){j.onShowMenu.add(function(){var m=f.editor.dom,l=m.getParent(f.editor.selection.getNode(),"ol,ul"),k;if(l||h){k=f[d];a(j.items,function(n){var o=true;n.setSelected(0);if(l&&!n.isDisabled()){a(k,function(p){if(p.id==n.id){if(!c(l,p)){o=false;return false}}});if(o){n.setSelected(1)}}});if(!l){j.items[h.id].setSelected(1)}}});j.add({id:f.editor.dom.uniqueId(),title:"advlist.types","class":"mceMenuItemTitle"}).setDisabled(1);a(f[d],function(k){k.id=f.editor.dom.uniqueId();j.add({id:k.id,title:k.title,onclick:function(){h=k;g()}})})});return e}},getInfo:function(){return{longname:"Advanced lists",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlist",tinymce.plugins.AdvListPlugin)})();
|
|
@ -1,154 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var each = tinymce.each;
|
|
||||||
|
|
||||||
tinymce.create('tinymce.plugins.AdvListPlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
var t = this;
|
|
||||||
|
|
||||||
t.editor = ed;
|
|
||||||
|
|
||||||
function buildFormats(str) {
|
|
||||||
var formats = [];
|
|
||||||
|
|
||||||
each(str.split(/,/), function(type) {
|
|
||||||
formats.push({
|
|
||||||
title : 'advlist.' + (type == 'default' ? 'def' : type.replace(/-/g, '_')),
|
|
||||||
styles : {
|
|
||||||
listStyleType : type == 'default' ? '' : type
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return formats;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Setup number formats from config or default
|
|
||||||
t.numlist = ed.getParam("advlist_number_styles") || buildFormats("default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman");
|
|
||||||
t.bullist = ed.getParam("advlist_bullet_styles") || buildFormats("default,circle,disc,square");
|
|
||||||
},
|
|
||||||
|
|
||||||
createControl: function(name, cm) {
|
|
||||||
var t = this, btn, format;
|
|
||||||
|
|
||||||
if (name == 'numlist' || name == 'bullist') {
|
|
||||||
// Default to first item if it's a default item
|
|
||||||
if (t[name][0].title == 'advlist.def')
|
|
||||||
format = t[name][0];
|
|
||||||
|
|
||||||
function hasFormat(node, format) {
|
|
||||||
var state = true;
|
|
||||||
|
|
||||||
each(format.styles, function(value, name) {
|
|
||||||
// Format doesn't match
|
|
||||||
if (t.editor.dom.getStyle(node, name) != value) {
|
|
||||||
state = false;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return state;
|
|
||||||
};
|
|
||||||
|
|
||||||
function applyListFormat() {
|
|
||||||
var list, ed = t.editor, dom = ed.dom, sel = ed.selection;
|
|
||||||
|
|
||||||
// Check for existing list element
|
|
||||||
list = dom.getParent(sel.getNode(), 'ol,ul');
|
|
||||||
|
|
||||||
// Switch/add list type if needed
|
|
||||||
if (!list || list.nodeName == (name == 'bullist' ? 'OL' : 'UL') || hasFormat(list, format))
|
|
||||||
ed.execCommand(name == 'bullist' ? 'InsertUnorderedList' : 'InsertOrderedList');
|
|
||||||
|
|
||||||
// Append styles to new list element
|
|
||||||
if (format) {
|
|
||||||
list = dom.getParent(sel.getNode(), 'ol,ul');
|
|
||||||
|
|
||||||
if (list) {
|
|
||||||
dom.setStyles(list, format.styles);
|
|
||||||
list.removeAttribute('data-mce-style');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
btn = cm.createSplitButton(name, {
|
|
||||||
title : 'advanced.' + name + '_desc',
|
|
||||||
'class' : 'mce_' + name,
|
|
||||||
onclick : function() {
|
|
||||||
applyListFormat();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
btn.onRenderMenu.add(function(btn, menu) {
|
|
||||||
menu.onShowMenu.add(function() {
|
|
||||||
var dom = t.editor.dom, list = dom.getParent(t.editor.selection.getNode(), 'ol,ul'), fmtList;
|
|
||||||
|
|
||||||
if (list || format) {
|
|
||||||
fmtList = t[name];
|
|
||||||
|
|
||||||
// Unselect existing items
|
|
||||||
each(menu.items, function(item) {
|
|
||||||
var state = true;
|
|
||||||
|
|
||||||
item.setSelected(0);
|
|
||||||
|
|
||||||
if (list && !item.isDisabled()) {
|
|
||||||
each(fmtList, function(fmt) {
|
|
||||||
if (fmt.id == item.id) {
|
|
||||||
if (!hasFormat(list, fmt)) {
|
|
||||||
state = false;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (state)
|
|
||||||
item.setSelected(1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Select the current format
|
|
||||||
if (!list)
|
|
||||||
menu.items[format.id].setSelected(1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
menu.add({id : t.editor.dom.uniqueId(), title : 'advlist.types', 'class' : 'mceMenuItemTitle'}).setDisabled(1);
|
|
||||||
|
|
||||||
each(t[name], function(item) {
|
|
||||||
item.id = t.editor.dom.uniqueId();
|
|
||||||
|
|
||||||
menu.add({id : item.id, title : item.title, onclick : function() {
|
|
||||||
format = item;
|
|
||||||
applyListFormat();
|
|
||||||
}});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return btn;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Advanced lists',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlist',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('advlist', tinymce.plugins.AdvListPlugin);
|
|
||||||
})();
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.AutoResizePlugin",{init:function(a,c){var d=this;if(a.getParam("fullscreen_is_enabled")){return}function b(){var h=a.getDoc(),e=h.body,j=h.documentElement,g=tinymce.DOM,i=d.autoresize_min_height,f;f=tinymce.isIE?e.scrollHeight:j.offsetHeight;if(f>d.autoresize_min_height){i=f}g.setStyle(g.get(a.id+"_ifr"),"height",i+"px");if(d.throbbing){a.setProgressState(false);a.setProgressState(true)}}d.editor=a;d.autoresize_min_height=a.getElement().offsetHeight;a.onChange.add(b);a.onSetContent.add(b);a.onPaste.add(b);a.onKeyUp.add(b);a.onPostRender.add(b);if(a.getParam("autoresize_on_init",true)){a.onInit.add(function(f,e){f.setProgressState(true);d.throbbing=true;f.getBody().style.overflowY="hidden"});a.onLoadContent.add(function(f,e){b();setTimeout(function(){b();f.setProgressState(false);d.throbbing=false},1250)})}a.addCommand("mceAutoResize",b)},getInfo:function(){return{longname:"Auto Resize",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autoresize",tinymce.plugins.AutoResizePlugin)})();
|
|
@ -1,119 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
/**
|
|
||||||
* Auto Resize
|
|
||||||
*
|
|
||||||
* This plugin automatically resizes the content area to fit its content height.
|
|
||||||
* It will retain a minimum height, which is the height of the content area when
|
|
||||||
* it's initialized.
|
|
||||||
*/
|
|
||||||
tinymce.create('tinymce.plugins.AutoResizePlugin', {
|
|
||||||
/**
|
|
||||||
* Initializes the plugin, this will be executed after the plugin has been created.
|
|
||||||
* This call is done before the editor instance has finished it's initialization so use the onInit event
|
|
||||||
* of the editor instance to intercept that event.
|
|
||||||
*
|
|
||||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
|
|
||||||
* @param {string} url Absolute URL to where the plugin is located.
|
|
||||||
*/
|
|
||||||
init : function(ed, url) {
|
|
||||||
var t = this;
|
|
||||||
|
|
||||||
if (ed.getParam('fullscreen_is_enabled'))
|
|
||||||
return;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method gets executed each time the editor needs to resize.
|
|
||||||
*/
|
|
||||||
function resize() {
|
|
||||||
var d = ed.getDoc(), b = d.body, de = d.documentElement, DOM = tinymce.DOM, resizeHeight = t.autoresize_min_height, myHeight;
|
|
||||||
|
|
||||||
// Get height differently depending on the browser used
|
|
||||||
myHeight = tinymce.isIE ? b.scrollHeight : de.offsetHeight;
|
|
||||||
|
|
||||||
// Don't make it smaller than the minimum height
|
|
||||||
if (myHeight > t.autoresize_min_height)
|
|
||||||
resizeHeight = myHeight;
|
|
||||||
|
|
||||||
// Resize content element
|
|
||||||
DOM.setStyle(DOM.get(ed.id + '_ifr'), 'height', resizeHeight + 'px');
|
|
||||||
|
|
||||||
// if we're throbbing, we'll re-throb to match the new size
|
|
||||||
if (t.throbbing) {
|
|
||||||
ed.setProgressState(false);
|
|
||||||
ed.setProgressState(true);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
t.editor = ed;
|
|
||||||
|
|
||||||
// Define minimum height
|
|
||||||
t.autoresize_min_height = ed.getElement().offsetHeight;
|
|
||||||
|
|
||||||
// Add appropriate listeners for resizing content area
|
|
||||||
ed.onChange.add(resize);
|
|
||||||
ed.onSetContent.add(resize);
|
|
||||||
ed.onPaste.add(resize);
|
|
||||||
ed.onKeyUp.add(resize);
|
|
||||||
ed.onPostRender.add(resize);
|
|
||||||
|
|
||||||
if (ed.getParam('autoresize_on_init', true)) {
|
|
||||||
// Things to do when the editor is ready
|
|
||||||
ed.onInit.add(function(ed, l) {
|
|
||||||
// Show throbber until content area is resized properly
|
|
||||||
ed.setProgressState(true);
|
|
||||||
t.throbbing = true;
|
|
||||||
|
|
||||||
// Hide scrollbars
|
|
||||||
ed.getBody().style.overflowY = "hidden";
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onLoadContent.add(function(ed, l) {
|
|
||||||
resize();
|
|
||||||
|
|
||||||
// Because the content area resizes when its content CSS loads,
|
|
||||||
// and we can't easily add a listener to its onload event,
|
|
||||||
// we'll just trigger a resize after a short loading period
|
|
||||||
setTimeout(function() {
|
|
||||||
resize();
|
|
||||||
|
|
||||||
// Disable throbber
|
|
||||||
ed.setProgressState(false);
|
|
||||||
t.throbbing = false;
|
|
||||||
}, 1250);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('mceExample');
|
|
||||||
ed.addCommand('mceAutoResize', resize);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns information about the plugin as a name/value array.
|
|
||||||
* The current keys are longname, author, authorurl, infourl and version.
|
|
||||||
*
|
|
||||||
* @return {Object} Name/value array containing information about the plugin.
|
|
||||||
*/
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Auto Resize',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('autoresize', tinymce.plugins.AutoResizePlugin);
|
|
||||||
})();
|
|
@ -1 +0,0 @@
|
|||||||
(function(e){var c="autosave",g="restoredraft",b=true,f,d,a=e.util.Dispatcher;e.create("tinymce.plugins.AutoSave",{init:function(i,j){var h=this,l=i.settings;h.editor=i;function k(n){var m={s:1000,m:60000};n=/^(\d+)([ms]?)$/.exec(""+n);return(n[2]?m[n[2]]:1)*parseInt(n)}e.each({ask_before_unload:b,interval:"30s",retention:"20m",minlength:50},function(n,m){m=c+"_"+m;if(l[m]===f){l[m]=n}});l.autosave_interval=k(l.autosave_interval);l.autosave_retention=k(l.autosave_retention);i.addButton(g,{title:c+".restore_content",onclick:function(){if(i.getContent({draft:true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi,"").length>0){i.windowManager.confirm(c+".warning_message",function(m){if(m){h.restoreDraft()}})}else{h.restoreDraft()}}});i.onNodeChange.add(function(){var m=i.controlManager;if(m.get(g)){m.setDisabled(g,!h.hasDraft())}});i.onInit.add(function(){if(i.controlManager.get(g)){h.setupStorage(i);setInterval(function(){h.storeDraft();i.nodeChanged()},l.autosave_interval)}});h.onStoreDraft=new a(h);h.onRestoreDraft=new a(h);h.onRemoveDraft=new a(h);if(!d){window.onbeforeunload=e.plugins.AutoSave._beforeUnloadHandler;d=b}},getInfo:function(){return{longname:"Auto save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave",version:e.majorVersion+"."+e.minorVersion}},getExpDate:function(){return new Date(new Date().getTime()+this.editor.settings.autosave_retention).toUTCString()},setupStorage:function(i){var h=this,k=c+"_test",j="OK";h.key=c+i.id;e.each([function(){if(localStorage){localStorage.setItem(k,j);if(localStorage.getItem(k)===j){localStorage.removeItem(k);return localStorage}}},function(){if(sessionStorage){sessionStorage.setItem(k,j);if(sessionStorage.getItem(k)===j){sessionStorage.removeItem(k);return sessionStorage}}},function(){if(e.isIE){i.getElement().style.behavior="url('#default#userData')";return{autoExpires:b,setItem:function(l,n){var m=i.getElement();m.setAttribute(l,n);m.expires=h.getExpDate();try{m.save("TinyMCE")}catch(o){}},getItem:function(l){var m=i.getElement();try{m.load("TinyMCE");return m.getAttribute(l)}catch(n){return null}},removeItem:function(l){i.getElement().removeAttribute(l)}}}},],function(l){try{h.storage=l();if(h.storage){return false}}catch(m){}})},storeDraft:function(){var i=this,l=i.storage,j=i.editor,h,k;if(l){if(!l.getItem(i.key)&&!j.isDirty()){return}k=j.getContent({draft:true});if(k.length>j.settings.autosave_minlength){h=i.getExpDate();if(!i.storage.autoExpires){i.storage.setItem(i.key+"_expires",h)}i.storage.setItem(i.key,k);i.onStoreDraft.dispatch(i,{expires:h,content:k})}}},restoreDraft:function(){var h=this,i=h.storage;if(i){content=i.getItem(h.key);if(content){h.editor.setContent(content);h.onRestoreDraft.dispatch(h,{content:content})}}},hasDraft:function(){var h=this,k=h.storage,i,j;if(k){j=!!k.getItem(h.key);if(j){if(!h.storage.autoExpires){i=new Date(k.getItem(h.key+"_expires"));if(new Date().getTime()<i.getTime()){return b}h.removeDraft()}else{return b}}}return false},removeDraft:function(){var h=this,k=h.storage,i=h.key,j;if(k){j=k.getItem(i);k.removeItem(i);k.removeItem(i+"_expires");if(j){h.onRemoveDraft.dispatch(h,{content:j})}}},"static":{_beforeUnloadHandler:function(h){var i;e.each(tinyMCE.editors,function(j){if(j.plugins.autosave){j.plugins.autosave.storeDraft()}if(j.getParam("fullscreen_is_enabled")){return}if(!i&&j.isDirty()&&j.getParam("autosave_ask_before_unload")){i=j.getLang("autosave.unload_msg")}});return i}}});e.PluginManager.add("autosave",e.plugins.AutoSave)})(tinymce);
|
|
@ -1,431 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*
|
|
||||||
* Adds auto-save capability to the TinyMCE text editor to rescue content
|
|
||||||
* inadvertently lost. This plugin was originally developed by Speednet
|
|
||||||
* and that project can be found here: http://code.google.com/p/tinyautosave/
|
|
||||||
*
|
|
||||||
* TECHNOLOGY DISCUSSION:
|
|
||||||
*
|
|
||||||
* The plugin attempts to use the most advanced features available in the current browser to save
|
|
||||||
* as much content as possible. There are a total of four different methods used to autosave the
|
|
||||||
* content. In order of preference, they are:
|
|
||||||
*
|
|
||||||
* 1. localStorage - A new feature of HTML 5, localStorage can store megabytes of data per domain
|
|
||||||
* on the client computer. Data stored in the localStorage area has no expiration date, so we must
|
|
||||||
* manage expiring the data ourselves. localStorage is fully supported by IE8, and it is supposed
|
|
||||||
* to be working in Firefox 3 and Safari 3.2, but in reality is is flaky in those browsers. As
|
|
||||||
* HTML 5 gets wider support, the AutoSave plugin will use it automatically. In Windows Vista/7,
|
|
||||||
* localStorage is stored in the following folder:
|
|
||||||
* C:\Users\[username]\AppData\Local\Microsoft\Internet Explorer\DOMStore\[tempFolder]
|
|
||||||
*
|
|
||||||
* 2. sessionStorage - A new feature of HTML 5, sessionStorage works similarly to localStorage,
|
|
||||||
* except it is designed to expire after a certain amount of time. Because the specification
|
|
||||||
* around expiration date/time is very loosely-described, it is preferrable to use locaStorage and
|
|
||||||
* manage the expiration ourselves. sessionStorage has similar storage characteristics to
|
|
||||||
* localStorage, although it seems to have better support by Firefox 3 at the moment. (That will
|
|
||||||
* certainly change as Firefox continues getting better at HTML 5 adoption.)
|
|
||||||
*
|
|
||||||
* 3. UserData - A very under-exploited feature of Microsoft Internet Explorer, UserData is a
|
|
||||||
* way to store up to 128K of data per "document", or up to 1MB of data per domain, on the client
|
|
||||||
* computer. The feature is available for IE 5+, which makes it available for every version of IE
|
|
||||||
* supported by TinyMCE. The content is persistent across browser restarts and expires on the
|
|
||||||
* date/time specified, just like a cookie. However, the data is not cleared when the user clears
|
|
||||||
* cookies on the browser, which makes it well-suited for rescuing autosaved content. UserData,
|
|
||||||
* like other Microsoft IE browser technologies, is implemented as a behavior attached to a
|
|
||||||
* specific DOM object, so in this case we attach the behavior to the same DOM element that the
|
|
||||||
* TinyMCE editor instance is attached to.
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function(tinymce) {
|
|
||||||
// Setup constants to help the compressor to reduce script size
|
|
||||||
var PLUGIN_NAME = 'autosave',
|
|
||||||
RESTORE_DRAFT = 'restoredraft',
|
|
||||||
TRUE = true,
|
|
||||||
undefined,
|
|
||||||
unloadHandlerAdded,
|
|
||||||
Dispatcher = tinymce.util.Dispatcher;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This plugin adds auto-save capability to the TinyMCE text editor to rescue content
|
|
||||||
* inadvertently lost. By using localStorage.
|
|
||||||
*
|
|
||||||
* @class tinymce.plugins.AutoSave
|
|
||||||
*/
|
|
||||||
tinymce.create('tinymce.plugins.AutoSave', {
|
|
||||||
/**
|
|
||||||
* Initializes the plugin, this will be executed after the plugin has been created.
|
|
||||||
* This call is done before the editor instance has finished it's initialization so use the onInit event
|
|
||||||
* of the editor instance to intercept that event.
|
|
||||||
*
|
|
||||||
* @method init
|
|
||||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
|
|
||||||
* @param {string} url Absolute URL to where the plugin is located.
|
|
||||||
*/
|
|
||||||
init : function(ed, url) {
|
|
||||||
var self = this, settings = ed.settings;
|
|
||||||
|
|
||||||
self.editor = ed;
|
|
||||||
|
|
||||||
// Parses the specified time string into a milisecond number 10m, 10s etc.
|
|
||||||
function parseTime(time) {
|
|
||||||
var multipels = {
|
|
||||||
s : 1000,
|
|
||||||
m : 60000
|
|
||||||
};
|
|
||||||
|
|
||||||
time = /^(\d+)([ms]?)$/.exec('' + time);
|
|
||||||
|
|
||||||
return (time[2] ? multipels[time[2]] : 1) * parseInt(time);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Default config
|
|
||||||
tinymce.each({
|
|
||||||
ask_before_unload : TRUE,
|
|
||||||
interval : '30s',
|
|
||||||
retention : '20m',
|
|
||||||
minlength : 50
|
|
||||||
}, function(value, key) {
|
|
||||||
key = PLUGIN_NAME + '_' + key;
|
|
||||||
|
|
||||||
if (settings[key] === undefined)
|
|
||||||
settings[key] = value;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Parse times
|
|
||||||
settings.autosave_interval = parseTime(settings.autosave_interval);
|
|
||||||
settings.autosave_retention = parseTime(settings.autosave_retention);
|
|
||||||
|
|
||||||
// Register restore button
|
|
||||||
ed.addButton(RESTORE_DRAFT, {
|
|
||||||
title : PLUGIN_NAME + ".restore_content",
|
|
||||||
onclick : function() {
|
|
||||||
if (ed.getContent({draft: true}).replace(/\s| |<\/?p[^>]*>|<br[^>]*>/gi, "").length > 0) {
|
|
||||||
// Show confirm dialog if the editor isn't empty
|
|
||||||
ed.windowManager.confirm(
|
|
||||||
PLUGIN_NAME + ".warning_message",
|
|
||||||
function(ok) {
|
|
||||||
if (ok)
|
|
||||||
self.restoreDraft();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
} else
|
|
||||||
self.restoreDraft();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Enable/disable restoredraft button depending on if there is a draft stored or not
|
|
||||||
ed.onNodeChange.add(function() {
|
|
||||||
var controlManager = ed.controlManager;
|
|
||||||
|
|
||||||
if (controlManager.get(RESTORE_DRAFT))
|
|
||||||
controlManager.setDisabled(RESTORE_DRAFT, !self.hasDraft());
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onInit.add(function() {
|
|
||||||
// Check if the user added the restore button, then setup auto storage logic
|
|
||||||
if (ed.controlManager.get(RESTORE_DRAFT)) {
|
|
||||||
// Setup storage engine
|
|
||||||
self.setupStorage(ed);
|
|
||||||
|
|
||||||
// Auto save contents each interval time
|
|
||||||
setInterval(function() {
|
|
||||||
self.storeDraft();
|
|
||||||
ed.nodeChanged();
|
|
||||||
}, settings.autosave_interval);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This event gets fired when a draft is stored to local storage.
|
|
||||||
*
|
|
||||||
* @event onStoreDraft
|
|
||||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event.
|
|
||||||
* @param {Object} draft Draft object containing the HTML contents of the editor.
|
|
||||||
*/
|
|
||||||
self.onStoreDraft = new Dispatcher(self);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This event gets fired when a draft is restored from local storage.
|
|
||||||
*
|
|
||||||
* @event onStoreDraft
|
|
||||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event.
|
|
||||||
* @param {Object} draft Draft object containing the HTML contents of the editor.
|
|
||||||
*/
|
|
||||||
self.onRestoreDraft = new Dispatcher(self);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This event gets fired when a draft removed/expired.
|
|
||||||
*
|
|
||||||
* @event onRemoveDraft
|
|
||||||
* @param {tinymce.plugins.AutoSave} sender Plugin instance sending the event.
|
|
||||||
* @param {Object} draft Draft object containing the HTML contents of the editor.
|
|
||||||
*/
|
|
||||||
self.onRemoveDraft = new Dispatcher(self);
|
|
||||||
|
|
||||||
// Add ask before unload dialog only add one unload handler
|
|
||||||
if (!unloadHandlerAdded) {
|
|
||||||
window.onbeforeunload = tinymce.plugins.AutoSave._beforeUnloadHandler;
|
|
||||||
unloadHandlerAdded = TRUE;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns information about the plugin as a name/value array.
|
|
||||||
* The current keys are longname, author, authorurl, infourl and version.
|
|
||||||
*
|
|
||||||
* @method getInfo
|
|
||||||
* @return {Object} Name/value array containing information about the plugin.
|
|
||||||
*/
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Auto save',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autosave',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an expiration date UTC string.
|
|
||||||
*
|
|
||||||
* @method getExpDate
|
|
||||||
* @return {String} Expiration date UTC string.
|
|
||||||
*/
|
|
||||||
getExpDate : function() {
|
|
||||||
return new Date(
|
|
||||||
new Date().getTime() + this.editor.settings.autosave_retention
|
|
||||||
).toUTCString();
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will setup the storage engine. If the browser has support for it.
|
|
||||||
*
|
|
||||||
* @method setupStorage
|
|
||||||
*/
|
|
||||||
setupStorage : function(ed) {
|
|
||||||
var self = this, testKey = PLUGIN_NAME + '_test', testVal = "OK";
|
|
||||||
|
|
||||||
self.key = PLUGIN_NAME + ed.id;
|
|
||||||
|
|
||||||
// Loop though each storage engine type until we find one that works
|
|
||||||
tinymce.each([
|
|
||||||
function() {
|
|
||||||
// Try HTML5 Local Storage
|
|
||||||
if (localStorage) {
|
|
||||||
localStorage.setItem(testKey, testVal);
|
|
||||||
|
|
||||||
if (localStorage.getItem(testKey) === testVal) {
|
|
||||||
localStorage.removeItem(testKey);
|
|
||||||
|
|
||||||
return localStorage;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
function() {
|
|
||||||
// Try HTML5 Session Storage
|
|
||||||
if (sessionStorage) {
|
|
||||||
sessionStorage.setItem(testKey, testVal);
|
|
||||||
|
|
||||||
if (sessionStorage.getItem(testKey) === testVal) {
|
|
||||||
sessionStorage.removeItem(testKey);
|
|
||||||
|
|
||||||
return sessionStorage;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
function() {
|
|
||||||
// Try IE userData
|
|
||||||
if (tinymce.isIE) {
|
|
||||||
ed.getElement().style.behavior = "url('#default#userData')";
|
|
||||||
|
|
||||||
// Fake localStorage on old IE
|
|
||||||
return {
|
|
||||||
autoExpires : TRUE,
|
|
||||||
|
|
||||||
setItem : function(key, value) {
|
|
||||||
var userDataElement = ed.getElement();
|
|
||||||
|
|
||||||
userDataElement.setAttribute(key, value);
|
|
||||||
userDataElement.expires = self.getExpDate();
|
|
||||||
|
|
||||||
try {
|
|
||||||
userDataElement.save("TinyMCE");
|
|
||||||
} catch (e) {
|
|
||||||
// Ignore, saving might fail if "Userdata Persistence" is disabled in IE
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getItem : function(key) {
|
|
||||||
var userDataElement = ed.getElement();
|
|
||||||
|
|
||||||
try {
|
|
||||||
userDataElement.load("TinyMCE");
|
|
||||||
return userDataElement.getAttribute(key);
|
|
||||||
} catch (e) {
|
|
||||||
// Ignore, loading might fail if "Userdata Persistence" is disabled in IE
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
removeItem : function(key) {
|
|
||||||
ed.getElement().removeAttribute(key);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
},
|
|
||||||
], function(setup) {
|
|
||||||
// Try executing each function to find a suitable storage engine
|
|
||||||
try {
|
|
||||||
self.storage = setup();
|
|
||||||
|
|
||||||
if (self.storage)
|
|
||||||
return false;
|
|
||||||
} catch (e) {
|
|
||||||
// Ignore
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will store the current contents in the the storage engine.
|
|
||||||
*
|
|
||||||
* @method storeDraft
|
|
||||||
*/
|
|
||||||
storeDraft : function() {
|
|
||||||
var self = this, storage = self.storage, editor = self.editor, expires, content;
|
|
||||||
|
|
||||||
// Is the contents dirty
|
|
||||||
if (storage) {
|
|
||||||
// If there is no existing key and the contents hasn't been changed since
|
|
||||||
// it's original value then there is no point in saving a draft
|
|
||||||
if (!storage.getItem(self.key) && !editor.isDirty())
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Store contents if the contents if longer than the minlength of characters
|
|
||||||
content = editor.getContent({draft: true});
|
|
||||||
if (content.length > editor.settings.autosave_minlength) {
|
|
||||||
expires = self.getExpDate();
|
|
||||||
|
|
||||||
// Store expiration date if needed IE userData has auto expire built in
|
|
||||||
if (!self.storage.autoExpires)
|
|
||||||
self.storage.setItem(self.key + "_expires", expires);
|
|
||||||
|
|
||||||
self.storage.setItem(self.key, content);
|
|
||||||
self.onStoreDraft.dispatch(self, {
|
|
||||||
expires : expires,
|
|
||||||
content : content
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will restore the contents from the storage engine back to the editor.
|
|
||||||
*
|
|
||||||
* @method restoreDraft
|
|
||||||
*/
|
|
||||||
restoreDraft : function() {
|
|
||||||
var self = this, storage = self.storage;
|
|
||||||
|
|
||||||
if (storage) {
|
|
||||||
content = storage.getItem(self.key);
|
|
||||||
|
|
||||||
if (content) {
|
|
||||||
self.editor.setContent(content);
|
|
||||||
self.onRestoreDraft.dispatch(self, {
|
|
||||||
content : content
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will return true/false if there is a local storage draft available.
|
|
||||||
*
|
|
||||||
* @method hasDraft
|
|
||||||
* @return {boolean} true/false state if there is a local draft.
|
|
||||||
*/
|
|
||||||
hasDraft : function() {
|
|
||||||
var self = this, storage = self.storage, expDate, exists;
|
|
||||||
|
|
||||||
if (storage) {
|
|
||||||
// Does the item exist at all
|
|
||||||
exists = !!storage.getItem(self.key);
|
|
||||||
if (exists) {
|
|
||||||
// Storage needs autoexpire
|
|
||||||
if (!self.storage.autoExpires) {
|
|
||||||
expDate = new Date(storage.getItem(self.key + "_expires"));
|
|
||||||
|
|
||||||
// Contents hasn't expired
|
|
||||||
if (new Date().getTime() < expDate.getTime())
|
|
||||||
return TRUE;
|
|
||||||
|
|
||||||
// Remove it if it has
|
|
||||||
self.removeDraft();
|
|
||||||
} else
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the currently stored draft.
|
|
||||||
*
|
|
||||||
* @method removeDraft
|
|
||||||
*/
|
|
||||||
removeDraft : function() {
|
|
||||||
var self = this, storage = self.storage, key = self.key, content;
|
|
||||||
|
|
||||||
if (storage) {
|
|
||||||
// Get current contents and remove the existing draft
|
|
||||||
content = storage.getItem(key);
|
|
||||||
storage.removeItem(key);
|
|
||||||
storage.removeItem(key + "_expires");
|
|
||||||
|
|
||||||
// Dispatch remove event if we had any contents
|
|
||||||
if (content) {
|
|
||||||
self.onRemoveDraft.dispatch(self, {
|
|
||||||
content : content
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
"static" : {
|
|
||||||
// Internal unload handler will be called before the page is unloaded
|
|
||||||
_beforeUnloadHandler : function(e) {
|
|
||||||
var msg;
|
|
||||||
|
|
||||||
tinymce.each(tinyMCE.editors, function(ed) {
|
|
||||||
// Store a draft for each editor instance
|
|
||||||
if (ed.plugins.autosave)
|
|
||||||
ed.plugins.autosave.storeDraft();
|
|
||||||
|
|
||||||
// Never ask in fullscreen mode
|
|
||||||
if (ed.getParam("fullscreen_is_enabled"))
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Setup a return message if the editor is dirty
|
|
||||||
if (!msg && ed.isDirty() && ed.getParam("autosave_ask_before_unload"))
|
|
||||||
msg = ed.getLang("autosave.unload_msg");
|
|
||||||
});
|
|
||||||
|
|
||||||
return msg;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
tinymce.PluginManager.add('autosave', tinymce.plugins.AutoSave);
|
|
||||||
})(tinymce);
|
|
@ -1,4 +0,0 @@
|
|||||||
tinyMCE.addI18n('en.autosave',{
|
|
||||||
restore_content: "Restore auto-saved content",
|
|
||||||
warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?"
|
|
||||||
});
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(a,b){var d=this,c=a.getParam("bbcode_dialect","punbb").toLowerCase();a.onBeforeSetContent.add(function(e,f){f.content=d["_"+c+"_bbcode2html"](f.content)});a.onPostProcess.add(function(e,f){if(f.set){f.content=d["_"+c+"_bbcode2html"](f.content)}if(f.get){f.content=d["_"+c+"_html2bbcode"](f.content)}})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_punbb_html2bbcode:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");b(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");b(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");b(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");b(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]");b(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");b(/<font>(.*?)<\/font>/gi,"$1");b(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");b(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]");b(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]");b(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");b(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");b(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");b(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");b(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");b(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");b(/<\/(strong|b)>/gi,"[/b]");b(/<(strong|b)>/gi,"[b]");b(/<\/(em|i)>/gi,"[/i]");b(/<(em|i)>/gi,"[i]");b(/<\/u>/gi,"[/u]");b(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");b(/<u>/gi,"[u]");b(/<blockquote[^>]*>/gi,"[quote]");b(/<\/blockquote>/gi,"[/quote]");b(/<br \/>/gi,"\n");b(/<br\/>/gi,"\n");b(/<br>/gi,"\n");b(/<p>/gi,"");b(/<\/p>/gi,"\n");b(/ |\u00a0/gi," ");b(/"/gi,'"');b(/</gi,"<");b(/>/gi,">");b(/&/gi,"&");return a},_punbb_bbcode2html:function(a){a=tinymce.trim(a);function b(c,d){a=a.replace(c,d)}b(/\n/gi,"<br />");b(/\[b\]/gi,"<strong>");b(/\[\/b\]/gi,"</strong>");b(/\[i\]/gi,"<em>");b(/\[\/i\]/gi,"</em>");b(/\[u\]/gi,"<u>");b(/\[\/u\]/gi,"</u>");b(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>');b(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>');b(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />');b(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>');b(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span> ');b(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span> ');return a}});tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)})();
|
|
@ -1,120 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
tinymce.create('tinymce.plugins.BBCodePlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase();
|
|
||||||
|
|
||||||
ed.onBeforeSetContent.add(function(ed, o) {
|
|
||||||
o.content = t['_' + dialect + '_bbcode2html'](o.content);
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onPostProcess.add(function(ed, o) {
|
|
||||||
if (o.set)
|
|
||||||
o.content = t['_' + dialect + '_bbcode2html'](o.content);
|
|
||||||
|
|
||||||
if (o.get)
|
|
||||||
o.content = t['_' + dialect + '_html2bbcode'](o.content);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'BBCode Plugin',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcode',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
// Private methods
|
|
||||||
|
|
||||||
// HTML -> BBCode in PunBB dialect
|
|
||||||
_punbb_html2bbcode : function(s) {
|
|
||||||
s = tinymce.trim(s);
|
|
||||||
|
|
||||||
function rep(re, str) {
|
|
||||||
s = s.replace(re, str);
|
|
||||||
};
|
|
||||||
|
|
||||||
// example: <strong> to [b]
|
|
||||||
rep(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]");
|
|
||||||
rep(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");
|
|
||||||
rep(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");
|
|
||||||
rep(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]");
|
|
||||||
rep(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]");
|
|
||||||
rep(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]");
|
|
||||||
rep(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]");
|
|
||||||
rep(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]");
|
|
||||||
rep(/<font>(.*?)<\/font>/gi,"$1");
|
|
||||||
rep(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]");
|
|
||||||
rep(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]");
|
|
||||||
rep(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]");
|
|
||||||
rep(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]");
|
|
||||||
rep(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]");
|
|
||||||
rep(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]");
|
|
||||||
rep(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]");
|
|
||||||
rep(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]");
|
|
||||||
rep(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]");
|
|
||||||
rep(/<\/(strong|b)>/gi,"[/b]");
|
|
||||||
rep(/<(strong|b)>/gi,"[b]");
|
|
||||||
rep(/<\/(em|i)>/gi,"[/i]");
|
|
||||||
rep(/<(em|i)>/gi,"[i]");
|
|
||||||
rep(/<\/u>/gi,"[/u]");
|
|
||||||
rep(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]");
|
|
||||||
rep(/<u>/gi,"[u]");
|
|
||||||
rep(/<blockquote[^>]*>/gi,"[quote]");
|
|
||||||
rep(/<\/blockquote>/gi,"[/quote]");
|
|
||||||
rep(/<br \/>/gi,"\n");
|
|
||||||
rep(/<br\/>/gi,"\n");
|
|
||||||
rep(/<br>/gi,"\n");
|
|
||||||
rep(/<p>/gi,"");
|
|
||||||
rep(/<\/p>/gi,"\n");
|
|
||||||
rep(/ |\u00a0/gi," ");
|
|
||||||
rep(/"/gi,"\"");
|
|
||||||
rep(/</gi,"<");
|
|
||||||
rep(/>/gi,">");
|
|
||||||
rep(/&/gi,"&");
|
|
||||||
|
|
||||||
return s;
|
|
||||||
},
|
|
||||||
|
|
||||||
// BBCode -> HTML from PunBB dialect
|
|
||||||
_punbb_bbcode2html : function(s) {
|
|
||||||
s = tinymce.trim(s);
|
|
||||||
|
|
||||||
function rep(re, str) {
|
|
||||||
s = s.replace(re, str);
|
|
||||||
};
|
|
||||||
|
|
||||||
// example: [b] to <strong>
|
|
||||||
rep(/\n/gi,"<br />");
|
|
||||||
rep(/\[b\]/gi,"<strong>");
|
|
||||||
rep(/\[\/b\]/gi,"</strong>");
|
|
||||||
rep(/\[i\]/gi,"<em>");
|
|
||||||
rep(/\[\/i\]/gi,"</em>");
|
|
||||||
rep(/\[u\]/gi,"<u>");
|
|
||||||
rep(/\[\/u\]/gi,"</u>");
|
|
||||||
rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"<a href=\"$1\">$2</a>");
|
|
||||||
rep(/\[url\](.*?)\[\/url\]/gi,"<a href=\"$1\">$1</a>");
|
|
||||||
rep(/\[img\](.*?)\[\/img\]/gi,"<img src=\"$1\" />");
|
|
||||||
rep(/\[color=(.*?)\](.*?)\[\/color\]/gi,"<font color=\"$1\">$2</font>");
|
|
||||||
rep(/\[code\](.*?)\[\/code\]/gi,"<span class=\"codeStyle\">$1</span> ");
|
|
||||||
rep(/\[quote.*?\](.*?)\[\/quote\]/gi,"<span class=\"quoteStyle\">$1</span> ");
|
|
||||||
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('bbcode', tinymce.plugins.BBCodePlugin);
|
|
||||||
})();
|
|
@ -1 +0,0 @@
|
|||||||
(function(){var a=tinymce.dom.Event,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.ContextMenu",{init:function(d){var f=this,g;f.editor=d;f.onContextMenu=new tinymce.util.Dispatcher(this);d.onContextMenu.add(function(h,i){if(!i.ctrlKey){if(g){h.selection.setRng(g)}f._getMenu(h).showMenu(i.clientX,i.clientY);a.add(h.getDoc(),"click",function(j){e(h,j)});a.cancel(i)}});d.onRemove.add(function(){if(f._menu){f._menu.removeAll()}});function e(h,i){g=null;if(i&&i.button==2){g=h.selection.getRng();return}if(f._menu){f._menu.removeAll();f._menu.destroy();a.remove(h.getDoc(),"click",e)}}d.onMouseDown.add(e);d.onKeyDown.add(e)},getInfo:function(){return{longname:"Contextmenu",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_getMenu:function(h){var l=this,f=l._menu,i=h.selection,e=i.isCollapsed(),d=i.getNode()||h.getBody(),g,k,j;if(f){f.removeAll();f.destroy()}k=b.getPos(h.getContentAreaContainer());j=b.getPos(h.getContainer());f=h.controlManager.createDropMenu("contextmenu",{offset_x:k.x+h.getParam("contextmenu_offset_x",0),offset_y:k.y+h.getParam("contextmenu_offset_y",0),constrain:1});l._menu=f;f.add({title:"advanced.cut_desc",icon:"cut",cmd:"Cut"}).setDisabled(e);f.add({title:"advanced.copy_desc",icon:"copy",cmd:"Copy"}).setDisabled(e);f.add({title:"advanced.paste_desc",icon:"paste",cmd:"Paste"});if((d.nodeName=="A"&&!h.dom.getAttrib(d,"name"))||!e){f.addSeparator();f.add({title:"advanced.link_desc",icon:"link",cmd:h.plugins.advlink?"mceAdvLink":"mceLink",ui:true});f.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"})}f.addSeparator();f.add({title:"advanced.image_desc",icon:"image",cmd:h.plugins.advimage?"mceAdvImage":"mceImage",ui:true});f.addSeparator();g=f.addMenu({title:"contextmenu.align"});g.add({title:"contextmenu.left",icon:"justifyleft",cmd:"JustifyLeft"});g.add({title:"contextmenu.center",icon:"justifycenter",cmd:"JustifyCenter"});g.add({title:"contextmenu.right",icon:"justifyright",cmd:"JustifyRight"});g.add({title:"contextmenu.full",icon:"justifyfull",cmd:"JustifyFull"});l.onContextMenu.dispatch(l,f,d,e);return f}});tinymce.PluginManager.add("contextmenu",tinymce.plugins.ContextMenu)})();
|
|
@ -1,147 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var Event = tinymce.dom.Event, each = tinymce.each, DOM = tinymce.DOM;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This plugin a context menu to TinyMCE editor instances.
|
|
||||||
*
|
|
||||||
* @class tinymce.plugins.ContextMenu
|
|
||||||
*/
|
|
||||||
tinymce.create('tinymce.plugins.ContextMenu', {
|
|
||||||
/**
|
|
||||||
* Initializes the plugin, this will be executed after the plugin has been created.
|
|
||||||
* This call is done before the editor instance has finished it's initialization so use the onInit event
|
|
||||||
* of the editor instance to intercept that event.
|
|
||||||
*
|
|
||||||
* @method init
|
|
||||||
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
|
|
||||||
* @param {string} url Absolute URL to where the plugin is located.
|
|
||||||
*/
|
|
||||||
init : function(ed) {
|
|
||||||
var t = this, lastRng;
|
|
||||||
|
|
||||||
t.editor = ed;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This event gets fired when the context menu is shown.
|
|
||||||
*
|
|
||||||
* @event onContextMenu
|
|
||||||
* @param {tinymce.plugins.ContextMenu} sender Plugin instance sending the event.
|
|
||||||
* @param {tinymce.ui.DropMenu} menu Drop down menu to fill with more items if needed.
|
|
||||||
*/
|
|
||||||
t.onContextMenu = new tinymce.util.Dispatcher(this);
|
|
||||||
|
|
||||||
ed.onContextMenu.add(function(ed, e) {
|
|
||||||
if (!e.ctrlKey) {
|
|
||||||
// Restore the last selection since it was removed
|
|
||||||
if (lastRng)
|
|
||||||
ed.selection.setRng(lastRng);
|
|
||||||
|
|
||||||
t._getMenu(ed).showMenu(e.clientX, e.clientY);
|
|
||||||
Event.add(ed.getDoc(), 'click', function(e) {
|
|
||||||
hide(ed, e);
|
|
||||||
});
|
|
||||||
Event.cancel(e);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.onRemove.add(function() {
|
|
||||||
if (t._menu)
|
|
||||||
t._menu.removeAll();
|
|
||||||
});
|
|
||||||
|
|
||||||
function hide(ed, e) {
|
|
||||||
lastRng = null;
|
|
||||||
|
|
||||||
// Since the contextmenu event moves
|
|
||||||
// the selection we need to store it away
|
|
||||||
if (e && e.button == 2) {
|
|
||||||
lastRng = ed.selection.getRng();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (t._menu) {
|
|
||||||
t._menu.removeAll();
|
|
||||||
t._menu.destroy();
|
|
||||||
Event.remove(ed.getDoc(), 'click', hide);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
ed.onMouseDown.add(hide);
|
|
||||||
ed.onKeyDown.add(hide);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns information about the plugin as a name/value array.
|
|
||||||
* The current keys are longname, author, authorurl, infourl and version.
|
|
||||||
*
|
|
||||||
* @method getInfo
|
|
||||||
* @return {Object} Name/value array containing information about the plugin.
|
|
||||||
*/
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Contextmenu',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/contextmenu',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
_getMenu : function(ed) {
|
|
||||||
var t = this, m = t._menu, se = ed.selection, col = se.isCollapsed(), el = se.getNode() || ed.getBody(), am, p1, p2;
|
|
||||||
|
|
||||||
if (m) {
|
|
||||||
m.removeAll();
|
|
||||||
m.destroy();
|
|
||||||
}
|
|
||||||
|
|
||||||
p1 = DOM.getPos(ed.getContentAreaContainer());
|
|
||||||
p2 = DOM.getPos(ed.getContainer());
|
|
||||||
|
|
||||||
m = ed.controlManager.createDropMenu('contextmenu', {
|
|
||||||
offset_x : p1.x + ed.getParam('contextmenu_offset_x', 0),
|
|
||||||
offset_y : p1.y + ed.getParam('contextmenu_offset_y', 0),
|
|
||||||
constrain : 1
|
|
||||||
});
|
|
||||||
|
|
||||||
t._menu = m;
|
|
||||||
|
|
||||||
m.add({title : 'advanced.cut_desc', icon : 'cut', cmd : 'Cut'}).setDisabled(col);
|
|
||||||
m.add({title : 'advanced.copy_desc', icon : 'copy', cmd : 'Copy'}).setDisabled(col);
|
|
||||||
m.add({title : 'advanced.paste_desc', icon : 'paste', cmd : 'Paste'});
|
|
||||||
|
|
||||||
if ((el.nodeName == 'A' && !ed.dom.getAttrib(el, 'name')) || !col) {
|
|
||||||
m.addSeparator();
|
|
||||||
m.add({title : 'advanced.link_desc', icon : 'link', cmd : ed.plugins.advlink ? 'mceAdvLink' : 'mceLink', ui : true});
|
|
||||||
m.add({title : 'advanced.unlink_desc', icon : 'unlink', cmd : 'UnLink'});
|
|
||||||
}
|
|
||||||
|
|
||||||
m.addSeparator();
|
|
||||||
m.add({title : 'advanced.image_desc', icon : 'image', cmd : ed.plugins.advimage ? 'mceAdvImage' : 'mceImage', ui : true});
|
|
||||||
|
|
||||||
m.addSeparator();
|
|
||||||
am = m.addMenu({title : 'contextmenu.align'});
|
|
||||||
am.add({title : 'contextmenu.left', icon : 'justifyleft', cmd : 'JustifyLeft'});
|
|
||||||
am.add({title : 'contextmenu.center', icon : 'justifycenter', cmd : 'JustifyCenter'});
|
|
||||||
am.add({title : 'contextmenu.right', icon : 'justifyright', cmd : 'JustifyRight'});
|
|
||||||
am.add({title : 'contextmenu.full', icon : 'justifyfull', cmd : 'JustifyFull'});
|
|
||||||
|
|
||||||
t.onContextMenu.dispatch(t, m, el, col);
|
|
||||||
|
|
||||||
return m;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('contextmenu', tinymce.plugins.ContextMenu);
|
|
||||||
})();
|
|
@ -1 +0,0 @@
|
|||||||
(function(){tinymce.create("tinymce.plugins.Directionality",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceDirectionLTR",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="ltr"){a.dom.setAttrib(d,"dir","ltr")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addCommand("mceDirectionRTL",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="rtl"){a.dom.setAttrib(d,"dir","rtl")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});a.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});a.onNodeChange.add(c._nodeChange,c)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})();
|
|
@ -1,82 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
tinymce.create('tinymce.plugins.Directionality', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
var t = this;
|
|
||||||
|
|
||||||
t.editor = ed;
|
|
||||||
|
|
||||||
ed.addCommand('mceDirectionLTR', function() {
|
|
||||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock);
|
|
||||||
|
|
||||||
if (e) {
|
|
||||||
if (ed.dom.getAttrib(e, "dir") != "ltr")
|
|
||||||
ed.dom.setAttrib(e, "dir", "ltr");
|
|
||||||
else
|
|
||||||
ed.dom.setAttrib(e, "dir", "");
|
|
||||||
}
|
|
||||||
|
|
||||||
ed.nodeChanged();
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.addCommand('mceDirectionRTL', function() {
|
|
||||||
var e = ed.dom.getParent(ed.selection.getNode(), ed.dom.isBlock);
|
|
||||||
|
|
||||||
if (e) {
|
|
||||||
if (ed.dom.getAttrib(e, "dir") != "rtl")
|
|
||||||
ed.dom.setAttrib(e, "dir", "rtl");
|
|
||||||
else
|
|
||||||
ed.dom.setAttrib(e, "dir", "");
|
|
||||||
}
|
|
||||||
|
|
||||||
ed.nodeChanged();
|
|
||||||
});
|
|
||||||
|
|
||||||
ed.addButton('ltr', {title : 'directionality.ltr_desc', cmd : 'mceDirectionLTR'});
|
|
||||||
ed.addButton('rtl', {title : 'directionality.rtl_desc', cmd : 'mceDirectionRTL'});
|
|
||||||
|
|
||||||
ed.onNodeChange.add(t._nodeChange, t);
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Directionality',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
// Private methods
|
|
||||||
|
|
||||||
_nodeChange : function(ed, cm, n) {
|
|
||||||
var dom = ed.dom, dir;
|
|
||||||
|
|
||||||
n = dom.getParent(n, dom.isBlock);
|
|
||||||
if (!n) {
|
|
||||||
cm.setDisabled('ltr', 1);
|
|
||||||
cm.setDisabled('rtl', 1);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
dir = dom.getAttrib(n, 'dir');
|
|
||||||
cm.setActive('ltr', dir == "ltr");
|
|
||||||
cm.setDisabled('ltr', 0);
|
|
||||||
cm.setActive('rtl', dir == "rtl");
|
|
||||||
cm.setDisabled('rtl', 0);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('directionality', tinymce.plugins.Directionality);
|
|
||||||
})();
|
|
@ -1 +0,0 @@
|
|||||||
(function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce);
|
|
@ -1,43 +0,0 @@
|
|||||||
/**
|
|
||||||
* editor_plugin_src.js
|
|
||||||
*
|
|
||||||
* Copyright 2009, Moxiecode Systems AB
|
|
||||||
* Released under LGPL License.
|
|
||||||
*
|
|
||||||
* License: http://tinymce.moxiecode.com/license
|
|
||||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function(tinymce) {
|
|
||||||
tinymce.create('tinymce.plugins.EmotionsPlugin', {
|
|
||||||
init : function(ed, url) {
|
|
||||||
// Register commands
|
|
||||||
ed.addCommand('mceEmotion', function() {
|
|
||||||
ed.windowManager.open({
|
|
||||||
file : url + '/emotions.htm',
|
|
||||||
width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)),
|
|
||||||
height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)),
|
|
||||||
inline : 1
|
|
||||||
}, {
|
|
||||||
plugin_url : url
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register buttons
|
|
||||||
ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'});
|
|
||||||
},
|
|
||||||
|
|
||||||
getInfo : function() {
|
|
||||||
return {
|
|
||||||
longname : 'Emotions',
|
|
||||||
author : 'Moxiecode Systems AB',
|
|
||||||
authorurl : 'http://tinymce.moxiecode.com',
|
|
||||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions',
|
|
||||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Register plugin
|
|
||||||
tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin);
|
|
||||||
})(tinymce);
|
|
@ -1,40 +0,0 @@
|
|||||||
<!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>
|
|
||||||
<title>{#emotions_dlg.title}</title>
|
|
||||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
|
||||||
<script type="text/javascript" src="js/emotions.js"></script>
|
|
||||||
</head>
|
|
||||||
<body style="display: none">
|
|
||||||
<div align="center">
|
|
||||||
<div class="title">{#emotions_dlg.title}:<br /><br /></div>
|
|
||||||
|
|
||||||
<table border="0" cellspacing="0" cellpadding="4">
|
|
||||||
<tr>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-cool.gif','emotions_dlg.cool');"><img src="img/smiley-cool.gif" width="18" height="18" border="0" alt="{#emotions_dlg.cool}" title="{#emotions_dlg.cool}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-cry.gif','emotions_dlg.cry');"><img src="img/smiley-cry.gif" width="18" height="18" border="0" alt="{#emotions_dlg.cry}" title="{#emotions_dlg.cry}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-embarassed.gif','emotions_dlg.embarassed');"><img src="img/smiley-embarassed.gif" width="18" height="18" border="0" alt="{#emotions_dlg.embarassed}" title="{#emotions_dlg.embarassed}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-foot-in-mouth.gif','emotions_dlg.foot_in_mouth');"><img src="img/smiley-foot-in-mouth.gif" width="18" height="18" border="0" alt="{#emotions_dlg.foot_in_mouth}" title="{#emotions_dlg.foot_in_mouth}" /></a></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-frown.gif','emotions_dlg.frown');"><img src="img/smiley-frown.gif" width="18" height="18" border="0" alt="{#emotions_dlg.frown}" title="{#emotions_dlg.frown}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-innocent.gif','emotions_dlg.innocent');"><img src="img/smiley-innocent.gif" width="18" height="18" border="0" alt="{#emotions_dlg.innocent}" title="{#emotions_dlg.innocent}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-kiss.gif','emotions_dlg.kiss');"><img src="img/smiley-kiss.gif" width="18" height="18" border="0" alt="{#emotions_dlg.kiss}" title="{#emotions_dlg.kiss}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-laughing.gif','emotions_dlg.laughing');"><img src="img/smiley-laughing.gif" width="18" height="18" border="0" alt="{#emotions_dlg.laughing}" title="{#emotions_dlg.laughing}" /></a></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-money-mouth.gif','emotions_dlg.money_mouth');"><img src="img/smiley-money-mouth.gif" width="18" height="18" border="0" alt="{#emotions_dlg.money_mouth}" title="{#emotions_dlg.money_mouth}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-sealed.gif','emotions_dlg.sealed');"><img src="img/smiley-sealed.gif" width="18" height="18" border="0" alt="{#emotions_dlg.sealed}" title="{#emotions_dlg.sealed}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-smile.gif','emotions_dlg.smile');"><img src="img/smiley-smile.gif" width="18" height="18" border="0" alt="{#emotions_dlg.smile}" title="{#emotions_dlg.smile}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-surprised.gif','emotions_dlg.surprised');"><img src="img/smiley-surprised.gif" width="18" height="18" border="0" alt="{#emotions_dlg.surprised}" title="{#emotions_dlg.surprised}" /></a></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-tongue-out.gif','emotions_dlg.tongue_out');"><img src="img/smiley-tongue-out.gif" width="18" height="18" border="0" alt="{#emotions_dlg.tongue-out}" title="{#emotions_dlg.tongue_out}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-undecided.gif','emotions_dlg.undecided');"><img src="img/smiley-undecided.gif" width="18" height="18" border="0" alt="{#emotions_dlg.undecided}" title="{#emotions_dlg.undecided}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-wink.gif','emotions_dlg.wink');"><img src="img/smiley-wink.gif" width="18" height="18" border="0" alt="{#emotions_dlg.wink}" title="{#emotions_dlg.wink}" /></a></td>
|
|
||||||
<td><a href="javascript:EmotionsDialog.insert('smiley-yell.gif','emotions_dlg.yell');"><img src="img/smiley-yell.gif" width="18" height="18" border="0" alt="{#emotions_dlg.yell}" title="{#emotions_dlg.yell}" /></a></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 329 B |