From 908418bb1a51d0436b261e8f37f896df5c6ee595 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 6 Dec 2008 09:30:38 +0000 Subject: [PATCH] Added necessary __init__.py files to make directories into Python modules. bzr-revno: 191 --- .eric4project/openlp.org 2.0.e4q | 2 +- .eric4project/openlp.org 2.0.e4t | 2 +- openlp.org 2.0.e4p | 29 +++++++++++++------------ openlp/plugins/bibles/__init__.py | 2 ++ openlp/plugins/bibles/forms/__init__.py | 19 ++++++++++++++++ openlp/plugins/bibles/lib/__init__.py | 19 ++++++++++++++++ 6 files changed, 57 insertions(+), 16 deletions(-) create mode 100644 openlp/plugins/bibles/forms/__init__.py create mode 100644 openlp/plugins/bibles/lib/__init__.py diff --git a/.eric4project/openlp.org 2.0.e4q b/.eric4project/openlp.org 2.0.e4q index eebfd10a0..5b48947ec 100644 --- a/.eric4project/openlp.org 2.0.e4q +++ b/.eric4project/openlp.org 2.0.e4q @@ -1,7 +1,7 @@ - + \ No newline at end of file diff --git a/.eric4project/openlp.org 2.0.e4t b/.eric4project/openlp.org 2.0.e4t index be90e190b..387c6b2dd 100644 --- a/.eric4project/openlp.org 2.0.e4t +++ b/.eric4project/openlp.org 2.0.e4t @@ -1,7 +1,7 @@ - + TODO: what is the tags for bridge, pre-chorus? diff --git a/openlp.org 2.0.e4p b/openlp.org 2.0.e4p index 43fec31b5..322e8469c 100644 --- a/openlp.org 2.0.e4p +++ b/openlp.org 2.0.e4p @@ -1,7 +1,7 @@ - + Python @@ -21,7 +21,6 @@ openlp/__init__.py demo.py openlp/core/settingsmanager.py - openlp/plugins/biblemanager/__init__.py openlp/plugins/biblemanager/test/__init__.py openlp/plugins/biblemanager/test/test_bibleManager.py openlp/plugins/__init__.py @@ -55,18 +54,6 @@ openlp/plugins/songs/test/test_song_text.py openlp/core/theme/test/test_theme.py openlp/core/resources.py - openlp/plugins/biblemanager/bibleplugin.py - openlp/plugins/biblemanager/bibleOSISImpl.py - openlp/plugins/biblemanager/bibleHTTPImpl.py - openlp/plugins/biblemanager/bibleDBImpl.py - openlp/plugins/biblemanager/bibleCSVImpl.py - openlp/plugins/biblemanager/bibleCommon.py - openlp/plugins/biblemanager/bibleManager.py - openlp/plugins/biblemanager/forms/__init__.py - openlp/plugins/biblemanager/forms/bibleimportdialog.py - openlp/plugins/biblemanager/forms/bibleimportform.py - openlp/plugins/biblemanager/forms/bibleimportprogressform.py - openlp/plugins/biblemanager/forms/bibleimportprogressdialog.py openlp/core/lib/__init__.py openlp/core/lib/xmlrootclass.py openlp/core/lib/settingstab.py @@ -84,6 +71,20 @@ openlp/core/test/testplugins/testplugin1.py openlp/core/test/testplugins/testplugin2/__init__.py openlp/core/test/testplugins/testplugin2/testplugin2.py + openlp/plugins/bibles/bibleplugin.py + openlp/plugins/bibles/forms/bibleimportdialog.py + openlp/plugins/bibles/forms/bibleimportprogressform.py + openlp/plugins/bibles/forms/bibleimportform.py + openlp/plugins/bibles/forms/bibleimportprogressdialog.py + openlp/plugins/bibles/lib/biblemanager.py + openlp/plugins/bibles/lib/bibleDBimpl.py + openlp/plugins/bibles/lib/bibleOSISimpl.py + openlp/plugins/bibles/lib/bibleHTTPimpl.py + openlp/plugins/bibles/lib/bibleCommon.py + openlp/plugins/bibles/lib/bibleCSVimpl.py + openlp/plugins/bibles/__init__.py + openlp/plugins/bibles/lib/__init__.py + openlp/plugins/bibles/forms/__init__.py
resources/forms/bibleimport.ui
diff --git a/openlp/plugins/bibles/__init__.py b/openlp/plugins/bibles/__init__.py index 6635407f1..fca49d810 100644 --- a/openlp/plugins/bibles/__init__.py +++ b/openlp/plugins/bibles/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 """ OpenLP - Open Source Lyrics Projection Copyright (c) 2008 Raoul Snyman diff --git a/openlp/plugins/bibles/forms/__init__.py b/openlp/plugins/bibles/forms/__init__.py new file mode 100644 index 000000000..7b6748db1 --- /dev/null +++ b/openlp/plugins/bibles/forms/__init__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 +""" +OpenLP - Open Source Lyrics Projection +Copyright (c) 2008 Raoul Snyman +Portions copyright (c) 2008 Martin Thompson, Tim Bentley + +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 +""" diff --git a/openlp/plugins/bibles/lib/__init__.py b/openlp/plugins/bibles/lib/__init__.py new file mode 100644 index 000000000..7b6748db1 --- /dev/null +++ b/openlp/plugins/bibles/lib/__init__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 +""" +OpenLP - Open Source Lyrics Projection +Copyright (c) 2008 Raoul Snyman +Portions copyright (c) 2008 Martin Thompson, Tim Bentley + +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 +"""