[freeside-commits] freeside/httemplate/elements/fckeditor/editor/plugins/placeholder fck_placeholder.html, NONE, 1.1.2.2 fckplugin.js, NONE, 1.1.2.2 placeholder.gif, NONE, 1.1.2.2
Ivan,,,
ivan at wavetail.420.am
Mon Jun 16 20:58:45 PDT 2008
- Previous message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/lang _getfontformat.html, NONE, 1.1.2.2 _translationstatus.txt, NONE, 1.1.2.2 af.js, NONE, 1.1.2.2 ar.js, NONE, 1.1.2.2 bg.js, NONE, 1.1.2.2 bn.js, NONE, 1.1.2.2 bs.js, NONE, 1.1.2.2 ca.js, NONE, 1.1.2.2 cs.js, NONE, 1.1.2.2 da.js, NONE, 1.1.2.2 de.js, NONE, 1.1.2.2 el.js, NONE, 1.1.2.2 en-au.js, NONE, 1.1.2.2 en-ca.js, NONE, 1.1.2.2 en-uk.js, NONE, 1.1.2.2 en.js, NONE, 1.1.2.2 eo.js, NONE, 1.1.2.2 es.js, NONE, 1.1.2.2 et.js, NONE, 1.1.2.2 eu.js, NONE, 1.1.2.2 fa.js, NONE, 1.1.2.2 fi.js, NONE, 1.1.2.2 fo.js, NONE, 1.1.2.2 fr.js, NONE, 1.1.2.2 gl.js, NONE, 1.1.2.2 he.js, NONE, 1.1.2.2 hi.js, NONE, 1.1.2.2 hr.js, NONE, 1.1.2.2 hu.js, NONE, 1.1.2.2 it.js, NONE, 1.1.2.2 ja.js, NONE, 1.1.2.2 km.js, NONE, 1.1.2.2 ko.js, NONE, 1.1.2.2 lt.js, NONE, 1.1.2.2 lv.js, NONE, 1.1.2.2 mn.js, NONE, 1.1.2.2 ms.js, NONE, 1.1.2.2 nb.js, NONE, 1.1.2.2 nl.js, NONE, 1.1.2.2 no.js, NONE, 1.1.2.2 pl.js, NONE, 1.1.2.2 pt-br.js, NONE, 1.1.2.2 pt.js, NONE, 1.1.2.2 ro.js, NONE, 1.1.2.2 ru.js, NONE, 1.1.2.2 sk.js, NONE, 1.1.2.2 sl.js, NONE, 1.1.2.2 sr-latn.js, NONE, 1.1.2.2 sr.js, NONE, 1.1.2.2 sv.js, NONE, 1.1.2.2 th.js, NONE, 1.1.2.2 tr.js, NONE, 1.1.2.2 uk.js, NONE, 1.1.2.2 vi.js, NONE, 1.1.2.2 zh-cn.js, NONE, 1.1.2.2 zh.js, NONE, 1.1.2.2
- Next message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/plugins/placeholder/lang de.js, NONE, 1.1.2.2 en.js, NONE, 1.1.2.2 fr.js, NONE, 1.1.2.2 it.js, NONE, 1.1.2.2 pl.js, NONE, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/elements/fckeditor/editor/plugins/placeholder
In directory wavetail.420.am:/tmp/cvs-serv697/fckeditor/editor/plugins/placeholder
Added Files:
Tag: FREESIDE_1_7_BRANCH
fck_placeholder.html fckplugin.js placeholder.gif
Log Message:
adding fckeditor on _17_BRANCH, for customer notices
--- NEW FILE: placeholder.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: fckplugin.js ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: fck_placeholder.html ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Placeholder Plugin.
-->
<html>
<head>
<title>Placeholder Properties</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="noindex, nofollow" name="robots">
<script language="javascript">
var oEditor = window.parent.InnerDialogLoaded() ;
var FCKLang = oEditor.FCKLang ;
var FCKPlaceholders = oEditor.FCKPlaceholders ;
window.onload = function ()
{
// First of all, translate the dialog box texts
oEditor.FCKLanguageManager.TranslatePage( document ) ;
LoadSelected() ;
// Show the "Ok" button.
window.parent.SetOkButton( true ) ;
}
var eSelected = oEditor.FCKSelection.GetSelectedElement() ;
function LoadSelected()
{
if ( !eSelected )
return ;
if ( eSelected.tagName == 'SPAN' && eSelected._fckplaceholder )
document.getElementById('txtName').value = eSelected._fckplaceholder ;
else
eSelected == null ;
}
function Ok()
{
var sValue = document.getElementById('txtName').value ;
if ( eSelected && eSelected._fckplaceholder == sValue )
return true ;
if ( sValue.length == 0 )
{
alert( FCKLang.PlaceholderErrNoName ) ;
return false ;
}
if ( FCKPlaceholders.Exist( sValue ) )
{
alert( FCKLang.PlaceholderErrNameInUse ) ;
return false ;
}
FCKPlaceholders.Add( sValue ) ;
return true ;
}
</script>
</head>
<body scroll="no" style="OVERFLOW: hidden">
<table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">
<tr>
<td>
<table cellSpacing="0" cellPadding="0" align="center" border="0">
<tr>
<td>
<span fckLang="PlaceholderDlgName">Placeholder Name</span><br>
<input id="txtName" type="text">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
- Previous message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/lang _getfontformat.html, NONE, 1.1.2.2 _translationstatus.txt, NONE, 1.1.2.2 af.js, NONE, 1.1.2.2 ar.js, NONE, 1.1.2.2 bg.js, NONE, 1.1.2.2 bn.js, NONE, 1.1.2.2 bs.js, NONE, 1.1.2.2 ca.js, NONE, 1.1.2.2 cs.js, NONE, 1.1.2.2 da.js, NONE, 1.1.2.2 de.js, NONE, 1.1.2.2 el.js, NONE, 1.1.2.2 en-au.js, NONE, 1.1.2.2 en-ca.js, NONE, 1.1.2.2 en-uk.js, NONE, 1.1.2.2 en.js, NONE, 1.1.2.2 eo.js, NONE, 1.1.2.2 es.js, NONE, 1.1.2.2 et.js, NONE, 1.1.2.2 eu.js, NONE, 1.1.2.2 fa.js, NONE, 1.1.2.2 fi.js, NONE, 1.1.2.2 fo.js, NONE, 1.1.2.2 fr.js, NONE, 1.1.2.2 gl.js, NONE, 1.1.2.2 he.js, NONE, 1.1.2.2 hi.js, NONE, 1.1.2.2 hr.js, NONE, 1.1.2.2 hu.js, NONE, 1.1.2.2 it.js, NONE, 1.1.2.2 ja.js, NONE, 1.1.2.2 km.js, NONE, 1.1.2.2 ko.js, NONE, 1.1.2.2 lt.js, NONE, 1.1.2.2 lv.js, NONE, 1.1.2.2 mn.js, NONE, 1.1.2.2 ms.js, NONE, 1.1.2.2 nb.js, NONE, 1.1.2.2 nl.js, NONE, 1.1.2.2 no.js, NONE, 1.1.2.2 pl.js, NONE, 1.1.2.2 pt-br.js, NONE, 1.1.2.2 pt.js, NONE, 1.1.2.2 ro.js, NONE, 1.1.2.2 ru.js, NONE, 1.1.2.2 sk.js, NONE, 1.1.2.2 sl.js, NONE, 1.1.2.2 sr-latn.js, NONE, 1.1.2.2 sr.js, NONE, 1.1.2.2 sv.js, NONE, 1.1.2.2 th.js, NONE, 1.1.2.2 tr.js, NONE, 1.1.2.2 uk.js, NONE, 1.1.2.2 vi.js, NONE, 1.1.2.2 zh-cn.js, NONE, 1.1.2.2 zh.js, NONE, 1.1.2.2
- Next message: [freeside-commits] freeside/httemplate/elements/fckeditor/editor/plugins/placeholder/lang de.js, NONE, 1.1.2.2 en.js, NONE, 1.1.2.2 fr.js, NONE, 1.1.2.2 it.js, NONE, 1.1.2.2 pl.js, NONE, 1.1.2.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list