From 670e83b30050201e3ac069c9dfa86a92aff2431d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 30 May 2016 22:16:34 -0700 Subject: remove a bunch of unused stuff, some of which is orphaned and some which represents dead development efforts --- library/tinymce/examples/accessibility.html | 101 ----------- library/tinymce/examples/css/content.css | 105 ------------ library/tinymce/examples/css/word.css | 53 ------ library/tinymce/examples/custom_formats.html | 111 ------------ library/tinymce/examples/full.html | 101 ----------- library/tinymce/examples/index.html | 10 -- library/tinymce/examples/lists/image_list.js | 9 - library/tinymce/examples/lists/link_list.js | 10 -- library/tinymce/examples/lists/media_list.js | 14 -- library/tinymce/examples/lists/template_list.js | 9 - library/tinymce/examples/media/logo.jpg | Bin 2729 -> 0 bytes library/tinymce/examples/media/logo_over.jpg | Bin 6473 -> 0 bytes library/tinymce/examples/media/sample.avi | Bin 82944 -> 0 bytes library/tinymce/examples/media/sample.dcr | Bin 6774 -> 0 bytes library/tinymce/examples/media/sample.flv | Bin 88722 -> 0 bytes library/tinymce/examples/media/sample.mov | Bin 55622 -> 0 bytes library/tinymce/examples/media/sample.ram | 1 - library/tinymce/examples/media/sample.rm | Bin 17846 -> 0 bytes library/tinymce/examples/media/sample.swf | Bin 6118 -> 0 bytes library/tinymce/examples/menu.html | 18 -- library/tinymce/examples/simple.html | 47 ------ library/tinymce/examples/skins.html | 216 ------------------------ library/tinymce/examples/templates/layout1.htm | 15 -- library/tinymce/examples/templates/snippet1.htm | 1 - library/tinymce/examples/word.html | 72 -------- 25 files changed, 893 deletions(-) delete mode 100644 library/tinymce/examples/accessibility.html delete mode 100644 library/tinymce/examples/css/content.css delete mode 100644 library/tinymce/examples/css/word.css delete mode 100644 library/tinymce/examples/custom_formats.html delete mode 100644 library/tinymce/examples/full.html delete mode 100644 library/tinymce/examples/index.html delete mode 100644 library/tinymce/examples/lists/image_list.js delete mode 100644 library/tinymce/examples/lists/link_list.js delete mode 100644 library/tinymce/examples/lists/media_list.js delete mode 100644 library/tinymce/examples/lists/template_list.js delete mode 100644 library/tinymce/examples/media/logo.jpg delete mode 100644 library/tinymce/examples/media/logo_over.jpg delete mode 100644 library/tinymce/examples/media/sample.avi delete mode 100644 library/tinymce/examples/media/sample.dcr delete mode 100644 library/tinymce/examples/media/sample.flv delete mode 100644 library/tinymce/examples/media/sample.mov delete mode 100644 library/tinymce/examples/media/sample.ram delete mode 100644 library/tinymce/examples/media/sample.rm delete mode 100644 library/tinymce/examples/media/sample.swf delete mode 100644 library/tinymce/examples/menu.html delete mode 100644 library/tinymce/examples/simple.html delete mode 100644 library/tinymce/examples/skins.html delete mode 100644 library/tinymce/examples/templates/layout1.htm delete mode 100644 library/tinymce/examples/templates/snippet1.htm delete mode 100644 library/tinymce/examples/word.html (limited to 'library/tinymce/examples') diff --git a/library/tinymce/examples/accessibility.html b/library/tinymce/examples/accessibility.html deleted file mode 100644 index 69059403c..000000000 --- a/library/tinymce/examples/accessibility.html +++ /dev/null @@ -1,101 +0,0 @@ - - - -Full featured example - - - - - - - - - -
-
-

Full featured example, with Accessibility settings enabled

- -

- This page has got the TinyMCE set up to work with configurations related to accessiblity enabled. - In particular -

    -
  • the content_css is set to false, to ensure that all default browser styles are used,
  • -
  • the browser_preferred_colors dialog option is used to ensure that default css is used for dialogs,
  • -
  • and the detect_highcontrast option has been set to ensure that highcontrast mode in Windows browsers - is detected and the toolbars are displayed in a high contrast mode.
  • -
-

- - -
- -
- -
- - -
-
- - - - diff --git a/library/tinymce/examples/css/content.css b/library/tinymce/examples/css/content.css deleted file mode 100644 index a76c38a2f..000000000 --- a/library/tinymce/examples/css/content.css +++ /dev/null @@ -1,105 +0,0 @@ -body { - background-color: #FFFFFF; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} - -td { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -pre { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -.example1 { - font-weight: bold; - font-size: 14px -} - -.example2 { - font-weight: bold; - font-size: 12px; - color: #FF0000 -} - -.tablerow1 { - background-color: #BBBBBB; -} - -thead { - background-color: #FFBBBB; -} - -tfoot { - background-color: #BBBBFF; -} - -th { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 13px; -} - -/* Basic formats */ - -.bold { - font-weight: bold; -} - -.italic { - font-style: italic; -} - -.underline { - text-decoration: underline; -} - -/* Global align classes */ - -.left { - text-align: inherit; -} - -.center { - text-align: center; -} - -.right { - text-align: right; -} - -.full { - text-align: justify -} - -/* Image and table specific aligns */ - -img.left, table.left { - float: left; - text-align: inherit; -} - -img.center, table.center { - margin-left: auto; - margin-right: auto; - text-align: inherit; -} - -img.center { - display: block; -} - -img.right, table.right { - float: right; - text-align: inherit; -} diff --git a/library/tinymce/examples/css/word.css b/library/tinymce/examples/css/word.css deleted file mode 100644 index 049a39fbd..000000000 --- a/library/tinymce/examples/css/word.css +++ /dev/null @@ -1,53 +0,0 @@ -body { - background-color: #FFFFFF; - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - scrollbar-3dlight-color: #F0F0EE; - scrollbar-arrow-color: #676662; - scrollbar-base-color: #F0F0EE; - scrollbar-darkshadow-color: #DDDDDD; - scrollbar-face-color: #E0E0DD; - scrollbar-highlight-color: #F0F0EE; - scrollbar-shadow-color: #F0F0EE; - scrollbar-track-color: #F5F5F5; -} - -p {margin:0; padding:0;} - -td { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -pre { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; -} - -.example1 { - font-weight: bold; - font-size: 14px -} - -.example2 { - font-weight: bold; - font-size: 12px; - color: #FF0000 -} - -.tablerow1 { - background-color: #BBBBBB; -} - -thead { - background-color: #FFBBBB; -} - -tfoot { - background-color: #BBBBFF; -} - -th { - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 13px; -} diff --git a/library/tinymce/examples/custom_formats.html b/library/tinymce/examples/custom_formats.html deleted file mode 100644 index ba9d1eb0c..000000000 --- a/library/tinymce/examples/custom_formats.html +++ /dev/null @@ -1,111 +0,0 @@ - - - -Custom formats example - - - - - - - - - -
-
-

Custom formats example

- -

- This example shows you how to override the default formats for bold, italic, underline, strikethough and alignment to use classes instead of inline styles. - There are more examples on how to use TinyMCE in the Wiki. -

- - -
- -
- - - [Show] - [Hide] - [Bold] - [Get contents] - [Get selected HTML] - [Get selected text] - [Get selected element] - [Insert HTML] - [Replace selection] - -
- - -
-
- - - diff --git a/library/tinymce/examples/full.html b/library/tinymce/examples/full.html deleted file mode 100644 index 84b76ca7a..000000000 --- a/library/tinymce/examples/full.html +++ /dev/null @@ -1,101 +0,0 @@ - - - -Full featured example - - - - - - - - - -
-
-

Full featured example

- -

- This page shows all available buttons and plugins that are included in the TinyMCE core package. - There are more examples on how to use TinyMCE in the Wiki. -

- - -
- -
- - - [Show] - [Hide] - [Bold] - [Get contents] - [Get selected HTML] - [Get selected text] - [Get selected element] - [Insert HTML] - [Replace selection] - -
- - -
-
- - - - diff --git a/library/tinymce/examples/index.html b/library/tinymce/examples/index.html deleted file mode 100644 index 6ebfbea57..000000000 --- a/library/tinymce/examples/index.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - TinyMCE examples - - - - - - diff --git a/library/tinymce/examples/lists/image_list.js b/library/tinymce/examples/lists/image_list.js deleted file mode 100644 index 7ba049a24..000000000 --- a/library/tinymce/examples/lists/image_list.js +++ /dev/null @@ -1,9 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There images will be displayed as a dropdown in all image dialogs if the "external_link_image_url" -// option is defined in TinyMCE init. - -var tinyMCEImageList = new Array( - // Name, URL - ["Logo 1", "media/logo.jpg"], - ["Logo 2 Over", "media/logo_over.jpg"] -); diff --git a/library/tinymce/examples/lists/link_list.js b/library/tinymce/examples/lists/link_list.js deleted file mode 100644 index 0d464331f..000000000 --- a/library/tinymce/examples/lists/link_list.js +++ /dev/null @@ -1,10 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url" -// option is defined in TinyMCE init. - -var tinyMCELinkList = new Array( - // Name, URL - ["Moxiecode", "http://www.moxiecode.com"], - ["Freshmeat", "http://www.freshmeat.com"], - ["Sourceforge", "http://www.sourceforge.com"] -); diff --git a/library/tinymce/examples/lists/media_list.js b/library/tinymce/examples/lists/media_list.js deleted file mode 100644 index 2e049587c..000000000 --- a/library/tinymce/examples/lists/media_list.js +++ /dev/null @@ -1,14 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There flash movies will be displayed as a dropdown in all media dialog if the "media_external_list_url" -// option is defined in TinyMCE init. - -var tinyMCEMediaList = [ - // Name, URL - ["Some Flash", "media/sample.swf"], - ["Some Quicktime", "media/sample.mov"], - ["Some AVI", "media/sample.avi"], - ["Some RealMedia", "media/sample.rm"], - ["Some Shockwave", "media/sample.dcr"], - ["Some Video", "media/sample.mp4"], - ["Some FLV", "media/sample.flv"] -]; \ No newline at end of file diff --git a/library/tinymce/examples/lists/template_list.js b/library/tinymce/examples/lists/template_list.js deleted file mode 100644 index e06d35788..000000000 --- a/library/tinymce/examples/lists/template_list.js +++ /dev/null @@ -1,9 +0,0 @@ -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. -// There templates will be displayed as a dropdown in all media dialog if the "template_external_list_url" -// option is defined in TinyMCE init. - -var tinyMCETemplateList = [ - // Name, URL, Description - ["Simple snippet", "templates/snippet1.htm", "Simple HTML snippet."], - ["Layout", "templates/layout1.htm", "HTML Layout."] -]; \ No newline at end of file diff --git a/library/tinymce/examples/media/logo.jpg b/library/tinymce/examples/media/logo.jpg deleted file mode 100644 index ad535d671..000000000 Binary files a/library/tinymce/examples/media/logo.jpg and /dev/null differ diff --git a/library/tinymce/examples/media/logo_over.jpg b/library/tinymce/examples/media/logo_over.jpg deleted file mode 100644 index 79fcd884a..000000000 Binary files a/library/tinymce/examples/media/logo_over.jpg and /dev/null differ diff --git a/library/tinymce/examples/media/sample.avi b/library/tinymce/examples/media/sample.avi deleted file mode 100644 index 238bb688a..000000000 Binary files a/library/tinymce/examples/media/sample.avi and /dev/null differ diff --git a/library/tinymce/examples/media/sample.dcr b/library/tinymce/examples/media/sample.dcr deleted file mode 100644 index 353b3ce67..000000000 Binary files a/library/tinymce/examples/media/sample.dcr and /dev/null differ diff --git a/library/tinymce/examples/media/sample.flv b/library/tinymce/examples/media/sample.flv deleted file mode 100644 index 799d137e6..000000000 Binary files a/library/tinymce/examples/media/sample.flv and /dev/null differ diff --git a/library/tinymce/examples/media/sample.mov b/library/tinymce/examples/media/sample.mov deleted file mode 100644 index 9c0a0932c..000000000 Binary files a/library/tinymce/examples/media/sample.mov and /dev/null differ diff --git a/library/tinymce/examples/media/sample.ram b/library/tinymce/examples/media/sample.ram deleted file mode 100644 index e2ce04cf7..000000000 --- a/library/tinymce/examples/media/sample.ram +++ /dev/null @@ -1 +0,0 @@ -http://streaming.uga.edu/samples/ayp_lan.rm \ No newline at end of file diff --git a/library/tinymce/examples/media/sample.rm b/library/tinymce/examples/media/sample.rm deleted file mode 100644 index 8947706e0..000000000 Binary files a/library/tinymce/examples/media/sample.rm and /dev/null differ diff --git a/library/tinymce/examples/media/sample.swf b/library/tinymce/examples/media/sample.swf deleted file mode 100644 index 9f5fc4ac5..000000000 Binary files a/library/tinymce/examples/media/sample.swf and /dev/null differ diff --git a/library/tinymce/examples/menu.html b/library/tinymce/examples/menu.html deleted file mode 100644 index e48650abd..000000000 --- a/library/tinymce/examples/menu.html +++ /dev/null @@ -1,18 +0,0 @@ - - - -Menu - - - -

Examples

-Full featured -Simple theme -Skin support -Word processor -Custom formats -Accessibility Options - - diff --git a/library/tinymce/examples/simple.html b/library/tinymce/examples/simple.html deleted file mode 100644 index 70720caa1..000000000 --- a/library/tinymce/examples/simple.html +++ /dev/null @@ -1,47 +0,0 @@ - - - -Simple theme example - - - - - - - - - -
-

Simple theme example

- -

- This page shows you the simple theme and it's core functionality you can extend it by changing the code use the advanced theme if you need to configure/add more buttons etc. - There are more examples on how to use TinyMCE in the Wiki. -

- - - - -
- - -
- - - diff --git a/library/tinymce/examples/skins.html b/library/tinymce/examples/skins.html deleted file mode 100644 index c15085885..000000000 --- a/library/tinymce/examples/skins.html +++ /dev/null @@ -1,216 +0,0 @@ - - - -Skin support example - - - - - - - - - -
-

Skin support example

- -

- This page displays the two skins that TinyMCE comes with. You can make your own by creating a CSS file in themes/advanced/skins//ui.css - There are more examples on how to use TinyMCE in the Wiki. -

- - - - -
- - - -
- - - -
- - - -
- - -
- - - diff --git a/library/tinymce/examples/templates/layout1.htm b/library/tinymce/examples/templates/layout1.htm deleted file mode 100644 index a38df3e68..000000000 --- a/library/tinymce/examples/templates/layout1.htm +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - -
Column 1Column 2
Username: {$username}Staffid: {$staffid}
diff --git a/library/tinymce/examples/templates/snippet1.htm b/library/tinymce/examples/templates/snippet1.htm deleted file mode 100644 index b2520beaf..000000000 --- a/library/tinymce/examples/templates/snippet1.htm +++ /dev/null @@ -1 +0,0 @@ -This is just some code. diff --git a/library/tinymce/examples/word.html b/library/tinymce/examples/word.html deleted file mode 100644 index d827b6fed..000000000 --- a/library/tinymce/examples/word.html +++ /dev/null @@ -1,72 +0,0 @@ - - - -Word processor example - - - - - - - - - -
-

Word processor example

- -

- This page shows you how to configure TinyMCE to work more like common word processors. - There are more examples on how to use TinyMCE in the Wiki. -

- - - - -
- - -
- - - -- cgit v1.2.3