Initial checkin
This commit is contained in:
commit
d75eb444fc
4304 changed files with 369634 additions and 0 deletions
17
thirdparty/tiny/plugins/print/.svn/all-wcprops
vendored
Normal file
17
thirdparty/tiny/plugins/print/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 53
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/print
|
||||
END
|
||||
editor_plugin.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/print/editor_plugin.js
|
||||
END
|
||||
editor_plugin_src.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 74
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/print/editor_plugin_src.js
|
||||
END
|
96
thirdparty/tiny/plugins/print/.svn/entries
vendored
Normal file
96
thirdparty/tiny/plugins/print/.svn/entries
vendored
Normal file
|
@ -0,0 +1,96 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/print
|
||||
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
|
||||
6557fd2bd935aefa392ba71679edbebe
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
502
|
||||
|
||||
editor_plugin_src.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
9609f12ff4498ef3bc889c830f63f99f
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
835
|
||||
|
1
thirdparty/tiny/plugins/print/.svn/format
vendored
Normal file
1
thirdparty/tiny/plugins/print/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
1
thirdparty/tiny/plugins/print/.svn/text-base/editor_plugin.js.svn-base
vendored
Normal file
1
thirdparty/tiny/plugins/print/.svn/text-base/editor_plugin.js.svn-base
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){tinymce.create('tinymce.plugins.Print',{init:function(ed,url){ed.addCommand('mcePrint',function(){ed.getWin().print();});ed.addButton('print',{title:'print.print_desc',cmd:'mcePrint'});},getInfo:function(){return{longname:'Print',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',version:tinymce.majorVersion+"."+tinymce.minorVersion};}});tinymce.PluginManager.add('print',tinymce.plugins.Print);})();
|
31
thirdparty/tiny/plugins/print/.svn/text-base/editor_plugin_src.js.svn-base
vendored
Normal file
31
thirdparty/tiny/plugins/print/.svn/text-base/editor_plugin_src.js.svn-base
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* $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.Print', {
|
||||
init : function(ed, url) {
|
||||
ed.addCommand('mcePrint', function() {
|
||||
ed.getWin().print();
|
||||
});
|
||||
|
||||
ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'});
|
||||
},
|
||||
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Print',
|
||||
author : 'Moxiecode Systems AB',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',
|
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('print', tinymce.plugins.Print);
|
||||
})();
|
1
thirdparty/tiny/plugins/print/editor_plugin.js
vendored
Normal file
1
thirdparty/tiny/plugins/print/editor_plugin.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(function(){tinymce.create('tinymce.plugins.Print',{init:function(ed,url){ed.addCommand('mcePrint',function(){ed.getWin().print();});ed.addButton('print',{title:'print.print_desc',cmd:'mcePrint'});},getInfo:function(){return{longname:'Print',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',version:tinymce.majorVersion+"."+tinymce.minorVersion};}});tinymce.PluginManager.add('print',tinymce.plugins.Print);})();
|
31
thirdparty/tiny/plugins/print/editor_plugin_src.js
vendored
Normal file
31
thirdparty/tiny/plugins/print/editor_plugin_src.js
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* $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.Print', {
|
||||
init : function(ed, url) {
|
||||
ed.addCommand('mcePrint', function() {
|
||||
ed.getWin().print();
|
||||
});
|
||||
|
||||
ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'});
|
||||
},
|
||||
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Print',
|
||||
author : 'Moxiecode Systems AB',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',
|
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('print', tinymce.plugins.Print);
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue