forked from openlp/openlp
initial changes
This commit is contained in:
parent
b3d453c9b8
commit
f0da7465e8
@ -27,15 +27,7 @@
|
|||||||
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
import sip
|
|
||||||
import sys
|
import sys
|
||||||
sip.setapi(u'QDate', 2)
|
|
||||||
sip.setapi(u'QDateTime', 2)
|
|
||||||
sip.setapi(u'QString', 2)
|
|
||||||
sip.setapi(u'QTextStream', 2)
|
|
||||||
sip.setapi(u'QTime', 2)
|
|
||||||
sip.setapi(u'QUrl', 2)
|
|
||||||
sip.setapi(u'QVariant', 2)
|
|
||||||
|
|
||||||
from openlp.core import main
|
from openlp.core import main
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
The :mod:`openlp` module contains all the project produced OpenLP functionality
|
The :mod:`openlp` module contains all the project produced OpenLP functionality
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import core
|
from . import core
|
||||||
import plugins
|
from . import plugins
|
||||||
|
|
||||||
__all__ = [u'core', u'plugins']
|
__all__ = [u'core', u'plugins']
|
||||||
|
@ -105,7 +105,8 @@ def upgrade_db(url, upgrade):
|
|||||||
if version > upgrade.__version__:
|
if version > upgrade.__version__:
|
||||||
return version, upgrade.__version__
|
return version, upgrade.__version__
|
||||||
version += 1
|
version += 1
|
||||||
if load_changes:
|
#FIXME: python3 - dislable upgrade
|
||||||
|
if load_changes and False:
|
||||||
while hasattr(upgrade, u'upgrade_%d' % version):
|
while hasattr(upgrade, u'upgrade_%d' % version):
|
||||||
log.debug(u'Running upgrade_%d', version)
|
log.debug(u'Running upgrade_%d', version)
|
||||||
try:
|
try:
|
||||||
|
@ -473,7 +473,7 @@ class ThemeXML(object):
|
|||||||
Pull out the XML string formatted for human consumption
|
Pull out the XML string formatted for human consumption
|
||||||
"""
|
"""
|
||||||
self._build_xml_from_attrs()
|
self._build_xml_from_attrs()
|
||||||
return self.theme_xml.toprettyxml(indent=u' ', newl=u'\n', encoding=u'utf-8')
|
return self.theme_xml.toprettyxml(indent=' ', newl='\n', encoding='utf-8')
|
||||||
|
|
||||||
def parse(self, xml):
|
def parse(self, xml):
|
||||||
"""
|
"""
|
||||||
|
@ -35,7 +35,7 @@ import os
|
|||||||
import platform
|
import platform
|
||||||
|
|
||||||
import sqlalchemy
|
import sqlalchemy
|
||||||
import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
from PyQt4 import Qt, QtCore, QtGui, QtWebKit
|
from PyQt4 import Qt, QtCore, QtGui, QtWebKit
|
||||||
|
|
||||||
|
@ -45,7 +45,9 @@ class FileRenameForm(QtGui.QDialog, Ui_FileRenameDialog):
|
|||||||
"""
|
"""
|
||||||
Constructor
|
Constructor
|
||||||
"""
|
"""
|
||||||
QtGui.QDialog.__init__(self, self.main_window)
|
super().__init__()
|
||||||
|
# TODO: python3 - parent correct?
|
||||||
|
#QtGui.QDialog.__init__(self, self.main_window)
|
||||||
self.setupUi(self)
|
self.setupUi(self)
|
||||||
|
|
||||||
def exec_(self, copy=False):
|
def exec_(self, copy=False):
|
||||||
|
@ -103,12 +103,6 @@ class CategoryActionList(object):
|
|||||||
self.index += 1
|
self.index += 1
|
||||||
return self.actions[self.index - 1][1]
|
return self.actions[self.index - 1][1]
|
||||||
|
|
||||||
def next(self):
|
|
||||||
"""
|
|
||||||
Python 2 "next" method.
|
|
||||||
"""
|
|
||||||
return self.__next__()
|
|
||||||
|
|
||||||
def has_key(self, key):
|
def has_key(self, key):
|
||||||
"""
|
"""
|
||||||
Implement the has_key() method to make this class a dictionary type
|
Implement the has_key() method to make this class a dictionary type
|
||||||
@ -196,12 +190,6 @@ class CategoryList(object):
|
|||||||
self.index += 1
|
self.index += 1
|
||||||
return self.categories[self.index - 1]
|
return self.categories[self.index - 1]
|
||||||
|
|
||||||
def next(self):
|
|
||||||
"""
|
|
||||||
Python 2 "next" method for iterator.
|
|
||||||
"""
|
|
||||||
return self.__next__()
|
|
||||||
|
|
||||||
def has_key(self, key):
|
def has_key(self, key):
|
||||||
"""
|
"""
|
||||||
Implement the has_key() method to make this class like a dictionary
|
Implement the has_key() method to make this class like a dictionary
|
||||||
|
@ -36,7 +36,7 @@ import socket
|
|||||||
import urllib
|
import urllib
|
||||||
from HTMLParser import HTMLParseError
|
from HTMLParser import HTMLParseError
|
||||||
|
|
||||||
from BeautifulSoup import BeautifulSoup, NavigableString, Tag
|
from BeautifulSoup from bs4 import BeautifulSoup, NavigableString, Tag
|
||||||
|
|
||||||
from openlp.core.lib import Registry, translate
|
from openlp.core.lib import Registry, translate
|
||||||
from openlp.core.lib.ui import critical_error_message_box
|
from openlp.core.lib.ui import critical_error_message_box
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
mv openlp/core/resources.py openlp/core/resources.py.old
|
mv openlp/core/resources.py openlp/core/resources.py.old
|
||||||
|
|
||||||
# Create the new data from the updated qrc
|
# Create the new data from the updated qrc
|
||||||
pyrcc4 -o openlp/core/resources.py.new resources/images/openlp-2.qrc
|
pyrcc4 -py3 -o openlp/core/resources.py.new resources/images/openlp-2.qrc
|
||||||
|
|
||||||
# Remove patch breaking lines
|
# Remove patch breaking lines
|
||||||
cat openlp/core/resources.py.new | sed '/# Created: /d;/# by: /d' \
|
cat openlp/core/resources.py.new | sed '/# Created: /d;/# by: /d' \
|
||||||
|
Loading…
Reference in New Issue
Block a user