Initial checkin
23
thirdparty/tiny/plugins/emotions/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 56
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions
|
||||
END
|
||||
editor_plugin.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/editor_plugin.js
|
||||
END
|
||||
emotions.htm
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 69
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/emotions.htm
|
||||
END
|
||||
editor_plugin_src.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 77
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/editor_plugin_src.js
|
||||
END
|
139
thirdparty/tiny/plugins/emotions/.svn/entries
vendored
Normal file
|
@ -0,0 +1,139 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/emotions
|
||||
http://svn.astat.org/astat
|
||||
|
||||
|
||||
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
bb7ccd2a-c66b-0410-9765-967ca6f03dfc
|
||||
|
||||
editor_plugin.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
fc11ff82324f77c41e1a44c1044d79ff
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
714
|
||||
|
||||
langs
|
||||
dir
|
||||
|
||||
emotions.htm
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
f4955baeaf694bd1f93888a812262be1
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4499
|
||||
|
||||
editor_plugin_src.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
ec9dccf192f23f7fe0b1550c7e7e7ac4
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1160
|
||||
|
||||
img
|
||||
dir
|
||||
|
||||
js
|
||||
dir
|
||||
|
1
thirdparty/tiny/plugins/emotions/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
1
thirdparty/tiny/plugins/emotions/.svn/text-base/editor_plugin.js.svn-base
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){tinymce.create('tinymce.plugins.EmotionsPlugin',{init:function(ed,url){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});});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};}});tinymce.PluginManager.add('emotions',tinymce.plugins.EmotionsPlugin);})();
|
40
thirdparty/tiny/plugins/emotions/.svn/text-base/editor_plugin_src.js.svn-base
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
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);
|
||||
})();
|
41
thirdparty/tiny/plugins/emotions/.svn/text-base/emotions.htm.svn-base
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!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>{#emotions_dlg.title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/emotions.js"></script>
|
||||
<base target="_self" />
|
||||
</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>
|
1
thirdparty/tiny/plugins/emotions/editor_plugin.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){tinymce.create('tinymce.plugins.EmotionsPlugin',{init:function(ed,url){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});});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};}});tinymce.PluginManager.add('emotions',tinymce.plugins.EmotionsPlugin);})();
|
40
thirdparty/tiny/plugins/emotions/editor_plugin_src.js
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* $Id: editor_plugin_src.js 520 2008-01-07 16:30:32Z spocke $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
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);
|
||||
})();
|
41
thirdparty/tiny/plugins/emotions/emotions.htm
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!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>{#emotions_dlg.title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/emotions.js"></script>
|
||||
<base target="_self" />
|
||||
</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>
|
101
thirdparty/tiny/plugins/emotions/img/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,101 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 60
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img
|
||||
END
|
||||
smiley-innocent.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 80
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-innocent.gif
|
||||
END
|
||||
smiley-surprised.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 81
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-surprised.gif
|
||||
END
|
||||
smiley-money-mouth.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 83
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-money-mouth.gif
|
||||
END
|
||||
smiley-undecided.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 81
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-undecided.gif
|
||||
END
|
||||
smiley-frown.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 77
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-frown.gif
|
||||
END
|
||||
smiley-cool.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 76
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-cool.gif
|
||||
END
|
||||
smiley-cry.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 75
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-cry.gif
|
||||
END
|
||||
smiley-sealed.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 78
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-sealed.gif
|
||||
END
|
||||
smiley-laughing.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 80
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-laughing.gif
|
||||
END
|
||||
smiley-foot-in-mouth.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 85
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-foot-in-mouth.gif
|
||||
END
|
||||
smiley-yell.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 76
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-yell.gif
|
||||
END
|
||||
smiley-embarassed.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 82
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-embarassed.gif
|
||||
END
|
||||
smiley-tongue-out.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 82
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-tongue-out.gif
|
||||
END
|
||||
smiley-wink.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 76
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-wink.gif
|
||||
END
|
||||
smiley-kiss.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 76
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-kiss.gif
|
||||
END
|
||||
smiley-smile.gif
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 77
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/img/smiley-smile.gif
|
||||
END
|
572
thirdparty/tiny/plugins/emotions/img/.svn/entries
vendored
Normal file
|
@ -0,0 +1,572 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/emotions/img
|
||||
http://svn.astat.org/astat
|
||||
|
||||
|
||||
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
bb7ccd2a-c66b-0410-9765-967ca6f03dfc
|
||||
|
||||
smiley-innocent.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
ec0477c8a206ff250782e40f9bae4b4c
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
336
|
||||
|
||||
smiley-surprised.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
eff5a6fbfb80ca2d3ae929b0a1c15638
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
342
|
||||
|
||||
smiley-money-mouth.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
11c14bd1496afd0e21df115d25b68e96
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
321
|
||||
|
||||
smiley-undecided.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
3c0c011d16b1a2331385ed97e160a42a
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
337
|
||||
|
||||
smiley-frown.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
59930208822fe755f651a67ef4b70530
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
340
|
||||
|
||||
smiley-cool.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
e26e97a318f82ec144b0818e5a8f8edb
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
354
|
||||
|
||||
smiley-sealed.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
28b9401b59fb7ad10b96f57aaa2630c4
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
325
|
||||
|
||||
smiley-cry.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
e72bf995ceca9230273ed9909c5db9c8
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
329
|
||||
|
||||
smiley-laughing.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
b691cfd07d8181059f8a4b041d534cc4
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
344
|
||||
|
||||
smiley-yell.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
19bb8ebfe3c2f5ef3ffb9aa4a027900d
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
336
|
||||
|
||||
smiley-foot-in-mouth.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
905294088277f201be5a8e0285fb7998
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
344
|
||||
|
||||
smiley-tongue-out.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
5ec3bb4781c8e43a51d3a1a948b98fc0
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
328
|
||||
|
||||
smiley-embarassed.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
d59171236e6b0b96091eeda1f7b57ce3
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
331
|
||||
|
||||
smiley-wink.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
4ae6aa98aa63363c16ea74f927696bd9
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
351
|
||||
|
||||
smiley-smile.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
c676407db519bdf42481870746f097d8
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
345
|
||||
|
||||
smiley-kiss.gif
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
4ae8945f3960751b5d294f18242e144d
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
338
|
||||
|
1
thirdparty/tiny/plugins/emotions/img/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-cool.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-cry.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-embarassed.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-foot-in-mouth.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-frown.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-innocent.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-kiss.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-laughing.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-money-mouth.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-sealed.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-smile.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-surprised.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-tongue-out.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-undecided.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-wink.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
5
thirdparty/tiny/plugins/emotions/img/.svn/prop-base/smiley-yell.gif.svn-base
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-cool.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 354 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-cry.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 329 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-embarassed.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 331 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-foot-in-mouth.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 344 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-frown.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 340 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-innocent.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 336 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-kiss.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 338 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-laughing.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 344 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-money-mouth.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 321 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-sealed.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 325 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-smile.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 345 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-surprised.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 342 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-tongue-out.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 328 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-undecided.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 337 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-wink.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 351 B |
BIN
thirdparty/tiny/plugins/emotions/img/.svn/text-base/smiley-yell.gif.svn-base
vendored
Normal file
After Width: | Height: | Size: 336 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-cool.gif
vendored
Normal file
After Width: | Height: | Size: 354 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-cry.gif
vendored
Normal file
After Width: | Height: | Size: 329 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-embarassed.gif
vendored
Normal file
After Width: | Height: | Size: 331 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-foot-in-mouth.gif
vendored
Normal file
After Width: | Height: | Size: 344 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-frown.gif
vendored
Normal file
After Width: | Height: | Size: 340 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-innocent.gif
vendored
Normal file
After Width: | Height: | Size: 336 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-kiss.gif
vendored
Normal file
After Width: | Height: | Size: 338 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-laughing.gif
vendored
Normal file
After Width: | Height: | Size: 344 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-money-mouth.gif
vendored
Normal file
After Width: | Height: | Size: 321 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-sealed.gif
vendored
Normal file
After Width: | Height: | Size: 325 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-smile.gif
vendored
Normal file
After Width: | Height: | Size: 345 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-surprised.gif
vendored
Normal file
After Width: | Height: | Size: 342 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-tongue-out.gif
vendored
Normal file
After Width: | Height: | Size: 328 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-undecided.gif
vendored
Normal file
After Width: | Height: | Size: 337 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-wink.gif
vendored
Normal file
After Width: | Height: | Size: 351 B |
BIN
thirdparty/tiny/plugins/emotions/img/smiley-yell.gif
vendored
Normal file
After Width: | Height: | Size: 336 B |
11
thirdparty/tiny/plugins/emotions/js/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 59
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/js
|
||||
END
|
||||
emotions.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 71
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/js/emotions.js
|
||||
END
|
62
thirdparty/tiny/plugins/emotions/js/.svn/entries
vendored
Normal file
|
@ -0,0 +1,62 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/emotions/js
|
||||
http://svn.astat.org/astat
|
||||
|
||||
|
||||
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
bb7ccd2a-c66b-0410-9765-967ca6f03dfc
|
||||
|
||||
emotions.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
ca781c5bd11767e1bbd86934343d7d0e
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
541
|
||||
|
1
thirdparty/tiny/plugins/emotions/js/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
22
thirdparty/tiny/plugins/emotions/js/.svn/text-base/emotions.js.svn-base
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var EmotionsDialog = {
|
||||
init : function(ed) {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
},
|
||||
|
||||
insert : function(file, title) {
|
||||
var ed = tinyMCEPopup.editor, dom = ed.dom;
|
||||
|
||||
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', {
|
||||
src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file,
|
||||
alt : ed.getLang(title),
|
||||
title : ed.getLang(title),
|
||||
border : 0
|
||||
}));
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog);
|
22
thirdparty/tiny/plugins/emotions/js/emotions.js
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var EmotionsDialog = {
|
||||
init : function(ed) {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
},
|
||||
|
||||
insert : function(file, title) {
|
||||
var ed = tinyMCEPopup.editor, dom = ed.dom;
|
||||
|
||||
tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', {
|
||||
src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file,
|
||||
alt : ed.getLang(title),
|
||||
title : ed.getLang(title),
|
||||
border : 0
|
||||
}));
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog);
|
17
thirdparty/tiny/plugins/emotions/langs/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 62
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/langs
|
||||
END
|
||||
en_dlg.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 72
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/langs/en_dlg.js
|
||||
END
|
||||
de_dlg.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 72
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/emotions/langs/de_dlg.js
|
||||
END
|
96
thirdparty/tiny/plugins/emotions/langs/.svn/entries
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/emotions/langs
|
||||
http://svn.astat.org/astat
|
||||
|
||||
|
||||
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
bb7ccd2a-c66b-0410-9765-967ca6f03dfc
|
||||
|
||||
en_dlg.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
1ed9d59b2b02aa2946218997a67424a8
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
404
|
||||
|
||||
de_dlg.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
2247b2ff0daf4c6713bfc5f04d86b9c6
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
459
|
||||
|
1
thirdparty/tiny/plugins/emotions/langs/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
20
thirdparty/tiny/plugins/emotions/langs/.svn/text-base/de_dlg.js.svn-base
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
tinyMCE.addI18n('de.emotions_dlg',{
|
||||
title:"Smiley einf\u00FCgen",
|
||||
desc:"Smilies",
|
||||
cool:"Cool",
|
||||
cry:"Weinend",
|
||||
embarassed:"Verlegen",
|
||||
foot_in_mouth:"Reingefallen",
|
||||
frown:"Stirnrunzelnd",
|
||||
innocent:"Unschuldig",
|
||||
kiss:"K\u00FCssend",
|
||||
laughing:"Lachend",
|
||||
money_mouth:"Geld",
|
||||
sealed:"Verschlossen",
|
||||
smile:"L\u00E4chelnd",
|
||||
surprised:"\u00DCberrascht",
|
||||
tongue_out:"Zunge raus",
|
||||
undecided:"Unentschlossen",
|
||||
wink:"Zwinkernd",
|
||||
yell:"Br\u00FCllend"
|
||||
});
|
20
thirdparty/tiny/plugins/emotions/langs/.svn/text-base/en_dlg.js.svn-base
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
tinyMCE.addI18n('en.emotions_dlg',{
|
||||
title:"Insert emotion",
|
||||
desc:"Emotions",
|
||||
cool:"Cool",
|
||||
cry:"Cry",
|
||||
embarassed:"Embarassed",
|
||||
foot_in_mouth:"Foot in mouth",
|
||||
frown:"Frown",
|
||||
innocent:"Innocent",
|
||||
kiss:"Kiss",
|
||||
laughing:"Laughing",
|
||||
money_mouth:"Money mouth",
|
||||
sealed:"Sealed",
|
||||
smile:"Smile",
|
||||
surprised:"Surprised",
|
||||
tongue_out:"Tongue out",
|
||||
undecided:"Undecided",
|
||||
wink:"Wink",
|
||||
yell:"Yell"
|
||||
});
|
20
thirdparty/tiny/plugins/emotions/langs/de_dlg.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
tinyMCE.addI18n('de.emotions_dlg',{
|
||||
title:"Smiley einf\u00FCgen",
|
||||
desc:"Smilies",
|
||||
cool:"Cool",
|
||||
cry:"Weinend",
|
||||
embarassed:"Verlegen",
|
||||
foot_in_mouth:"Reingefallen",
|
||||
frown:"Stirnrunzelnd",
|
||||
innocent:"Unschuldig",
|
||||
kiss:"K\u00FCssend",
|
||||
laughing:"Lachend",
|
||||
money_mouth:"Geld",
|
||||
sealed:"Verschlossen",
|
||||
smile:"L\u00E4chelnd",
|
||||
surprised:"\u00DCberrascht",
|
||||
tongue_out:"Zunge raus",
|
||||
undecided:"Unentschlossen",
|
||||
wink:"Zwinkernd",
|
||||
yell:"Br\u00FCllend"
|
||||
});
|
20
thirdparty/tiny/plugins/emotions/langs/en_dlg.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
tinyMCE.addI18n('en.emotions_dlg',{
|
||||
title:"Insert emotion",
|
||||
desc:"Emotions",
|
||||
cool:"Cool",
|
||||
cry:"Cry",
|
||||
embarassed:"Embarassed",
|
||||
foot_in_mouth:"Foot in mouth",
|
||||
frown:"Frown",
|
||||
innocent:"Innocent",
|
||||
kiss:"Kiss",
|
||||
laughing:"Laughing",
|
||||
money_mouth:"Money mouth",
|
||||
sealed:"Sealed",
|
||||
smile:"Smile",
|
||||
surprised:"Surprised",
|
||||
tongue_out:"Tongue out",
|
||||
undecided:"Undecided",
|
||||
wink:"Wink",
|
||||
yell:"Yell"
|
||||
});
|