diff --git a/openlp/plugins/remotes/html/init.js b/openlp/plugins/remotes/html/init.js deleted file mode 100644 index 6c5f497da..000000000 --- a/openlp/plugins/remotes/html/init.js +++ /dev/null @@ -1,32 +0,0 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2010 Raoul Snyman * - * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * - * Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Carsten Tinggaard * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ - -/** - * init.js - In certain browsers (yes, IE, I'm looking at you!), DocumentReady - * JavaScript functions can only be run very last on the page. This file is the - * last JavaScript file to be included on the page, and provides a work-around - * for this bug in certain browsers. - */ - -$(document).ready(function () { - OpenLP.Events.init(); -}); \ No newline at end of file diff --git a/openlp/plugins/remotes/html/old_index.html b/openlp/plugins/remotes/html/old_index.html deleted file mode 100644 index 94bb24d32..000000000 --- a/openlp/plugins/remotes/html/old_index.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - - OpenLP Remote Controller - - - - - - -

OpenLP Controller

-

Quick Links: Service Manager | Slide Controller | Miscellaneous

-

Service Manager

-
-

(Click service item to go live.)

-
- Controls -
- -
-
- - -
-
-
-

Slide Controller

-
-

(Click verse to display.)

-
- Controls -
- -
-
- - -
-
-
-

Miscellaneous

-
- - -
-
- - - -
-
- OpenLP website - - - diff --git a/openlp/plugins/remotes/html/openlp.service.js b/openlp/plugins/remotes/html/openlp.service.js deleted file mode 100644 index 843e6d18f..000000000 --- a/openlp/plugins/remotes/html/openlp.service.js +++ /dev/null @@ -1,44 +0,0 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2010 Raoul Snyman * - * Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael * - * Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Carsten Tinggaard * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program is distributed in the hope that it will be useful, but * - * WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ - -OpenLP.Namespace.create("OpenLP.Service", { - addServiceItem: function (elem, item) - { - var trow = $("") - .attr("id", "item-" + item.id) - .addClass("item") - .append($("").text(item.tag)) - .append($("").text(item.tag.replace(/\n/g, "
"))); - return false; - }, - sendLive: function (e) - { - var elem = OpenLP.Events.getElement(e); - var row = elem.attr("id").substr(5); - elem.addStyle("font-weight", "bold"); - return false; - } -}); - -OpenLP.Events.load(function (){ - OpenLP.Events.liveClick(".item", OpenLP.Service.sendLive); -}); \ No newline at end of file diff --git a/openlp/plugins/remotes/html/style.css b/openlp/plugins/remotes/html/style.css deleted file mode 100644 index 3b55529d9..000000000 --- a/openlp/plugins/remotes/html/style.css +++ /dev/null @@ -1,45 +0,0 @@ -body -{ - background-color: #fff; - font-family: Lucida Grande, Lucida Sans, Arial, Helvetica, sans-serif; - font-size: 80%; -} - -a -{ - color: #3c60a5; - text-decoration: none; -} - -a:hover -{ - color: #304d85; - text-decoration: underline; -} - -fieldset -{ - border: 1px solid #ccc; -} - -td -{ - cursor: pointer; - padding: 3px 5px; -} - -tr:hover -{ - background-color: #eee; -} - -tr.selected:hover -{ - background-color: #ccc; -} - -.selected -{ - background-color: #ddd; - font-weight: bold; -}