Moved SongXml, created openlp.plugins.songs.forms module.

bzr-revno: 128
This commit is contained in:
Raoul Snyman 2008-11-26 19:46:06 +00:00
parent f82134aeb6
commit 2259e7bd61
16 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE UserProject SYSTEM "UserProject-4.0.dtd"> <!DOCTYPE UserProject SYSTEM "UserProject-4.0.dtd">
<!-- eric4 user project file for project openlp.org 2.0 --> <!-- eric4 user project file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-26, 21:40:00 --> <!-- Saved: 2008-11-26, 21:42:18 -->
<!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org --> <!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org -->
<UserProject version="4.0"> <UserProject version="4.0">
</UserProject> </UserProject>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Tasks SYSTEM "Tasks-4.2.dtd"> <!DOCTYPE Tasks SYSTEM "Tasks-4.2.dtd">
<!-- eric4 tasks file for project openlp.org 2.0 --> <!-- eric4 tasks file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-26, 21:40:00 --> <!-- Saved: 2008-11-26, 21:42:18 -->
<Tasks version="4.2"> <Tasks version="4.2">
<Task priority="1" completed="False" bugfix="False"> <Task priority="1" completed="False" bugfix="False">
<Summary>TODO: what is the tags for bridge, pre-chorus?</Summary> <Summary>TODO: what is the tags for bridge, pre-chorus?</Summary>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project SYSTEM "Project-4.4.dtd"> <!DOCTYPE Project SYSTEM "Project-4.4.dtd">
<!-- eric4 project file for project openlp.org 2.0 --> <!-- eric4 project file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-26, 21:40:00 --> <!-- Saved: 2008-11-26, 21:42:18 -->
<!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org --> <!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org -->
<Project version="4.4"> <Project version="4.4">
<ProgLanguage mixed="0">Python</ProgLanguage> <ProgLanguage mixed="0">Python</ProgLanguage>
@ -33,7 +33,6 @@
<Source>openlp/core/plugin.py</Source> <Source>openlp/core/plugin.py</Source>
<Source>openlp/core/xmlrootclass.py</Source> <Source>openlp/core/xmlrootclass.py</Source>
<Source>openlp/song/__init__.py</Source> <Source>openlp/song/__init__.py</Source>
<Source>openlp/song/song.py</Source>
<Source>openlp/song/test/test_song_opensong.py</Source> <Source>openlp/song/test/test_song_opensong.py</Source>
<Source>openlp/song/test/test_song_basic.py</Source> <Source>openlp/song/test/test_song_basic.py</Source>
<Source>openlp/song/test/test_song_text.py</Source> <Source>openlp/song/test/test_song_text.py</Source>
@ -73,6 +72,7 @@
<Source>openlp/core/ui/alertform.py</Source> <Source>openlp/core/ui/alertform.py</Source>
<Source>openlp/core/ui/about.py</Source> <Source>openlp/core/ui/about.py</Source>
<Source>openlp/plugins/songs/songplugin.py</Source> <Source>openlp/plugins/songs/songplugin.py</Source>
<Source>openlp/song/songxml.py</Source>
</Sources> </Sources>
<Forms> <Forms>
<Form>openlp/resources/forms/mainwindow.ui</Form> <Form>openlp/resources/forms/mainwindow.ui</Form>

View File

View File

View File

@ -22,7 +22,7 @@ from PyQt4 import QtCore, QtGui
from openlp.resources import * from openlp.resources import *
from openlp.core import Plugin, MediaManagerItem from openlp.core import Plugin, MediaManagerItem
class SongPlugin(Plugin): class SongsPlugin(Plugin):
def __init__(self): def __init__(self):
# Call the parent constructor # Call the parent constructor
Plugin.__init__('Song', '1.9.0') Plugin.__init__('Song', '1.9.0')