forked from openlp/openlp
Add screen to New Bible
change logging file bzr-revno: 161
This commit is contained in:
parent
ae9a770899
commit
80cd189dd6
@ -26,7 +26,7 @@ import logging
|
||||
logging.basicConfig(level=logging.DEBUG,
|
||||
format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
|
||||
datefmt='%m-%d %H:%M',
|
||||
filename='plugins.log',
|
||||
filename='openlp.log',
|
||||
filemode='w')
|
||||
|
||||
from openlp.core.resources import *
|
||||
|
@ -31,7 +31,8 @@ class BiblePlugin(Plugin):
|
||||
Plugin.__init__(self, 'Bible', '1.9.0')
|
||||
self.Weight = -9
|
||||
#Register the bible Manager
|
||||
#self.biblemanager = BibleManager()
|
||||
self.biblemanager = BibleManager()
|
||||
|
||||
|
||||
def getMediaManagerItem(self):
|
||||
# Create the plugin icon
|
||||
@ -67,7 +68,9 @@ class BiblePlugin(Plugin):
|
||||
return self.MediaManagerItem
|
||||
|
||||
def onBibleNewClick(self):
|
||||
#self.bibleimportform = BibleImportForm(self.biblemanager)
|
||||
self.bibleimportform = BibleImportForm(self.biblemanager)
|
||||
self.bibleimportform.show()
|
||||
|
||||
pass
|
||||
|
||||
def onBiblePreviewClick(self):
|
||||
|
Loading…
Reference in New Issue
Block a user