forked from openlp/openlp
Head r952 and cleanups
This commit is contained in:
commit
7691418bc3
@ -40,7 +40,7 @@ class BiblePlugin(Plugin):
|
|||||||
self.weight = -9
|
self.weight = -9
|
||||||
self.icon_path = u':/plugins/plugin_bibles.png'
|
self.icon_path = u':/plugins/plugin_bibles.png'
|
||||||
self.icon = build_icon(self.icon_path)
|
self.icon = build_icon(self.icon_path)
|
||||||
#Register the bible Manager
|
# Register the bible Manager.
|
||||||
self.status = PluginStatus.Active
|
self.status = PluginStatus.Active
|
||||||
self.manager = None
|
self.manager = None
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ class BiblePlugin(Plugin):
|
|||||||
return BiblesTab(self.name)
|
return BiblesTab(self.name)
|
||||||
|
|
||||||
def getMediaManagerItem(self):
|
def getMediaManagerItem(self):
|
||||||
# Create the BibleManagerItem object
|
# Create the BibleManagerItem object.
|
||||||
return BibleMediaItem(self, self.icon, self.name)
|
return BibleMediaItem(self, self.icon, self.name)
|
||||||
|
|
||||||
def addImportMenuItem(self, import_menu):
|
def addImportMenuItem(self, import_menu):
|
||||||
@ -71,7 +71,7 @@ class BiblePlugin(Plugin):
|
|||||||
import_menu.addAction(self.ImportBibleItem)
|
import_menu.addAction(self.ImportBibleItem)
|
||||||
self.ImportBibleItem.setText(
|
self.ImportBibleItem.setText(
|
||||||
translate('BiblePlugin', '&Bible'))
|
translate('BiblePlugin', '&Bible'))
|
||||||
# Signals and slots
|
# signals and slots
|
||||||
QtCore.QObject.connect(self.ImportBibleItem,
|
QtCore.QObject.connect(self.ImportBibleItem,
|
||||||
QtCore.SIGNAL(u'triggered()'), self.onBibleImportClick)
|
QtCore.SIGNAL(u'triggered()'), self.onBibleImportClick)
|
||||||
self.ImportBibleItem.setVisible(False)
|
self.ImportBibleItem.setVisible(False)
|
||||||
|
@ -129,8 +129,7 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
self.QuickClearLabel.setObjectName(u'QuickSearchLabel')
|
self.QuickClearLabel.setObjectName(u'QuickSearchLabel')
|
||||||
self.QuickLayout.addWidget(self.QuickClearLabel, 4, 0, 1, 1)
|
self.QuickLayout.addWidget(self.QuickClearLabel, 4, 0, 1, 1)
|
||||||
self.ClearQuickSearchComboBox = QtGui.QComboBox(self.QuickTab)
|
self.ClearQuickSearchComboBox = QtGui.QComboBox(self.QuickTab)
|
||||||
self.ClearQuickSearchComboBox.setObjectName(
|
self.ClearQuickSearchComboBox.setObjectName(u'ClearQuickSearchComboBox')
|
||||||
u'ClearQuickSearchComboBox')
|
|
||||||
self.QuickLayout.addWidget(self.ClearQuickSearchComboBox, 4, 1, 1, 2)
|
self.QuickLayout.addWidget(self.ClearQuickSearchComboBox, 4, 1, 1, 2)
|
||||||
self.QuickSearchButtonLayout = QtGui.QHBoxLayout()
|
self.QuickSearchButtonLayout = QtGui.QHBoxLayout()
|
||||||
self.QuickSearchButtonLayout.setMargin(0)
|
self.QuickSearchButtonLayout.setMargin(0)
|
||||||
@ -168,8 +167,7 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
self.AdvancedVersionComboBox.setObjectName(u'AdvancedVersionComboBox')
|
self.AdvancedVersionComboBox.setObjectName(u'AdvancedVersionComboBox')
|
||||||
self.AdvancedLayout.addWidget(self.AdvancedVersionComboBox, 0, 1, 1, 2)
|
self.AdvancedLayout.addWidget(self.AdvancedVersionComboBox, 0, 1, 1, 2)
|
||||||
self.AdvancedSecondBibleLabel = QtGui.QLabel(self.AdvancedTab)
|
self.AdvancedSecondBibleLabel = QtGui.QLabel(self.AdvancedTab)
|
||||||
self.AdvancedSecondBibleLabel.setObjectName(
|
self.AdvancedSecondBibleLabel.setObjectName(u'AdvancedSecondBibleLabel')
|
||||||
u'AdvancedSecondBibleLabel')
|
|
||||||
self.AdvancedLayout.addWidget(self.AdvancedSecondBibleLabel, 1, 0, 1, 1)
|
self.AdvancedLayout.addWidget(self.AdvancedSecondBibleLabel, 1, 0, 1, 1)
|
||||||
self.AdvancedSecondBibleComboBox = QtGui.QComboBox(self.AdvancedTab)
|
self.AdvancedSecondBibleComboBox = QtGui.QComboBox(self.AdvancedTab)
|
||||||
self.AdvancedSecondBibleComboBox.setSizeAdjustPolicy(
|
self.AdvancedSecondBibleComboBox.setSizeAdjustPolicy(
|
||||||
@ -223,8 +221,7 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
u'AdvancedSearchButtonLayout')
|
u'AdvancedSearchButtonLayout')
|
||||||
self.AdvancedSearchButtonSpacer = QtGui.QSpacerItem(40, 20,
|
self.AdvancedSearchButtonSpacer = QtGui.QSpacerItem(40, 20,
|
||||||
QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
|
QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
|
||||||
self.AdvancedSearchButtonLayout.addItem(
|
self.AdvancedSearchButtonLayout.addItem(self.AdvancedSearchButtonSpacer)
|
||||||
self.AdvancedSearchButtonSpacer)
|
|
||||||
self.AdvancedSearchButton = QtGui.QPushButton(self.AdvancedTab)
|
self.AdvancedSearchButton = QtGui.QPushButton(self.AdvancedTab)
|
||||||
self.AdvancedSearchButton.setObjectName(u'AdvancedSearchButton')
|
self.AdvancedSearchButton.setObjectName(u'AdvancedSearchButton')
|
||||||
self.AdvancedSearchButtonLayout.addWidget(self.AdvancedSearchButton)
|
self.AdvancedSearchButtonLayout.addWidget(self.AdvancedSearchButton)
|
||||||
@ -511,14 +508,14 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
reference = bitem.data(QtCore.Qt.UserRole)
|
reference = bitem.data(QtCore.Qt.UserRole)
|
||||||
if isinstance(reference, QtCore.QVariant):
|
if isinstance(reference, QtCore.QVariant):
|
||||||
reference = reference.toPyObject()
|
reference = reference.toPyObject()
|
||||||
bible = self._decodeQtObject(reference, 'bible')
|
#bible = self._decodeQtObject(reference, 'bible')
|
||||||
book = self._decodeQtObject(reference, 'book')
|
book = self._decodeQtObject(reference, 'book')
|
||||||
chapter = self._decodeQtObject(reference, 'chapter')
|
chapter = self._decodeQtObject(reference, 'chapter')
|
||||||
verse = self._decodeQtObject(reference, 'verse')
|
verse = self._decodeQtObject(reference, 'verse')
|
||||||
text = self._decodeQtObject(reference, 'text')
|
text = self._decodeQtObject(reference, 'text')
|
||||||
version = self._decodeQtObject(reference, 'version')
|
version = self._decodeQtObject(reference, 'version')
|
||||||
copyright = self._decodeQtObject(reference, 'copyright')
|
copyright = self._decodeQtObject(reference, 'copyright')
|
||||||
permission = self._decodeQtObject(reference, 'permission')
|
#permission = self._decodeQtObject(reference, 'permission')
|
||||||
if self.parent.settings_tab.display_style == 1:
|
if self.parent.settings_tab.display_style == 1:
|
||||||
verse_text = self.formatVerse(old_chapter, chapter, verse,
|
verse_text = self.formatVerse(old_chapter, chapter, verse,
|
||||||
u'(u', u')')
|
u'(u', u')')
|
||||||
@ -618,8 +615,7 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
else:
|
else:
|
||||||
self.AdvancedSearchButton.setEnabled(True)
|
self.AdvancedSearchButton.setEnabled(True)
|
||||||
self.AdvancedMessage.setText(u'')
|
self.AdvancedMessage.setText(u'')
|
||||||
self.adjustComboBox(1, self.chapters_from,
|
self.adjustComboBox(1, self.chapters_from, self.AdvancedFromChapter)
|
||||||
self.AdvancedFromChapter)
|
|
||||||
self.adjustComboBox(1, self.chapters_from, self.AdvancedToChapter)
|
self.adjustComboBox(1, self.chapters_from, self.AdvancedToChapter)
|
||||||
self.adjustComboBox(1, self.verses, self.AdvancedFromVerse)
|
self.adjustComboBox(1, self.verses, self.AdvancedFromVerse)
|
||||||
self.adjustComboBox(1, self.verses, self.AdvancedToVerse)
|
self.adjustComboBox(1, self.verses, self.AdvancedToVerse)
|
||||||
|
@ -97,7 +97,7 @@ class AuthorsForm(QtGui.QDialog, Ui_AuthorsDialog):
|
|||||||
if QtGui.QMessageBox.critical(
|
if QtGui.QMessageBox.critical(
|
||||||
self, translate('SongsPlugin.AuthorsForm', 'Error'),
|
self, translate('SongsPlugin.AuthorsForm', 'Error'),
|
||||||
translate('SongsPlugin.AuthorsForm',
|
translate('SongsPlugin.AuthorsForm',
|
||||||
'You haven\'t set a display name for the '
|
'You have not set a display name for the '
|
||||||
'author, would you like me to combine the first and '
|
'author, would you like me to combine the first and '
|
||||||
'last names for you?'),
|
'last names for you?'),
|
||||||
QtGui.QMessageBox.StandardButtons(
|
QtGui.QMessageBox.StandardButtons(
|
||||||
|
@ -430,7 +430,7 @@ class Ui_EditSongDialog(object):
|
|||||||
self.AuthorRemoveButton.setText(
|
self.AuthorRemoveButton.setText(
|
||||||
translate('SongsPlugin.EditSongForm', '&Remove'))
|
translate('SongsPlugin.EditSongForm', '&Remove'))
|
||||||
self.MaintenanceButton.setText(translate('SongsPlugin.EditSongForm',
|
self.MaintenanceButton.setText(translate('SongsPlugin.EditSongForm',
|
||||||
'&Manage Authors, Topics, Books'))
|
'&Manage Authors, Topics, Song Books'))
|
||||||
self.TopicGroupBox.setTitle(
|
self.TopicGroupBox.setTitle(
|
||||||
translate('SongsPlugin.EditSongForm', 'Topic'))
|
translate('SongsPlugin.EditSongForm', 'Topic'))
|
||||||
self.TopicAddButton.setText(
|
self.TopicAddButton.setText(
|
||||||
@ -441,7 +441,7 @@ class Ui_EditSongDialog(object):
|
|||||||
translate('SongsPlugin.EditSongForm', 'Song Book'))
|
translate('SongsPlugin.EditSongForm', 'Song Book'))
|
||||||
self.SongTabWidget.setTabText(
|
self.SongTabWidget.setTabText(
|
||||||
self.SongTabWidget.indexOf(self.AuthorsTab),
|
self.SongTabWidget.indexOf(self.AuthorsTab),
|
||||||
translate('SongsPlugin.EditSongForm', 'Authors, Topics && Book'))
|
translate('SongsPlugin.EditSongForm', 'Authors, Topics && Song Book'))
|
||||||
self.ThemeGroupBox.setTitle(
|
self.ThemeGroupBox.setTitle(
|
||||||
translate('SongsPlugin.EditSongForm', 'Theme'))
|
translate('SongsPlugin.EditSongForm', 'Theme'))
|
||||||
self.ThemeAddButton.setText(
|
self.ThemeAddButton.setText(
|
||||||
|
@ -68,7 +68,7 @@ class Ui_SongBookDialog(object):
|
|||||||
|
|
||||||
def retranslateUi(self, SongBookDialog):
|
def retranslateUi(self, SongBookDialog):
|
||||||
SongBookDialog.setWindowTitle(
|
SongBookDialog.setWindowTitle(
|
||||||
translate('SongsPlugin.SongBookForm', 'Edit Book'))
|
translate('SongsPlugin.SongBookForm', 'Song Book Maintenance'))
|
||||||
self.NameLabel.setText(translate('SongsPlugin.SongBookForm', '&Name:'))
|
self.NameLabel.setText(translate('SongsPlugin.SongBookForm', '&Name:'))
|
||||||
self.PublisherLabel.setText(
|
self.PublisherLabel.setText(
|
||||||
translate('SongsPlugin.SongBookForm', '&Publisher:'))
|
translate('SongsPlugin.SongBookForm', '&Publisher:'))
|
||||||
|
@ -217,7 +217,7 @@ class Ui_SongMaintenanceDialog(object):
|
|||||||
self.TypeListWidget.item(1).setText(
|
self.TypeListWidget.item(1).setText(
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Topics'))
|
translate('SongsPlugin.SongMaintenanceForm', 'Topics'))
|
||||||
self.TypeListWidget.item(2).setText(
|
self.TypeListWidget.item(2).setText(
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Books/Hymnals'))
|
translate('SongsPlugin.SongMaintenanceForm', 'Song Books'))
|
||||||
self.AuthorAddButton.setText(
|
self.AuthorAddButton.setText(
|
||||||
translate('SongsPlugin.SongMaintenanceForm', '&Add'))
|
translate('SongsPlugin.SongMaintenanceForm', '&Add'))
|
||||||
self.AuthorEditButton.setText(
|
self.AuthorEditButton.setText(
|
||||||
|
@ -26,9 +26,9 @@
|
|||||||
from PyQt4 import QtGui, QtCore
|
from PyQt4 import QtGui, QtCore
|
||||||
from sqlalchemy.sql import and_
|
from sqlalchemy.sql import and_
|
||||||
|
|
||||||
from openlp.core.lib import translate
|
from openlp.core.lib import Receiver, translate
|
||||||
from openlp.plugins.songs.forms import AuthorsForm, TopicsForm, SongBookForm
|
from openlp.plugins.songs.forms import AuthorsForm, TopicsForm, SongBookForm
|
||||||
from openlp.plugins.songs.lib.db import Author, Book, Topic
|
from openlp.plugins.songs.lib.db import Author, Book, Topic, Song
|
||||||
from songmaintenancedialog import Ui_SongMaintenanceDialog
|
from songmaintenancedialog import Ui_SongMaintenanceDialog
|
||||||
|
|
||||||
class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
||||||
@ -142,13 +142,10 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
Returns False if the given Author is already in the list otherwise
|
Returns False if the given Author is already in the list otherwise
|
||||||
True.
|
True.
|
||||||
"""
|
"""
|
||||||
authors = self.songmanager.get_all_objects(Author,
|
authors = self.songmanager.get_all_objects(Author,
|
||||||
and_(
|
and_(Author.first_name == new_author.first_name,
|
||||||
Author.first_name == new_author.first_name,
|
Author.last_name == new_author.last_name,
|
||||||
Author.last_name == new_author.last_name,
|
Author.display_name == new_author.display_name))
|
||||||
Author.display_name == new_author.display_name
|
|
||||||
)
|
|
||||||
)
|
|
||||||
if len(authors) > 0:
|
if len(authors) > 0:
|
||||||
# If we edit an existing Author, we need to make sure that we do
|
# If we edit an existing Author, we need to make sure that we do
|
||||||
# not return False when nothing has changed (because this would
|
# not return False when nothing has changed (because this would
|
||||||
@ -188,7 +185,7 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
Returns False if the given Book is already in the list otherwise True.
|
Returns False if the given Book is already in the list otherwise True.
|
||||||
"""
|
"""
|
||||||
books = self.songmanager.get_all_objects(Book,
|
books = self.songmanager.get_all_objects(Book,
|
||||||
and_(Book.name == new_book.name,
|
and_(Book.name == new_book.name,
|
||||||
Book.publisher == new_book.publisher))
|
Book.publisher == new_book.publisher))
|
||||||
if len(books) > 0:
|
if len(books) > 0:
|
||||||
# If we edit an existing Book, we need to make sure that we do
|
# If we edit an existing Book, we need to make sure that we do
|
||||||
@ -214,11 +211,16 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
if self.checkAuthor(author):
|
if self.checkAuthor(author):
|
||||||
if self.songmanager.save_object(author):
|
if self.songmanager.save_object(author):
|
||||||
self.resetAuthors()
|
self.resetAuthors()
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not add your author.'))
|
||||||
else:
|
else:
|
||||||
QtGui.QMessageBox.critical(self,
|
QtGui.QMessageBox.critical(self,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
'Could not add your author.'))
|
'This author already exists.'))
|
||||||
|
|
||||||
def onTopicAddButtonClick(self):
|
def onTopicAddButtonClick(self):
|
||||||
if self.topicform.exec_():
|
if self.topicform.exec_():
|
||||||
@ -226,25 +228,34 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
if self.checkTopic(topic):
|
if self.checkTopic(topic):
|
||||||
if self.songmanager.save_object(topic):
|
if self.songmanager.save_object(topic):
|
||||||
self.resetTopics()
|
self.resetTopics()
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not add your topic.'))
|
||||||
else:
|
else:
|
||||||
QtGui.QMessageBox.critical(self,
|
QtGui.QMessageBox.critical(self,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
'Could not add your topic.'))
|
'This topic already exists.'))
|
||||||
|
|
||||||
def onBookAddButtonClick(self):
|
def onBookAddButtonClick(self):
|
||||||
if self.bookform.exec_():
|
if self.bookform.exec_():
|
||||||
book = Book.populate(
|
book = Book.populate(name=unicode(self.bookform.NameEdit.text()),
|
||||||
name=unicode(self.bookform.NameEdit.text()),
|
|
||||||
publisher=unicode(self.bookform.PublisherEdit.text()))
|
publisher=unicode(self.bookform.PublisherEdit.text()))
|
||||||
if self.checkBook(book):
|
if self.checkBook(book):
|
||||||
if self.songmanager.save_object(book):
|
if self.songmanager.save_object(book):
|
||||||
self.resetBooks()
|
self.resetBooks()
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not add your book.'))
|
||||||
else:
|
else:
|
||||||
QtGui.QMessageBox.critical(self,
|
QtGui.QMessageBox.critical(self,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
'Could not add your book.'))
|
'This book already exists.'))
|
||||||
|
|
||||||
def onAuthorEditButtonClick(self):
|
def onAuthorEditButtonClick(self):
|
||||||
author_id = self._getCurrentItemId(self.AuthorsListWidget)
|
author_id = self._getCurrentItemId(self.AuthorsListWidget)
|
||||||
@ -268,6 +279,24 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
if self.checkAuthor(author, True):
|
if self.checkAuthor(author, True):
|
||||||
if self.songmanager.save_object(author):
|
if self.songmanager.save_object(author):
|
||||||
self.resetAuthors()
|
self.resetAuthors()
|
||||||
|
Receiver.send_message(u'songs_load_list')
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not save your changes.'))
|
||||||
|
elif QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'The author %s'
|
||||||
|
' already exists. Would you like to make songs with author '
|
||||||
|
'%s use the existing author %s?' % (author.display_name,
|
||||||
|
temp_display_name, author.display_name)),
|
||||||
|
QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.No |
|
||||||
|
QtGui.QMessageBox.Yes)) == QtGui.QMessageBox.Yes:
|
||||||
|
self.mergeAuthors(author)
|
||||||
|
self.resetAuthors()
|
||||||
|
Receiver.send_message(u'songs_load_list')
|
||||||
else:
|
else:
|
||||||
# We restore the author's old first and last name as well as
|
# We restore the author's old first and last name as well as
|
||||||
# his display name.
|
# his display name.
|
||||||
@ -277,7 +306,8 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
QtGui.QMessageBox.critical(self,
|
QtGui.QMessageBox.critical(self,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
'Could not save your author.'))
|
'Could not save your modified author, because he '
|
||||||
|
'already exists.'))
|
||||||
|
|
||||||
def onTopicEditButtonClick(self):
|
def onTopicEditButtonClick(self):
|
||||||
topic_id = self._getCurrentItemId(self.TopicsListWidget)
|
topic_id = self._getCurrentItemId(self.TopicsListWidget)
|
||||||
@ -291,13 +321,30 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
if self.checkTopic(topic, True):
|
if self.checkTopic(topic, True):
|
||||||
if self.songmanager.save_object(topic):
|
if self.songmanager.save_object(topic):
|
||||||
self.resetTopics()
|
self.resetTopics()
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not save your changes.'))
|
||||||
|
elif QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'The topic %s '
|
||||||
|
'already exists. Would you like to make songs with topic %s'
|
||||||
|
' use the existing topic %s?' % (topic.name, temp_name,
|
||||||
|
topic.name)),
|
||||||
|
QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.No |
|
||||||
|
QtGui.QMessageBox.Yes)) == QtGui.QMessageBox.Yes:
|
||||||
|
self.mergeTopics(topic)
|
||||||
|
self.resetTopics()
|
||||||
else:
|
else:
|
||||||
# We restore the topics's old name.
|
# We restore the topics's old name.
|
||||||
topic.name = temp_name
|
topic.name = temp_name
|
||||||
QtGui.QMessageBox.critical(self,
|
QtGui.QMessageBox.critical(self,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
'Could not save your topic.'))
|
'Could not save your modified topic, because it '
|
||||||
|
'already exists.'))
|
||||||
|
|
||||||
def onBookEditButtonClick(self):
|
def onBookEditButtonClick(self):
|
||||||
book_id = self._getCurrentItemId(self.BooksListWidget)
|
book_id = self._getCurrentItemId(self.BooksListWidget)
|
||||||
@ -315,18 +362,89 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
if self.checkBook(book, True):
|
if self.checkBook(book, True):
|
||||||
if self.songmanager.save_object(book):
|
if self.songmanager.save_object(book):
|
||||||
self.resetBooks()
|
self.resetBooks()
|
||||||
|
else:
|
||||||
|
QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm',
|
||||||
|
'Could not save your changes.'))
|
||||||
|
elif QtGui.QMessageBox.critical(self,
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
||||||
|
translate('SongsPlugin.SongMaintenanceForm', 'The book %s '
|
||||||
|
'already exists. Would you like to make songs with book %s '
|
||||||
|
'use the existing book %s?' % (book.name, temp_name,
|
||||||
|
book.name)),
|
||||||
|
QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.No |
|
||||||
|
QtGui.QMessageBox.Yes)) == QtGui.QMessageBox.Yes:
|
||||||
|
self.mergeBooks(book)
|
||||||
|
self.resetBooks()
|
||||||
else:
|
else:
|
||||||
# We restore the book's old name and publisher.
|
# We restore the book's old name and publisher.
|
||||||
book.name = temp_name
|
book.name = temp_name
|
||||||
book.publisher = temp_publisher
|
book.publisher = temp_publisher
|
||||||
QtGui.QMessageBox.critical(self,
|
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Error'),
|
def mergeAuthors(self, old_author):
|
||||||
translate('SongsPlugin.SongMaintenanceForm',
|
'''
|
||||||
'Could not save your book.'))
|
Merges two authors into one author.
|
||||||
|
|
||||||
|
``old_author``
|
||||||
|
The author which will be deleted afterwards.
|
||||||
|
'''
|
||||||
|
existing_author = self.songmanager.get_object_filtered(Author,
|
||||||
|
and_(Author.first_name == old_author.first_name,
|
||||||
|
Author.last_name == old_author.last_name,
|
||||||
|
Author.display_name == old_author.display_name))
|
||||||
|
songs = self.songmanager.get_all_objects_filtered(Song,
|
||||||
|
Song.authors.contains(old_author))
|
||||||
|
for song in songs:
|
||||||
|
# We check if the song has already existing_author as author. If
|
||||||
|
# that is not the case we add it.
|
||||||
|
if existing_author not in song.authors:
|
||||||
|
song.authors.append(existing_author)
|
||||||
|
song.authors.remove(old_author)
|
||||||
|
self.songmanager.save_object(song)
|
||||||
|
self.songmanager.delete_object(Author, old_author.id)
|
||||||
|
|
||||||
|
def mergeTopics(self, old_topic):
|
||||||
|
'''
|
||||||
|
Merges two topics into one topic.
|
||||||
|
|
||||||
|
``old_topic``
|
||||||
|
The topic which will be deleted afterwards.
|
||||||
|
'''
|
||||||
|
existing_topic = self.songmanager.get_object_filtered(Topic,
|
||||||
|
Topic.name == old_topic.name)
|
||||||
|
songs = self.songmanager.get_all_objects_filtered(Song,
|
||||||
|
Song.topics.contains(old_topic))
|
||||||
|
for song in songs:
|
||||||
|
# We check if the song has already existing_topic as topic. If that
|
||||||
|
# is not the case we add it.
|
||||||
|
if existing_topic not in song.topics:
|
||||||
|
song.topics.append(existing_topic)
|
||||||
|
song.topics.remove(old_topic)
|
||||||
|
self.songmanager.save_object(song)
|
||||||
|
self.songmanager.delete_object(Topic, old_topic.id)
|
||||||
|
|
||||||
|
def mergeBooks(self, old_book):
|
||||||
|
'''
|
||||||
|
Merges two books into one book.
|
||||||
|
|
||||||
|
``old_book``
|
||||||
|
The book which will be deleted afterwards.
|
||||||
|
'''
|
||||||
|
existing_book = self.songmanager.get_object_filtered(Book,
|
||||||
|
and_(Book.name == old_book.name,
|
||||||
|
Book.publisher == old_book.publisher))
|
||||||
|
songs = self.songmanager.get_all_objects_filtered(Song,
|
||||||
|
Song.song_book_id == old_book.id)
|
||||||
|
for song in songs:
|
||||||
|
song.song_book_id = existing_book.id
|
||||||
|
self.songmanager.save_object(song)
|
||||||
|
self.songmanager.delete_object(Book, old_book.id)
|
||||||
|
|
||||||
def onAuthorDeleteButtonClick(self):
|
def onAuthorDeleteButtonClick(self):
|
||||||
"""
|
"""
|
||||||
Delete the author if the author is not attached to any songs
|
Delete the author if the author is not attached to any songs.
|
||||||
"""
|
"""
|
||||||
self._deleteItem(Author, self.AuthorsListWidget, self.resetAuthors,
|
self._deleteItem(Author, self.AuthorsListWidget, self.resetAuthors,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Delete Author'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Delete Author'),
|
||||||
@ -339,7 +457,7 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
|
|
||||||
def onTopicDeleteButtonClick(self):
|
def onTopicDeleteButtonClick(self):
|
||||||
"""
|
"""
|
||||||
Delete the Book is the Book is not attached to any songs
|
Delete the Book is the Book is not attached to any songs.
|
||||||
"""
|
"""
|
||||||
self._deleteItem(Topic, self.TopicsListWidget, self.resetTopics,
|
self._deleteItem(Topic, self.TopicsListWidget, self.resetTopics,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Delete Topic'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Delete Topic'),
|
||||||
@ -352,7 +470,7 @@ class SongMaintenanceForm(QtGui.QDialog, Ui_SongMaintenanceDialog):
|
|||||||
|
|
||||||
def onBookDeleteButtonClick(self):
|
def onBookDeleteButtonClick(self):
|
||||||
"""
|
"""
|
||||||
Delete the Book is the Book is not attached to any songs
|
Delete the Book is the Book is not attached to any songs.
|
||||||
"""
|
"""
|
||||||
self._deleteItem(Book, self.BooksListWidget, self.resetBooks,
|
self._deleteItem(Book, self.BooksListWidget, self.resetBooks,
|
||||||
translate('SongsPlugin.SongMaintenanceForm', 'Delete Book'),
|
translate('SongsPlugin.SongMaintenanceForm', 'Delete Book'),
|
||||||
|
@ -141,6 +141,7 @@ from xml import LyricsXML, SongXMLBuilder, SongXMLParser
|
|||||||
from songstab import SongsTab
|
from songstab import SongsTab
|
||||||
from mediaitem import SongMediaItem
|
from mediaitem import SongMediaItem
|
||||||
from songimport import SongImport
|
from songimport import SongImport
|
||||||
|
from opensongimport import OpenSongImport
|
||||||
try:
|
try:
|
||||||
from sofimport import SofImport
|
from sofimport import SofImport
|
||||||
from oooimport import OooImport
|
from oooimport import OooImport
|
||||||
|
240
openlp/plugins/songs/lib/opensongimport.py
Normal file
240
openlp/plugins/songs/lib/opensongimport.py
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# 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 #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from zipfile import ZipFile
|
||||||
|
from lxml import objectify
|
||||||
|
|
||||||
|
from openlp.plugins.songs.lib.songimport import SongImport
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
class OpenSongImportError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class OpenSongImport(object):
|
||||||
|
"""
|
||||||
|
Import songs exported from OpenSong - the format is described loosly here:
|
||||||
|
http://www.opensong.org/d/manual/song_file_format_specification
|
||||||
|
|
||||||
|
However, it doesn't describe the <lyrics> section, so here's an attempt:
|
||||||
|
|
||||||
|
Verses can be expressed in one of 2 ways:
|
||||||
|
<lyrics>
|
||||||
|
[v1]List of words
|
||||||
|
Another Line
|
||||||
|
|
||||||
|
[v2]Some words for the 2nd verse
|
||||||
|
etc...
|
||||||
|
</lyrics>
|
||||||
|
|
||||||
|
The 'v' can be left out - it is implied
|
||||||
|
or:
|
||||||
|
<lyrics>
|
||||||
|
[V]
|
||||||
|
1List of words
|
||||||
|
2Some words for the 2nd Verse
|
||||||
|
|
||||||
|
1Another Line
|
||||||
|
2etc...
|
||||||
|
</lyrics>
|
||||||
|
|
||||||
|
Either or both forms can be used in one song. The Number does not
|
||||||
|
necessarily appear at the start of the line
|
||||||
|
|
||||||
|
The [v1] labels can have either upper or lower case Vs
|
||||||
|
Other labels can be used also:
|
||||||
|
C - Chorus
|
||||||
|
B - Bridge
|
||||||
|
|
||||||
|
Guitar chords can be provided 'above' the lyrics (the line is
|
||||||
|
preceeded by a'.') and _s can be used to signify long-drawn-out
|
||||||
|
words:
|
||||||
|
|
||||||
|
. A7 Bm
|
||||||
|
1 Some____ Words
|
||||||
|
|
||||||
|
Chords and _s are removed by this importer.
|
||||||
|
|
||||||
|
The verses etc. are imported and tagged appropriately.
|
||||||
|
|
||||||
|
The <presentation> tag is used to populate the OpenLP verse
|
||||||
|
display order field. The Author and Copyright tags are also
|
||||||
|
imported to the appropriate places.
|
||||||
|
|
||||||
|
"""
|
||||||
|
def __init__(self, songmanager):
|
||||||
|
"""
|
||||||
|
Initialise the class. Requires a songmanager class which
|
||||||
|
is passed to SongImport for writing song to disk
|
||||||
|
"""
|
||||||
|
self.songmanager = songmanager
|
||||||
|
self.song = None
|
||||||
|
|
||||||
|
def do_import(self, filename, commit=True):
|
||||||
|
"""
|
||||||
|
Import either a single opensong file, or a zipfile
|
||||||
|
containing multiple opensong files If the commit parameter is
|
||||||
|
set False, the import will not be committed to the database
|
||||||
|
(useful for test scripts)
|
||||||
|
"""
|
||||||
|
ext = os.path.splitext(filename)[1]
|
||||||
|
if ext.lower() == ".zip":
|
||||||
|
log.info('Zipfile found %s', filename)
|
||||||
|
z = ZipFile(filename, u'r')
|
||||||
|
for song in z.infolist():
|
||||||
|
parts = os.path.split(song.filename)
|
||||||
|
if parts[-1] == u'':
|
||||||
|
#No final part => directory
|
||||||
|
continue
|
||||||
|
songfile = z.open(song)
|
||||||
|
self.do_import_file(songfile)
|
||||||
|
if commit:
|
||||||
|
self.finish()
|
||||||
|
else:
|
||||||
|
log.info('Direct import %s', filename)
|
||||||
|
file = open(filename)
|
||||||
|
self.do_import_file(file)
|
||||||
|
if commit:
|
||||||
|
self.finish()
|
||||||
|
|
||||||
|
|
||||||
|
def do_import_file(self, file):
|
||||||
|
"""
|
||||||
|
Process the OpenSong file - pass in a file-like object,
|
||||||
|
not a filename
|
||||||
|
"""
|
||||||
|
self.song_import = SongImport(self.songmanager)
|
||||||
|
tree = objectify.parse(file)
|
||||||
|
root = tree.getroot()
|
||||||
|
fields = dir(root)
|
||||||
|
decode = {u'copyright':self.song_import.add_copyright,
|
||||||
|
u'ccli':u'ccli_number',
|
||||||
|
u'author':self.song_import.parse_author,
|
||||||
|
u'title':u'title',
|
||||||
|
u'aka':u'alternate_title',
|
||||||
|
u'hymn_number':u'song_number'}
|
||||||
|
for (attr, fn_or_string) in decode.items():
|
||||||
|
if attr in fields:
|
||||||
|
ustring = unicode(root.__getattr__(attr))
|
||||||
|
if type(fn_or_string) == type(u''):
|
||||||
|
self.song_import.__setattr__(fn_or_string, ustring)
|
||||||
|
else:
|
||||||
|
fn_or_string(ustring)
|
||||||
|
if u'theme' in fields:
|
||||||
|
self.song_import.topics.append(unicode(root.theme))
|
||||||
|
if u'alttheme' in fields:
|
||||||
|
self.song_import.topics.append(unicode(root.alttheme))
|
||||||
|
# data storage while importing
|
||||||
|
verses = {}
|
||||||
|
lyrics = unicode(root.lyrics)
|
||||||
|
# keep track of a "default" verse order, in case none is specified
|
||||||
|
our_verse_order = []
|
||||||
|
verses_seen = {}
|
||||||
|
# in the absence of any other indication, verses are the default,
|
||||||
|
# erm, versetype!
|
||||||
|
versetype = u'V'
|
||||||
|
for thisline in lyrics.split(u'\n'):
|
||||||
|
# remove comments
|
||||||
|
semicolon = thisline.find(u';')
|
||||||
|
if semicolon >= 0:
|
||||||
|
thisline = thisline[:semicolon]
|
||||||
|
thisline = thisline.strip()
|
||||||
|
if len(thisline) == 0:
|
||||||
|
continue
|
||||||
|
# skip inthisline guitar chords and page and column breaks
|
||||||
|
if thisline[0] == u'.' or thisline.startswith(u'---') \
|
||||||
|
or thisline.startswith(u'-!!'):
|
||||||
|
continue
|
||||||
|
|
||||||
|
# verse/chorus/etc. marker
|
||||||
|
if thisline[0] == u'[':
|
||||||
|
versetype = thisline[1].upper()
|
||||||
|
if versetype.isdigit():
|
||||||
|
versenum = versetype
|
||||||
|
versetype = u'V'
|
||||||
|
elif thisline[2] != u']':
|
||||||
|
# there's a number to go with it - extract that as well
|
||||||
|
right_bracket = thisline.find(u']')
|
||||||
|
versenum = thisline[2:right_bracket]
|
||||||
|
else:
|
||||||
|
# if there's no number, assume it's no.1
|
||||||
|
versenum = u'1'
|
||||||
|
continue
|
||||||
|
words = None
|
||||||
|
|
||||||
|
# number at start of line.. it's verse number
|
||||||
|
if thisline[0].isdigit():
|
||||||
|
versenum = thisline[0]
|
||||||
|
words = thisline[1:].strip()
|
||||||
|
if words is None and \
|
||||||
|
versenum is not None and \
|
||||||
|
versetype is not None:
|
||||||
|
words = thisline
|
||||||
|
if versenum is not None:
|
||||||
|
versetag = u'%s%s'%(versetype,versenum)
|
||||||
|
if not verses.has_key(versetype):
|
||||||
|
verses[versetype] = {}
|
||||||
|
if not verses[versetype].has_key(versenum):
|
||||||
|
verses[versetype][versenum] = [] # storage for lines in this verse
|
||||||
|
if not verses_seen.has_key(versetag):
|
||||||
|
verses_seen[versetag] = 1
|
||||||
|
our_verse_order.append(versetag)
|
||||||
|
if words:
|
||||||
|
# Tidy text and remove the ____s from extended words
|
||||||
|
words = self.song_import.tidy_text(words)
|
||||||
|
words = words.replace('_', '')
|
||||||
|
verses[versetype][versenum].append(words)
|
||||||
|
# done parsing
|
||||||
|
versetypes = verses.keys()
|
||||||
|
versetypes.sort()
|
||||||
|
versetags = {}
|
||||||
|
for versetype in versetypes:
|
||||||
|
versenums = verses[versetype].keys()
|
||||||
|
versenums.sort()
|
||||||
|
for num in versenums:
|
||||||
|
versetag = u'%s%s' %(versetype,num)
|
||||||
|
lines = u'\n'.join(verses[versetype][num])
|
||||||
|
self.song_import.verses.append([versetag, lines])
|
||||||
|
versetags[versetag] = 1 # keep track of what we have for error checking later
|
||||||
|
# now figure out the presentation order
|
||||||
|
if u'presentation' in fields and root.presentation != u'':
|
||||||
|
order = unicode(root.presentation)
|
||||||
|
order = order.split()
|
||||||
|
else:
|
||||||
|
assert len(our_verse_order)>0
|
||||||
|
order = our_verse_order
|
||||||
|
for tag in order:
|
||||||
|
if len(tag) == 1:
|
||||||
|
tag = tag + u'1' # Assume it's no.1 if it's not there
|
||||||
|
if not versetags.has_key(tag):
|
||||||
|
log.warn(u'Got order %s but not in versetags, skipping', tag)
|
||||||
|
else:
|
||||||
|
self.song_import.verse_order_list.append(tag)
|
||||||
|
|
||||||
|
def finish(self):
|
||||||
|
""" Separate function, allows test suite to not pollute database"""
|
||||||
|
self.song_import.finish()
|
@ -141,8 +141,8 @@ class SongImport(object):
|
|||||||
"""
|
"""
|
||||||
Add the author. OpenLP stores them individually so split by 'and', '&'
|
Add the author. OpenLP stores them individually so split by 'and', '&'
|
||||||
and comma.
|
and comma.
|
||||||
However need to check for "Mr and Mrs Smith" and turn it to
|
However need to check for 'Mr and Mrs Smith' and turn it to
|
||||||
"Mr Smith" and "Mrs Smith".
|
'Mr Smith' and 'Mrs Smith'.
|
||||||
"""
|
"""
|
||||||
for author in text.split(u','):
|
for author in text.split(u','):
|
||||||
authors = author.split(u'&')
|
authors = author.split(u'&')
|
||||||
@ -224,7 +224,7 @@ class SongImport(object):
|
|||||||
|
|
||||||
def commit_song(self):
|
def commit_song(self):
|
||||||
"""
|
"""
|
||||||
Write the song and it's fields to disk
|
Write the song and its fields to disk
|
||||||
"""
|
"""
|
||||||
song = Song()
|
song = Song()
|
||||||
song.title = self.title
|
song.title = self.title
|
||||||
@ -272,11 +272,12 @@ class SongImport(object):
|
|||||||
publisher=self.song_book_pub)
|
publisher=self.song_book_pub)
|
||||||
song.book = song_book
|
song.book = song_book
|
||||||
for topictext in self.topics:
|
for topictext in self.topics:
|
||||||
topic = self.manager.get_object_filtered(Topic,
|
if len(topictext) == 0:
|
||||||
Topic.name == topictext)
|
continue
|
||||||
|
topic = self.manager.get_object_filtered(Topic, Topic.name == topictext)
|
||||||
if topic is None:
|
if topic is None:
|
||||||
topic = Topic.populate(name=topictext)
|
topic = Topic.populate(name=topictext)
|
||||||
song.topics.append(topictext)
|
song.topics.append(topic)
|
||||||
self.manager.save_object(song)
|
self.manager.save_object(song)
|
||||||
|
|
||||||
def print_song(self):
|
def print_song(self):
|
||||||
|
@ -28,7 +28,6 @@ import logging
|
|||||||
#import os
|
#import os
|
||||||
|
|
||||||
from types import ListType
|
from types import ListType
|
||||||
from xml.etree.ElementTree import ElementTree, XML
|
|
||||||
|
|
||||||
# Do we need these two lines?
|
# Do we need these two lines?
|
||||||
#sys.path.append(os.path.abspath(u'./../../../..'))
|
#sys.path.append(os.path.abspath(u'./../../../..'))
|
||||||
@ -60,175 +59,6 @@ class SongFeatureError(SongException):
|
|||||||
# TODO: Song: Import ChangingSong
|
# TODO: Song: Import ChangingSong
|
||||||
# TODO: Song: Export ChangingSong
|
# TODO: Song: Export ChangingSong
|
||||||
|
|
||||||
_BLANK_OPENSONG_XML = \
|
|
||||||
'''<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<song>
|
|
||||||
<title></title>
|
|
||||||
<author></author>
|
|
||||||
<copyright></copyright>
|
|
||||||
<presentation></presentation>
|
|
||||||
<ccli></ccli>
|
|
||||||
<lyrics></lyrics>
|
|
||||||
<theme></theme>
|
|
||||||
<alttheme></alttheme>
|
|
||||||
</song>
|
|
||||||
'''
|
|
||||||
|
|
||||||
class _OpenSong(object):
|
|
||||||
"""
|
|
||||||
Class for import of OpenSong
|
|
||||||
"""
|
|
||||||
def __init__(self, xmlContent = None):
|
|
||||||
"""
|
|
||||||
Initialize from given xml content
|
|
||||||
"""
|
|
||||||
self._set_from_xml(_BLANK_OPENSONG_XML, 'song')
|
|
||||||
if xmlContent:
|
|
||||||
self._set_from_xml(xmlContent, 'song')
|
|
||||||
|
|
||||||
def _set_from_xml(self, xml, root_tag):
|
|
||||||
"""
|
|
||||||
Set song properties from given xml content.
|
|
||||||
|
|
||||||
``xml``
|
|
||||||
Formatted xml tags and values.
|
|
||||||
``root_tag``
|
|
||||||
The root tag of the xml.
|
|
||||||
"""
|
|
||||||
root = ElementTree(element=XML(xml))
|
|
||||||
xml_iter = root.getiterator()
|
|
||||||
for element in xml_iter:
|
|
||||||
if element.tag != root_tag:
|
|
||||||
text = element.text
|
|
||||||
if text is None:
|
|
||||||
val = text
|
|
||||||
elif isinstance(text, basestring):
|
|
||||||
# Strings need special handling to sort the colours out
|
|
||||||
if text[0] == u'$':
|
|
||||||
# This might be a hex number, let's try to convert it.
|
|
||||||
try:
|
|
||||||
val = int(text[1:], 16)
|
|
||||||
except ValueError:
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
# Let's just see if it's a integer.
|
|
||||||
try:
|
|
||||||
val = int(text)
|
|
||||||
except ValueError:
|
|
||||||
# Ok, it seems to be a string.
|
|
||||||
val = text
|
|
||||||
if hasattr(self, u'post_tag_hook'):
|
|
||||||
(element.tag, val) = \
|
|
||||||
self.post_tag_hook(element.tag, val)
|
|
||||||
setattr(self, element.tag, val)
|
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
"""
|
|
||||||
Return string with all public attributes
|
|
||||||
|
|
||||||
The string is formatted with one attribute per line
|
|
||||||
If the string is split on newline then the length of the
|
|
||||||
list is equal to the number of attributes
|
|
||||||
"""
|
|
||||||
attributes = []
|
|
||||||
for attrib in dir(self):
|
|
||||||
if not attrib.startswith(u'_'):
|
|
||||||
attributes.append(
|
|
||||||
u'%30s : %s' % (attrib, getattr(self, attrib)))
|
|
||||||
return u'\n'.join(attributes)
|
|
||||||
|
|
||||||
def _get_as_string(self):
|
|
||||||
"""
|
|
||||||
Return one string with all public attributes
|
|
||||||
"""
|
|
||||||
result = u''
|
|
||||||
for attrib in dir(self):
|
|
||||||
if not attrib.startswith(u'_'):
|
|
||||||
result += u'_%s_' % getattr(self, attrib)
|
|
||||||
return result
|
|
||||||
|
|
||||||
def get_author_list(self):
|
|
||||||
"""Convert author field to an authorlist
|
|
||||||
|
|
||||||
in OpenSong an author list may be separated by '/'
|
|
||||||
return as a string
|
|
||||||
"""
|
|
||||||
if self.author:
|
|
||||||
list = self.author.split(u' and ')
|
|
||||||
res = [item.strip() for item in list]
|
|
||||||
return u', '.join(res)
|
|
||||||
|
|
||||||
def get_category_array(self):
|
|
||||||
"""Convert theme and alttheme into category_array
|
|
||||||
|
|
||||||
return as a string
|
|
||||||
"""
|
|
||||||
res = []
|
|
||||||
if self.theme:
|
|
||||||
res.append(self.theme)
|
|
||||||
if self.alttheme:
|
|
||||||
res.append(self.alttheme)
|
|
||||||
return u', u'.join(res)
|
|
||||||
|
|
||||||
def _reorder_verse(self, tag, tmpVerse):
|
|
||||||
"""
|
|
||||||
Reorder the verse in case of first char is a number
|
|
||||||
tag -- the tag of this verse / verse group
|
|
||||||
tmpVerse -- list of strings
|
|
||||||
"""
|
|
||||||
res = []
|
|
||||||
for digit in '1234567890 ':
|
|
||||||
tagPending = True
|
|
||||||
for line in tmpVerse:
|
|
||||||
if line.startswith(digit):
|
|
||||||
if tagPending:
|
|
||||||
tagPending = False
|
|
||||||
tagChar = tag.strip(u'[]').lower()
|
|
||||||
if 'v' == tagChar:
|
|
||||||
newtag = "Verse"
|
|
||||||
elif 'c' == tagChar:
|
|
||||||
newtag = "Chorus"
|
|
||||||
elif 'b' == tagChar:
|
|
||||||
newtag = "Bridge"
|
|
||||||
elif 'p' == tagChar:
|
|
||||||
newtag = "Pre-chorus"
|
|
||||||
else:
|
|
||||||
newtag = tagChar
|
|
||||||
tagString = (u'# %s %s' % (newtag, digit)).rstrip()
|
|
||||||
res.append(tagString)
|
|
||||||
res.append(line[1:])
|
|
||||||
if (len(line) == 0) and (not tagPending):
|
|
||||||
res.append(line)
|
|
||||||
return res
|
|
||||||
|
|
||||||
def get_lyrics(self):
|
|
||||||
"""
|
|
||||||
Convert the lyrics to openlp lyrics format
|
|
||||||
return as list of strings
|
|
||||||
"""
|
|
||||||
lyrics = self.lyrics.split(u'\n')
|
|
||||||
tmpVerse = []
|
|
||||||
finalLyrics = []
|
|
||||||
tag = ""
|
|
||||||
for lyric in lyrics:
|
|
||||||
line = lyric.rstrip()
|
|
||||||
if not line.startswith(u'.'):
|
|
||||||
# drop all chords
|
|
||||||
tmpVerse.append(line)
|
|
||||||
if line:
|
|
||||||
if line.startswith(u'['):
|
|
||||||
tag = line
|
|
||||||
else:
|
|
||||||
reorderedVerse = self._reorder_verse(tag, tmpVerse)
|
|
||||||
finalLyrics.extend(reorderedVerse)
|
|
||||||
tag = ""
|
|
||||||
tmpVerse = []
|
|
||||||
# catch up final verse
|
|
||||||
reorderedVerse = self._reorder_verse(tag, tmpVerse)
|
|
||||||
finalLyrics.extend(reorderedVerse)
|
|
||||||
return finalLyrics
|
|
||||||
|
|
||||||
|
|
||||||
class Song(object):
|
class Song(object):
|
||||||
"""Handling song properties and methods
|
"""Handling song properties and methods
|
||||||
|
|
||||||
@ -275,7 +105,7 @@ class Song(object):
|
|||||||
show_author_list -- 0: no show, 1: show
|
show_author_list -- 0: no show, 1: show
|
||||||
show_copyright -- 0: no show, 1: show
|
show_copyright -- 0: no show, 1: show
|
||||||
show_song_cclino -- 0: no show, 1: show
|
show_song_cclino -- 0: no show, 1: show
|
||||||
theme -- name of theme or blank
|
theme_name -- name of theme or blank
|
||||||
category_array -- list of user defined properties (hymn, gospel)
|
category_array -- list of user defined properties (hymn, gospel)
|
||||||
song_book -- name of originating book
|
song_book -- name of originating book
|
||||||
song_number -- number of the song, related to a songbook
|
song_number -- number of the song, related to a songbook
|
||||||
@ -298,7 +128,7 @@ class Song(object):
|
|||||||
self.show_copyright = 1
|
self.show_copyright = 1
|
||||||
self.show_song_cclino = 1
|
self.show_song_cclino = 1
|
||||||
self.show_title = 1
|
self.show_title = 1
|
||||||
self.theme = ""
|
self.theme_name = ""
|
||||||
self.category_array = None
|
self.category_array = None
|
||||||
self.song_book = ""
|
self.song_book = ""
|
||||||
self.song_number = ""
|
self.song_number = ""
|
||||||
@ -307,40 +137,6 @@ class Song(object):
|
|||||||
self.set_lyrics(u'')
|
self.set_lyrics(u'')
|
||||||
return
|
return
|
||||||
|
|
||||||
def from_opensong_buffer(self, xmlcontent):
|
|
||||||
"""Initialize from buffer(string) of xml lines in opensong format"""
|
|
||||||
self._reset()
|
|
||||||
opensong = _OpenSong(xmlcontent)
|
|
||||||
if opensong.title:
|
|
||||||
self.set_title(opensong.title)
|
|
||||||
if opensong.copyright:
|
|
||||||
self.set_copyright(opensong.copyright)
|
|
||||||
if opensong.presentation:
|
|
||||||
self.set_verse_order(opensong.presentation)
|
|
||||||
if opensong.ccli:
|
|
||||||
self.set_song_cclino(opensong.ccli)
|
|
||||||
self.set_author_list(opensong.get_author_list())
|
|
||||||
self.set_category_array(opensong.get_category_array())
|
|
||||||
self.set_lyrics(opensong.get_lyrics())
|
|
||||||
|
|
||||||
def from_opensong_file(self, xmlfilename):
|
|
||||||
"""
|
|
||||||
Initialize from file containing xml
|
|
||||||
xmlfilename -- path to xml file
|
|
||||||
"""
|
|
||||||
osfile = None
|
|
||||||
try:
|
|
||||||
osfile = open(xmlfilename, 'r')
|
|
||||||
list = [line for line in osfile]
|
|
||||||
osfile.close()
|
|
||||||
xml = "".join(list)
|
|
||||||
self.from_opensong_buffer(xml)
|
|
||||||
except IOError:
|
|
||||||
log.exception(u'Failed to load opensong xml file')
|
|
||||||
finally:
|
|
||||||
if osfile:
|
|
||||||
osfile.close()
|
|
||||||
|
|
||||||
def _remove_punctuation(self, title):
|
def _remove_punctuation(self, title):
|
||||||
"""Remove the puntuation chars from title
|
"""Remove the puntuation chars from title
|
||||||
|
|
||||||
@ -420,7 +216,7 @@ class Song(object):
|
|||||||
self.set_title(sName)
|
self.set_title(sName)
|
||||||
self.set_author_list(author_list)
|
self.set_author_list(author_list)
|
||||||
self.set_copyright(sCopyright)
|
self.set_copyright(sCopyright)
|
||||||
self.set_song_cclino(sCcli)
|
self.set_ccli_number(sCcli)
|
||||||
self.set_lyrics(lyrics)
|
self.set_lyrics(lyrics)
|
||||||
|
|
||||||
def from_ccli_text_file(self, textFileName):
|
def from_ccli_text_file(self, textFileName):
|
||||||
@ -475,21 +271,21 @@ class Song(object):
|
|||||||
"""Set the copyright string"""
|
"""Set the copyright string"""
|
||||||
self.copyright = copyright
|
self.copyright = copyright
|
||||||
|
|
||||||
def get_song_cclino(self):
|
def get_ccli_number(self):
|
||||||
"""Return the songCclino"""
|
"""Return the songCclino"""
|
||||||
return self._assure_string(self.song_cclino)
|
return self._assure_string(self.ccli_number)
|
||||||
|
|
||||||
def set_song_cclino(self, song_cclino):
|
def set_ccli_number(self, ccli_number):
|
||||||
"""Set the song_cclino"""
|
"""Set the ccli_number"""
|
||||||
self.song_cclino = song_cclino
|
self.ccli_number = ccli_number
|
||||||
|
|
||||||
def get_theme(self):
|
def get_theme_name(self):
|
||||||
"""Return the theme name for the song"""
|
"""Return the theme name for the song"""
|
||||||
return self._assure_string(self.theme)
|
return self._assure_string(self.theme_name)
|
||||||
|
|
||||||
def set_theme(self, theme):
|
def set_theme_name(self, theme_name):
|
||||||
"""Set the theme name (string)"""
|
"""Set the theme name (string)"""
|
||||||
self.theme = theme
|
self.theme_name = theme_name
|
||||||
|
|
||||||
def get_song_book(self):
|
def get_song_book(self):
|
||||||
"""Return the song_book (string)"""
|
"""Return the song_book (string)"""
|
||||||
@ -528,9 +324,9 @@ class Song(object):
|
|||||||
|
|
||||||
asOneString
|
asOneString
|
||||||
True -- string:
|
True -- string:
|
||||||
"John Newton, A Parker"
|
'John Newton, A Parker'
|
||||||
False -- list of strings
|
False -- list of strings
|
||||||
["John Newton", u'A Parker"]
|
['John Newton', u'A Parker']
|
||||||
"""
|
"""
|
||||||
if asOneString:
|
if asOneString:
|
||||||
res = self._assure_string(self.author_list)
|
res = self._assure_string(self.author_list)
|
||||||
@ -553,9 +349,9 @@ class Song(object):
|
|||||||
|
|
||||||
asOneString
|
asOneString
|
||||||
True -- string:
|
True -- string:
|
||||||
"Hymn, Gospel"
|
'Hymn, Gospel'
|
||||||
False -- list of strings
|
False -- list of strings
|
||||||
["Hymn", u'Gospel"]
|
['Hymn', u'Gospel']
|
||||||
"""
|
"""
|
||||||
if asOneString:
|
if asOneString:
|
||||||
res = self._assure_string(self.category_array)
|
res = self._assure_string(self.category_array)
|
||||||
@ -597,13 +393,13 @@ class Song(object):
|
|||||||
"""Set the show_copyright flag (bool)"""
|
"""Set the show_copyright flag (bool)"""
|
||||||
self.show_copyright = show_copyright
|
self.show_copyright = show_copyright
|
||||||
|
|
||||||
def get_show_song_cclino(self):
|
def get_show_ccli_number(self):
|
||||||
"""Return the showSongCclino (string)"""
|
"""Return the showSongCclino (string)"""
|
||||||
return self.show_song_cclino
|
return self.show_ccli_number
|
||||||
|
|
||||||
def set_show_song_cclino(self, show_song_cclino):
|
def set_show_ccli_number(self, show_ccli_number):
|
||||||
"""Set the show_song_cclino flag (bool)"""
|
"""Set the show_ccli_number flag (bool)"""
|
||||||
self.show_song_cclino = show_song_cclino
|
self.show_ccli_number = show_ccli_number
|
||||||
|
|
||||||
def get_lyrics(self):
|
def get_lyrics(self):
|
||||||
"""Return the lyrics as a list of strings
|
"""Return the lyrics as a list of strings
|
||||||
@ -670,7 +466,7 @@ class Song(object):
|
|||||||
|
|
||||||
slideNumber -- 1 .. numberOfSlides
|
slideNumber -- 1 .. numberOfSlides
|
||||||
Returns a list as:
|
Returns a list as:
|
||||||
[theme (string),
|
[theme_name (string),
|
||||||
title (string),
|
title (string),
|
||||||
authorlist (string),
|
authorlist (string),
|
||||||
copyright (string),
|
copyright (string),
|
||||||
@ -695,13 +491,13 @@ class Song(object):
|
|||||||
cpright = self.get_copyright()
|
cpright = self.get_copyright()
|
||||||
else:
|
else:
|
||||||
cpright = ""
|
cpright = ""
|
||||||
if self.show_song_cclino:
|
if self.show_ccli_number:
|
||||||
ccli = self.get_song_cclino()
|
ccli = self.get_ccli_number()
|
||||||
else:
|
else:
|
||||||
ccli = ""
|
ccli = ""
|
||||||
theme = self.get_theme()
|
theme_name = self.get_theme_name()
|
||||||
# examine the slide for a theme
|
# examine the slide for a theme
|
||||||
res.append(theme)
|
res.append(theme_name)
|
||||||
res.append(title)
|
res.append(title)
|
||||||
res.append(author)
|
res.append(author)
|
||||||
res.append(cpright)
|
res.append(cpright)
|
||||||
|
54
openlp/plugins/songs/lib/test/test.opensong
Normal file
54
openlp/plugins/songs/lib/test/test.opensong
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<song>
|
||||||
|
<title>Martins Test</title>
|
||||||
|
<author>MartiÑ Thómpson</author>
|
||||||
|
<copyright>2010 Martin Thompson</copyright>
|
||||||
|
<hymn_number>1</hymn_number>
|
||||||
|
<presentation>V1 C V2 C2 V3 B1 V1</presentation>
|
||||||
|
<ccli>Blah</ccli>
|
||||||
|
<capo print="false"></capo>
|
||||||
|
<key></key>
|
||||||
|
<aka></aka>
|
||||||
|
<key_line></key_line>
|
||||||
|
<user1></user1>
|
||||||
|
<user2></user2>
|
||||||
|
<user3></user3>
|
||||||
|
<theme>TestTheme</theme>
|
||||||
|
<alttheme>TestAltTheme</alttheme>
|
||||||
|
<tempo></tempo>
|
||||||
|
<time_sig></time_sig>
|
||||||
|
<lyrics>;Comment
|
||||||
|
. A B C
|
||||||
|
1 v1 Line 1___
|
||||||
|
2 v2 Line 1___
|
||||||
|
. A B C7
|
||||||
|
1 V1 Line 2
|
||||||
|
2 V2 Line 2
|
||||||
|
|
||||||
|
[3]
|
||||||
|
V3 Line 1
|
||||||
|
V3 Line 2
|
||||||
|
|
||||||
|
[b1]
|
||||||
|
Bridge 1
|
||||||
|
---
|
||||||
|
-!!
|
||||||
|
Bridge 1 line 2
|
||||||
|
|
||||||
|
[C]
|
||||||
|
. A B
|
||||||
|
Chorus 1
|
||||||
|
|
||||||
|
[C2]
|
||||||
|
. A B
|
||||||
|
Chorus 2
|
||||||
|
</lyrics>
|
||||||
|
<style index="default_style">
|
||||||
|
<title enabled="true" valign="bottom" align="center" include_verse="false" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="26" bold="true" italic="true" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#000000"/>
|
||||||
|
<subtitle enabled="true" valign="bottom" align="center" descriptive="false" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="18" bold="true" italic="true" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#000000"/>
|
||||||
|
<song_subtitle>author</song_subtitle>
|
||||||
|
<body enabled="true" auto_scale="false" valign="middle" align="center" highlight_chorus="true" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="34" bold="true" italic="false" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#FF0000">
|
||||||
|
<tabs/>
|
||||||
|
</body>
|
||||||
|
<background strip_footer="0" color="#408080" position="1"/>
|
||||||
|
</style></song>
|
BIN
openlp/plugins/songs/lib/test/test.opensong.zip
Normal file
BIN
openlp/plugins/songs/lib/test/test.opensong.zip
Normal file
Binary file not shown.
45
openlp/plugins/songs/lib/test/test2.opensong
Normal file
45
openlp/plugins/songs/lib/test/test2.opensong
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<song>
|
||||||
|
<title>Martins 2nd Test</title>
|
||||||
|
<author>Martin Thompson</author>
|
||||||
|
<copyright>2010 Martin Thompson</copyright>
|
||||||
|
<hymn_number>2</hymn_number>
|
||||||
|
<presentation></presentation>
|
||||||
|
<ccli>Blah</ccli>
|
||||||
|
<capo print="false"></capo>
|
||||||
|
<key></key>
|
||||||
|
<aka></aka>
|
||||||
|
<key_line></key_line>
|
||||||
|
<user1></user1>
|
||||||
|
<user2></user2>
|
||||||
|
<user3></user3>
|
||||||
|
<theme></theme>
|
||||||
|
<tempo></tempo>
|
||||||
|
<time_sig></time_sig>
|
||||||
|
<lyrics>;Comment
|
||||||
|
[V]
|
||||||
|
. A B C
|
||||||
|
1 v1 Line 1___
|
||||||
|
2 v2 Line 1___
|
||||||
|
. A B C7
|
||||||
|
1 V1 Line 2
|
||||||
|
2 V2 Line 2
|
||||||
|
|
||||||
|
[b1]
|
||||||
|
Bridge 1
|
||||||
|
Bridge 1 line 2
|
||||||
|
[C1]
|
||||||
|
Chorus 1
|
||||||
|
|
||||||
|
[C2]
|
||||||
|
Chorus 2
|
||||||
|
</lyrics>
|
||||||
|
<style index="default_style">
|
||||||
|
<title enabled="true" valign="bottom" align="center" include_verse="false" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="26" bold="true" italic="true" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#000000"/>
|
||||||
|
<subtitle enabled="true" valign="bottom" align="center" descriptive="false" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="18" bold="true" italic="true" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#000000"/>
|
||||||
|
<song_subtitle>author</song_subtitle>
|
||||||
|
<body enabled="true" auto_scale="false" valign="middle" align="center" highlight_chorus="true" margin-left="0" margin-right="0" margin-top="0" margin-bottom="0" font="Helvetica" size="34" bold="true" italic="false" underline="false" color="#FFFFFF" border="true" border_color="#000000" shadow="true" shadow_color="#000000" fill="false" fill_color="#FF0000">
|
||||||
|
<tabs/>
|
||||||
|
</body>
|
||||||
|
<background strip_footer="0" color="#408080" position="1"/>
|
||||||
|
</style></song>
|
57
openlp/plugins/songs/lib/test/test_importing_lots.py
Normal file
57
openlp/plugins/songs/lib/test/test_importing_lots.py
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
from openlp.plugins.songs.lib.opensongimport import OpenSongImport
|
||||||
|
from openlp.plugins.songs.lib.db import init_schema
|
||||||
|
from openlp.core.lib.db import Manager
|
||||||
|
from glob import glob
|
||||||
|
from zipfile import ZipFile
|
||||||
|
import os
|
||||||
|
from traceback import print_exc
|
||||||
|
import sys
|
||||||
|
import codecs
|
||||||
|
|
||||||
|
def opensong_import_lots():
|
||||||
|
ziploc = u'/home/mjt/openlp/OpenSong_Data/'
|
||||||
|
files = []
|
||||||
|
#files = [u'test.opensong.zip', ziploc+u'ADond.zip']
|
||||||
|
files.extend(glob(ziploc+u'Songs.zip'))
|
||||||
|
#files.extend(glob(ziploc+u'SOF.zip'))
|
||||||
|
#files.extend(glob(ziploc+u'spanish_songs_for_opensong.zip'))
|
||||||
|
# files.extend(glob(ziploc+u'opensong_*.zip'))
|
||||||
|
errfile = codecs.open(u'import_lots_errors.txt', u'w', u'utf8')
|
||||||
|
manager = Manager(u'songs', init_schema)
|
||||||
|
for file in files:
|
||||||
|
print u'Importing', file
|
||||||
|
z = ZipFile(file, u'r')
|
||||||
|
for song in z.infolist():
|
||||||
|
# need to handle unicode filenames (CP437 - Winzip does this)
|
||||||
|
filename = song.filename#.decode('cp852')
|
||||||
|
parts = os.path.split(filename)
|
||||||
|
if parts[-1] == u'':
|
||||||
|
#No final part => directory
|
||||||
|
continue
|
||||||
|
print " ", file, ":",filename,
|
||||||
|
songfile = z.open(song)
|
||||||
|
#z.extract(song)
|
||||||
|
#songfile=open(filename, u'r')
|
||||||
|
o = OpenSongImport(manager)
|
||||||
|
try:
|
||||||
|
o.do_import_file(songfile)
|
||||||
|
# o.song_import.print_song()
|
||||||
|
except:
|
||||||
|
print "Failure",
|
||||||
|
|
||||||
|
errfile.write(u'Failure: %s:%s\n' %(file, filename.decode('cp437')))
|
||||||
|
songfile = z.open(song)
|
||||||
|
for l in songfile.readlines():
|
||||||
|
l = l.decode('utf8')
|
||||||
|
print(u' |%s\n' % l.strip())
|
||||||
|
errfile.write(u' |%s\n'%l.strip())
|
||||||
|
print_exc(3, file = errfile)
|
||||||
|
print_exc(3)
|
||||||
|
sys.exit(1)
|
||||||
|
# continue
|
||||||
|
#o.finish()
|
||||||
|
print "OK"
|
||||||
|
#os.unlink(filename)
|
||||||
|
# o.song_import.print_song()
|
||||||
|
if __name__ == "__main__":
|
||||||
|
opensong_import_lots()
|
89
openlp/plugins/songs/lib/test/test_opensongimport.py
Normal file
89
openlp/plugins/songs/lib/test/test_opensongimport.py
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# 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 #
|
||||||
|
###############################################################################
|
||||||
|
from openlp.plugins.songs.lib.opensongimport import OpenSongImport
|
||||||
|
from openlp.core.lib.db import Manager
|
||||||
|
from openlp.plugins.songs.lib.db import init_schema
|
||||||
|
from openlp.plugins.songs.songsplugin import SongsPlugin
|
||||||
|
import sys
|
||||||
|
|
||||||
|
def test():
|
||||||
|
manager = Manager(u'songs', init_schema)
|
||||||
|
o = OpenSongImport(manager)
|
||||||
|
o.do_import(u'test.opensong', commit=False)
|
||||||
|
o.song_import.print_song()
|
||||||
|
assert o.song_import.copyright == u'2010 Martin Thompson'
|
||||||
|
assert o.song_import.authors == [u'MartiÑ Thómpson']
|
||||||
|
assert o.song_import.title == u'Martins Test'
|
||||||
|
assert o.song_import.alternate_title == u''
|
||||||
|
assert o.song_import.song_number == u'1'
|
||||||
|
assert [u'C1', u'Chorus 1'] in o.song_import.verses
|
||||||
|
assert [u'C2', u'Chorus 2'] in o.song_import.verses
|
||||||
|
assert not [u'C3', u'Chorus 3'] in o.song_import.verses
|
||||||
|
assert [u'B1', u'Bridge 1\nBridge 1 line 2'] in o.song_import.verses
|
||||||
|
assert [u'V1', u'v1 Line 1\nV1 Line 2'] in o.song_import.verses
|
||||||
|
assert [u'V2', u'v2 Line 1\nV2 Line 2'] in o.song_import.verses
|
||||||
|
assert o.song_import.verse_order_list == [u'V1', u'C1', u'V2', u'C2', u'V3', u'B1', u'V1']
|
||||||
|
assert o.song_import.ccli_number == u'Blah'
|
||||||
|
assert o.song_import.topics == [u'TestTheme', u'TestAltTheme']
|
||||||
|
o.do_import(u'test.opensong.zip', commit=False)
|
||||||
|
o.song_import.print_song()
|
||||||
|
o.finish()
|
||||||
|
assert o.song_import.copyright == u'2010 Martin Thompson'
|
||||||
|
assert o.song_import.authors == [u'MartiÑ Thómpson']
|
||||||
|
assert o.song_import.title == u'Martins Test'
|
||||||
|
assert o.song_import.alternate_title == u''
|
||||||
|
assert o.song_import.song_number == u'1'
|
||||||
|
assert [u'B1', u'Bridge 1\nBridge 1 line 2'] in o.song_import.verses
|
||||||
|
assert [u'C1', u'Chorus 1'] in o.song_import.verses
|
||||||
|
assert [u'C2', u'Chorus 2'] in o.song_import.verses
|
||||||
|
assert not [u'C3', u'Chorus 3'] in o.song_import.verses
|
||||||
|
assert [u'V1', u'v1 Line 1\nV1 Line 2'] in o.song_import.verses
|
||||||
|
assert [u'V2', u'v2 Line 1\nV2 Line 2'] in o.song_import.verses
|
||||||
|
assert o.song_import.verse_order_list == [u'V1', u'C1', u'V2', u'C2', u'V3', u'B1', u'V1']
|
||||||
|
|
||||||
|
o = OpenSongImport(manager)
|
||||||
|
o.do_import(u'test2.opensong', commit=False)
|
||||||
|
# o.finish()
|
||||||
|
o.song_import.print_song()
|
||||||
|
assert o.song_import.copyright == u'2010 Martin Thompson'
|
||||||
|
assert o.song_import.authors == [u'Martin Thompson']
|
||||||
|
assert o.song_import.title == u'Martins 2nd Test'
|
||||||
|
assert o.song_import.alternate_title == u''
|
||||||
|
assert o.song_import.song_number == u'2'
|
||||||
|
print o.song_import.verses
|
||||||
|
assert [u'B1', u'Bridge 1\nBridge 1 line 2'] in o.song_import.verses
|
||||||
|
assert [u'C1', u'Chorus 1'] in o.song_import.verses
|
||||||
|
assert [u'C2', u'Chorus 2'] in o.song_import.verses
|
||||||
|
assert not [u'C3', u'Chorus 3'] in o.song_import.verses
|
||||||
|
assert [u'V1', u'v1 Line 1\nV1 Line 2'] in o.song_import.verses
|
||||||
|
assert [u'V2', u'v2 Line 1\nV2 Line 2'] in o.song_import.verses
|
||||||
|
print o.song_import.verse_order_list
|
||||||
|
assert o.song_import.verse_order_list == [u'V1', u'V2', u'B1', u'C1', u'C2']
|
||||||
|
|
||||||
|
print "Tests passed"
|
||||||
|
pass
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
test()
|
@ -76,8 +76,9 @@ class SongXMLBuilder(object):
|
|||||||
``content``
|
``content``
|
||||||
The actual text of the verse to be stored.
|
The actual text of the verse to be stored.
|
||||||
"""
|
"""
|
||||||
#log.debug(u'add_verse_to_lyrics %s, %s\n%s' % (type, number, content))
|
# log.debug(u'add_verse_to_lyrics %s, %s\n%s' % (type, number, content))
|
||||||
verse = etree.Element(u'verse', type=type, label=number)
|
verse = etree.Element(u'verse', type = unicode(type),
|
||||||
|
label = unicode(number))
|
||||||
verse.text = etree.CDATA(content)
|
verse.text = etree.CDATA(content)
|
||||||
self.lyrics.append(verse)
|
self.lyrics.append(verse)
|
||||||
|
|
||||||
|
@ -39,6 +39,8 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
OOo_available = False
|
OOo_available = False
|
||||||
|
|
||||||
|
from openlp.plugins.songs.lib import OpenSongImport
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
class SongsPlugin(Plugin):
|
class SongsPlugin(Plugin):
|
||||||
@ -137,6 +139,25 @@ class SongsPlugin(Plugin):
|
|||||||
QtCore.SIGNAL(u'triggered()'), self.onImportSofItemClick)
|
QtCore.SIGNAL(u'triggered()'), self.onImportSofItemClick)
|
||||||
QtCore.QObject.connect(self.ImportOooItem,
|
QtCore.QObject.connect(self.ImportOooItem,
|
||||||
QtCore.SIGNAL(u'triggered()'), self.onImportOooItemClick)
|
QtCore.SIGNAL(u'triggered()'), self.onImportOooItemClick)
|
||||||
|
# OpenSong import menu item - will be removed and the
|
||||||
|
# functionality will be contained within the import wizard
|
||||||
|
self.ImportOpenSongItem = QtGui.QAction(import_menu)
|
||||||
|
self.ImportOpenSongItem.setObjectName(u'ImportOpenSongItem')
|
||||||
|
self.ImportOpenSongItem.setText(
|
||||||
|
translate('SongsPlugin',
|
||||||
|
'OpenSong (temp menu item)'))
|
||||||
|
self.ImportOpenSongItem.setToolTip(
|
||||||
|
translate('SongsPlugin',
|
||||||
|
'Import songs from OpenSong files' +
|
||||||
|
'(either raw text or ZIPfiles)'))
|
||||||
|
self.ImportOpenSongItem.setStatusTip(
|
||||||
|
translate('SongsPlugin',
|
||||||
|
'Import songs from OpenSong files' +
|
||||||
|
'(either raw text or ZIPfiles)'))
|
||||||
|
import_menu.addAction(self.ImportOpenSongItem)
|
||||||
|
QtCore.QObject.connect(self.ImportOpenSongItem,
|
||||||
|
QtCore.SIGNAL(u'triggered()'), self.onImportOpenSongItemClick)
|
||||||
|
|
||||||
|
|
||||||
def addExportMenuItem(self, export_menu):
|
def addExportMenuItem(self, export_menu):
|
||||||
"""
|
"""
|
||||||
@ -177,6 +198,26 @@ class SongsPlugin(Plugin):
|
|||||||
QtGui.QMessageBox.Ok)
|
QtGui.QMessageBox.Ok)
|
||||||
Receiver.send_message(u'songs_load_list')
|
Receiver.send_message(u'songs_load_list')
|
||||||
|
|
||||||
|
def onImportOpenSongItemClick(self):
|
||||||
|
filenames = QtGui.QFileDialog.getOpenFileNames(
|
||||||
|
None, translate('SongsPlugin',
|
||||||
|
'Open OpenSong file'),
|
||||||
|
u'', u'All files (*.*)')
|
||||||
|
try:
|
||||||
|
for filename in filenames:
|
||||||
|
importer = OpenSongImport(self.manager)
|
||||||
|
importer.do_import(unicode(filename))
|
||||||
|
except:
|
||||||
|
log.exception('Could not import OpenSong file')
|
||||||
|
QtGui.QMessageBox.critical(None,
|
||||||
|
translate('SongsPlugin',
|
||||||
|
'Import Error'),
|
||||||
|
translate('SongsPlugin',
|
||||||
|
'Error importing OpenSong file'),
|
||||||
|
QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok),
|
||||||
|
QtGui.QMessageBox.Ok)
|
||||||
|
Receiver.send_message(u'songs_load_list')
|
||||||
|
|
||||||
def onImportOooItemClick(self):
|
def onImportOooItemClick(self):
|
||||||
filenames = QtGui.QFileDialog.getOpenFileNames(
|
filenames = QtGui.QFileDialog.getOpenFileNames(
|
||||||
None, translate('SongsPlugin',
|
None, translate('SongsPlugin',
|
||||||
|
Loading…
Reference in New Issue
Block a user