Re: [Openlp-core] [Bug 1827792] Re: Bible Import Crashes OpenLP

2019-08-01 Thread simotsa
Thank you,

I tried deleting %appdata%/openlp, and it imports fine now, but it failed
to read/extract the verse when selected in advanced search.

This only happens with the Traditional Chinese, I tried all 4 bibles, they
all have the same problem.  Simplified Chinese have no issue.


On Thu, Aug 1, 2019 at 3:30 PM Phill <1827...@bugs.launchpad.net> wrote:

> Simotsa, have you resolved this issue? if not can you try deleting the
> bible database file.
>
> Open the data folder ( http://manual.openlp.org/faq.html#id4 ) open
> bibles and delete the selected bible and try again.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1827792
>
> Title:
>   Bible Import Crashes OpenLP
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/openlp/+bug/1827792/+subscriptions
>

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1827792

Title:
  Bible Import Crashes OpenLP

Status in OpenLP:
  New

Bug description:
  OpenLP crash with the following error when using Crosswalk -> Chinese
  Union Version

  
  Traceback (most recent call last):
File "openlp\core\ui\wizard.py", line 216, in on_current_id_changed
File "openlp\plugins\bibles\forms\bibleimportform.py", line 632, in 
perform_wizard
File "openlp\plugins\bibles\lib\http.py", line 641, in do_import
File "openlp\plugins\bibles\lib\db.py", line 312, in get_book_ref_id_by_name
File "openlp\plugins\bibles\lib\db.py", line 878, in get_book_reference_id
File "openlp\plugins\bibles\lib\db.py", line 858, in run_sql
File "openlp\plugins\bibles\lib\db.py", line 839, in get_cursor
  sqlite3.OperationalError: unable to open database file

  Operating System: Windows 10 (32-bit)
  OpenLP version 2.4.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1827792/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1701879] Re: Import from OpenLP xml sometimes skips "-" inside text (non english text)

2019-08-01 Thread Phill
** Changed in: openlp
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1701879

Title:
  Import from OpenLP xml sometimes skips "-" inside text (non english
  text)

Status in OpenLP:
  Incomplete

Bug description:
  OpenLP on windows (latest 2 versions) on import from OpenLP xml
  format, sometimes skips dashes (-) inside verses.

  Example:

  xml: ne-a
  Imported displays: nea

  We comfirmed that the xml file contains the dash.
  If edited in OpenLP and exported to xml it now shows: ne--a.

  We compared with Beyond Compare and looks like those are two different
  characters.

  One is skiped and one is parsed and imported.

  As this is UTF8 it looks like the importer only accepts one character
  code for dash.

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1701879/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1817433] Re: fonts separated with white-spaces are not supported

2019-08-01 Thread Phill
Hi Maarts,

Which version of OpenLP is this and which file?

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1817433

Title:
  fonts separated with white-spaces are not supported

Status in OpenLP:
  New

Bug description:
  Hi,

  fonts separated with white-spaces are not supported under Linux. The
  css font-family description says:

  "Note: If a font name contains white-space, it must be quoted. Single
  quotes must be used when using the "style" attribute in HTML."

  In build_footer_css and build_lyrics_format_css is these information
  missing...

  Here a short fix for both:

  ...
  lyrics = '%s word-wrap: break-word; ' \
   'text-align: %s; vertical-align: %s; font-family: %s; ' \
   'font-size: %spt; color: %s; line-height: %d%%; margin: 0;' \
   'padding: 0; padding-bottom: %s; padding-left: %spx; width: 
%spx; height: %spx; ' % \
  (justify, align, valign, "\"" + theme_data.font_main_name + "\"", 
theme_data.font_main_size,
   theme_data.font_main_color, 100 + 
int(theme_data.font_main_line_adjustment), padding_bottom,
  ...
  lyrics_html = style % (item.footer.x(), bottom, item.footer.width(),
 "\"" + theme.font_footer_name + "\"", 
theme.font_footer_size,
  ...

  I'm a python noob, sorry...

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1817433/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1796506] Re: Making listening network connections opt-in

2019-08-01 Thread Phill
** Changed in: openlp
   Importance: Undecided => Wishlist

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1796506

Title:
  Making listening network connections opt-in

Status in OpenLP:
  Confirmed

Bug description:
  On trunk OpenLP establishes listening network sockets for the
  projector component, the web remote control, and the websockets API. I
  cannot disable any of them. In version 2.4.6 there are no listening
  connections if you do not explicitly enable the remote control.

  The user should be able to disable the connections and they should be
  disabled by default (opt-in). If you do not want to disable by
  default, the default listening IP should at least not be the world
  (0.0.0.0) but localhost (127.0.0.1).

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1796506/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1823811] Re: The presentation xxxx.odp is incomplete, please reload

2019-08-01 Thread Phill
Hi Derek,
Our forums are our primary place for support. If you are still having this 
issue please submit a debug log.

Follow these instructions and try to recreate the issue.
http://manual.openlp.org/troubleshooting.html#linux-freebsd

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1823811

Title:
  The presentation .odp is incomplete, please reload

Status in OpenLP:
  New

Bug description:
  I am using Linux Mint 19. My version of openlp is 2.4.6 and I have a
  full installation of Libre Office 6.2

  I am unable to add either odp or ppt(x) presentations to the service
  order, getting the error

  The presentation .odp is incomplete, please reload

  I can add the presentation to the available presentations but any
  attempt to add it to the service results in the error.

  The presentations which I try all load perfectly in Libre Office.
  Ideas?

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1823811/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1827792] Re: Bible Import Crashes OpenLP

2019-08-01 Thread Phill
Simotsa, have you resolved this issue? if not can you try deleting the
bible database file.

Open the data folder ( http://manual.openlp.org/faq.html#id4 ) open
bibles and delete the selected bible and try again.

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1827792

Title:
  Bible Import Crashes OpenLP

Status in OpenLP:
  New

Bug description:
  OpenLP crash with the following error when using Crosswalk -> Chinese
  Union Version

  
  Traceback (most recent call last):
File "openlp\core\ui\wizard.py", line 216, in on_current_id_changed
File "openlp\plugins\bibles\forms\bibleimportform.py", line 632, in 
perform_wizard
File "openlp\plugins\bibles\lib\http.py", line 641, in do_import
File "openlp\plugins\bibles\lib\db.py", line 312, in get_book_ref_id_by_name
File "openlp\plugins\bibles\lib\db.py", line 878, in get_book_reference_id
File "openlp\plugins\bibles\lib\db.py", line 858, in run_sql
File "openlp\plugins\bibles\lib\db.py", line 839, in get_cursor
  sqlite3.OperationalError: unable to open database file

  Operating System: Windows 10 (32-bit)
  OpenLP version 2.4.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1827792/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1832129] Re: Import from PowerPoint fails due to non xml characters

2019-08-01 Thread Phill
*** This bug is a duplicate of bug 1698021 ***
https://bugs.launchpad.net/bugs/1698021

99% Sure this is fixed in trunk...

** This bug has been marked a duplicate of bug 1698021
   Copying and Pasting from Word inserts invalid characters

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1832129

Title:
  Import from PowerPoint fails due to non xml characters

Status in OpenLP:
  New

Bug description:
  Windows 10
  OpenLP 2.4.6

  reported in the forum https://forums.openlp.org/discussion/4322/error-
  message-while-adding-songs#latest

  This is NOT a 100% failure.  Some presentations will import to songs without 
error and others fail.
  Please verify on OpenLP 3.0

  Bug reports in the forum

  From Forum:
  I've noticed that it 70% of the time gives an error when I try to copy and 
paste lyrics onto the software, forcing me to manually type in the lyrics 
(which to be honest can be such a hassle).

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1832129/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1838558] Re: Feature Request presentation thumbnail view

2019-08-01 Thread Phill
** Changed in: openlp
   Importance: Undecided => Wishlist

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1838558

Title:
  Feature Request presentation thumbnail view

Status in OpenLP:
  New

Bug description:
  A user in the forum requested a "slide sorter" view of presentations
  The idea appears to be similar to the slide sorter view in PowerPoint

  https://forums.openlp.org/discussion/4408/user-interface-
  presentations-thumbnails-arrangement#latest

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1838558/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp


[Openlp-core] [Bug 1674130] Re: QAction object does not support indexing

2019-08-01 Thread Phill
** Branch linked: lp:~raoul-snyman/openlp/webengine-migrate

** Changed in: openlp
   Status: New => Fix Committed

** Changed in: openlp
 Assignee: (unassigned) => Raoul Snyman (raoul-snyman)

** Changed in: openlp
Milestone: None => 2.9.1

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/1674130

Title:
  QAction object does not support indexing

Status in OpenLP:
  Fix Committed

Bug description:
  Reported via the support system:
  https://support.openlp.org/scp/tickets.php?id=4134

  Traceback (most recent call last):
File "openlp/core/ui/mainwindow.py", line 1107, in closeEvent
File "openlp/core/ui/mainwindow.py", line 1129, in clean_up
File "openlp/core/lib/pluginmanager.py", line 189, in finalise_plugins
File "/Volumes/OpenLP 
2.4.5/OpenLP.app/Contents/MacOS/plugins/songs/songsplugin.py", line 333, in 
finalise
  action_list.remove_action(self.song_import_item, UiStrings().Import)
File "openlp/core/utils/actions.py", line 300, in remove_action
File "openlp/core/utils/actions.py", line 117, in remove
  TypeError: 'QAction' object does not support indexing

  "I saved the service file (going to file - save as) and shut the
  programme down, but when I went to open it again it would not open and
  kept coming up with the bug error. I had to restart my computer to
  reopen the file and I've since been able to open it again with no
  problems."

  This was on macOS.

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/1674130/+subscriptions

___
Mailing list: https://launchpad.net/~openlp-core
Post to : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp