Initial commit

This commit is contained in:
genuineparts 2025-06-02 10:01:12 +02:00
commit 43ad32700c
7085 changed files with 447606 additions and 0 deletions

View file

@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 58
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/example/js
END
dialog.js
K 25
svn:wc:ra_dav:version-url
V 68
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/example/js/dialog.js
END

View file

@ -0,0 +1,62 @@
9
dir
34
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/example/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
dialog.js
file
2009-06-08T19:44:27.000000Z
83245e76c97e24d466cf5df2308f9bf4
2009-06-07T19:12:55.973801Z
1
genuineparts
609

View file

@ -0,0 +1 @@
9

View file

@ -0,0 +1,19 @@
tinyMCEPopup.requireLangPack();
var ExampleDialog = {
init : function() {
var f = document.forms[0];
// Get the selected contents as text and place it in the input
f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'});
f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg');
},
insert : function() {
// Insert the contents from the input into the document
tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value);
tinyMCEPopup.close();
}
};
tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog);