alexandria-book-collection-manager 0.7.1 → 0.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/dependabot.yml +9 -0
- data/.gitignore +5 -2
- data/.hound.yml +2 -0
- data/.rubocop.yml +113 -45
- data/.rubocop_todo.yml +82 -170
- data/.simplecov +5 -1
- data/.travis.yml +45 -0
- data/.yardopts +1 -1
- data/CHANGELOG.md +60 -0
- data/ChangeLog.0 +33 -35
- data/Gemfile +6 -5
- data/INSTALL.md +164 -0
- data/README.md +52 -42
- data/Rakefile +95 -109
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +52 -45
- data/bin/alexandria +31 -53
- data/doc/AUTHORS +61 -0
- data/doc/BUGS +31 -0
- data/doc/FAQ +365 -0
- data/doc/HACKING +19 -0
- data/doc/NEWS +341 -0
- data/doc/alexandria.1 +120 -0
- data/doc/cuecat_support.rdoc +67 -0
- data/doc/dependency_decisions.yml +80 -0
- data/lib/alexandria.rb +29 -37
- data/lib/alexandria/about.rb +52 -51
- data/lib/alexandria/book_providers.rb +94 -101
- data/lib/alexandria/book_providers/adlibris.rb +45 -85
- data/lib/alexandria/book_providers/amazon_aws.rb +105 -113
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +293 -324
- data/lib/alexandria/book_providers/barnes_and_noble.rb +54 -53
- data/lib/alexandria/book_providers/douban.rb +29 -51
- data/lib/alexandria/book_providers/proxis.rb +42 -59
- data/lib/alexandria/book_providers/pseudomarc.rb +79 -99
- data/lib/alexandria/book_providers/siciliano.rb +68 -70
- data/lib/alexandria/book_providers/thalia.rb +46 -45
- data/lib/alexandria/book_providers/web.rb +17 -33
- data/lib/alexandria/book_providers/worldcat.rb +74 -102
- data/lib/alexandria/book_providers/z3950.rb +170 -174
- data/lib/alexandria/config.rb +5 -3
- data/lib/alexandria/console.rb +10 -21
- data/lib/alexandria/default_preferences.rb +37 -0
- data/lib/alexandria/execution_queue.rb +17 -15
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +188 -302
- data/lib/alexandria/import_library.rb +114 -155
- data/lib/alexandria/import_library_csv.rb +46 -96
- data/lib/alexandria/library_collection.rb +79 -0
- data/lib/alexandria/library_sort_order.rb +45 -0
- data/lib/alexandria/library_store.rb +233 -0
- data/lib/alexandria/logging.rb +15 -19
- data/lib/alexandria/models/book.rb +15 -20
- data/lib/alexandria/models/library.rb +81 -363
- data/lib/alexandria/net.rb +7 -6
- data/lib/alexandria/preferences.rb +73 -91
- data/lib/alexandria/scanners.rb +4 -2
- data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +24 -20
- data/lib/alexandria/scanners/keyboard.rb +10 -8
- data/lib/alexandria/smart_library.rb +135 -171
- data/lib/alexandria/ui.rb +17 -15
- data/lib/alexandria/ui/about_dialog.rb +49 -0
- data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +129 -152
- data/lib/alexandria/ui/alert_dialog.rb +64 -0
- data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
- data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +18 -15
- data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +44 -61
- data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +84 -89
- data/lib/alexandria/ui/builder_base.rb +9 -27
- data/lib/alexandria/ui/callbacks.rb +188 -186
- data/lib/alexandria/ui/columns.rb +2 -0
- data/lib/alexandria/ui/completion_models.rb +12 -23
- data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
- data/lib/alexandria/ui/dndable.rb +10 -8
- data/lib/alexandria/ui/error_dialog.rb +25 -0
- data/lib/alexandria/ui/export_dialog.rb +139 -0
- data/lib/alexandria/ui/icons.rb +49 -65
- data/lib/alexandria/ui/iconview.rb +15 -13
- data/lib/alexandria/ui/iconview_tooltips.rb +43 -58
- data/lib/alexandria/ui/import_dialog.rb +157 -0
- data/lib/alexandria/ui/init.rb +23 -33
- data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
- data/lib/alexandria/ui/libraries_combo.rb +18 -14
- data/lib/alexandria/ui/listview.rb +77 -88
- data/lib/alexandria/ui/main_app.rb +26 -26
- data/lib/alexandria/ui/misc_dialogs.rb +10 -0
- data/lib/alexandria/ui/multi_drag_treeview.rb +30 -41
- data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +168 -215
- data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
- data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
- data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
- data/lib/alexandria/ui/preferences_dialog.rb +313 -0
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
- data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
- data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
- data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +62 -72
- data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
- data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
- data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +96 -172
- data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
- data/lib/alexandria/ui/sound.rb +13 -13
- data/lib/alexandria/ui/ui_manager.rb +262 -283
- data/lib/alexandria/undo_manager.rb +3 -0
- data/lib/alexandria/version.rb +6 -19
- data/lib/alexandria/web_themes.rb +24 -21
- data/po/Makefile +2 -2
- data/po/cs.po +993 -880
- data/po/cy.po +957 -874
- data/po/de.po +990 -869
- data/po/el.po +989 -869
- data/po/es.po +985 -865
- data/po/fr.po +986 -870
- data/po/ga.po +907 -823
- data/po/gl.po +981 -865
- data/po/it.po +986 -868
- data/po/ja.po +969 -853
- data/po/mk.po +983 -863
- data/po/nb.po +979 -863
- data/po/nl.po +983 -864
- data/po/pl.po +1020 -969
- data/po/pt.po +988 -861
- data/po/pt_BR.po +984 -868
- data/po/ru.po +992 -873
- data/po/sk.po +987 -869
- data/po/sv.po +977 -861
- data/po/uk.po +975 -865
- data/po/zh_TW.po +976 -860
- data/schemas/alexandria.schemas +25 -3
- data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
- data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
- data/share/alexandria/glade/main_app__builder.glade +24 -33
- data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
- data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
- data/share/gnome/help/alexandria/C/introduction.xml +0 -8
- data/share/gnome/help/alexandria/C/searching.xml +1 -1
- data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
- data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
- data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
- data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
- data/spec/alexandria/book_providers_spec.rb +77 -210
- data/spec/alexandria/book_spec.rb +16 -12
- data/spec/alexandria/console_spec.rb +27 -0
- data/spec/alexandria/export_library_spec.rb +130 -0
- data/spec/alexandria/library_spec.rb +130 -172
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/preferences_spec.rb +46 -17
- data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
- data/spec/alexandria/smart_library_spec.rb +32 -25
- data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
- data/spec/alexandria/ui/icons_spec.rb +26 -0
- data/spec/alexandria/ui/iconview_spec.rb +9 -21
- data/spec/alexandria/ui/import_dialog_spec.rb +41 -0
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/main_app_spec.rb +8 -33
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
- data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
- data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +32 -0
- data/spec/alexandria/ui/sound_spec.rb +4 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +45 -20
- data/spec/end_to_end/basic_run_spec.rb +57 -0
- data/spec/spec_helper.rb +66 -33
- data/tasks/setup.rb +5 -3
- data/tasks/spec.rake +18 -3
- data/util/rake/fileinstall.rb +38 -40
- data/util/rake/gettextgenerate.rb +15 -70
- data/util/rake/omfgenerate.rb +10 -10
- metadata +176 -60
- data/INSTALL.rdoc +0 -148
- data/dogtail/basic_run_test.py +0 -9
- data/lib/alexandria/book_providers/bol_it.rb +0 -160
- data/lib/alexandria/book_providers/deastore.rb +0 -273
- data/lib/alexandria/book_providers/ibs_it.rb +0 -147
- data/lib/alexandria/book_providers/mcu.rb +0 -169
- data/lib/alexandria/book_providers/renaud.rb +0 -140
- data/lib/alexandria/book_providers/webster_it.rb +0 -167
- data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -59
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -70
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -43
- data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
- data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -85
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -578
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -57
- data/spec/alexandria/scanners/cuecat_spec.rb +0 -65
- data/spec/alexandria/ui/dialogs_spec.rb +0 -94
- data/spec/alexandria/ui/sidepane_spec.rb +0 -27
- data/spec/alexandria/ui/ui_utilities_spec.rb +0 -60
- data/spec/alexandria/utilities_spec.rb +0 -50
- data/tasks/dogtail.rake +0 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Copyright (C) 2004-2006 Laurent Sansonetti
|
2
4
|
# Copyright (C) 2008 Joseph Method
|
3
5
|
# Copyright (C) 2016 Matijs van Zuijlen
|
@@ -17,8 +19,8 @@
|
|
17
19
|
# write to the Free Software Foundation, Inc., 51 Franklin Street,
|
18
20
|
# Fifth Floor, Boston, MA 02110-1301 USA.
|
19
21
|
|
20
|
-
require
|
21
|
-
require
|
22
|
+
require "alexandria/ui/columns"
|
23
|
+
require "alexandria/ui/iconview_tooltips"
|
22
24
|
|
23
25
|
module Alexandria
|
24
26
|
module UI
|
@@ -49,31 +51,31 @@ module Alexandria
|
|
49
51
|
@iconview.column_spacing = 16
|
50
52
|
@iconview.item_width = ICON_WIDTH + 16
|
51
53
|
|
52
|
-
@iconview.signal_connect(
|
53
|
-
log.debug {
|
54
|
+
@iconview.signal_connect("selection-changed") do
|
55
|
+
log.debug { "selection-changed" }
|
54
56
|
@parent.on_books_selection_changed
|
55
57
|
end
|
56
58
|
|
57
|
-
@iconview.signal_connect(
|
58
|
-
log.debug {
|
59
|
-
@actiongroup[
|
59
|
+
@iconview.signal_connect("item-activated") do
|
60
|
+
log.debug { "item-activated" }
|
61
|
+
@actiongroup["Properties"].activate
|
60
62
|
false
|
61
63
|
end
|
62
64
|
|
63
65
|
# DND support for Gtk::IconView is shipped since GTK+ 2.8.0.
|
64
|
-
if @iconview.respond_to?(:enable_model_drag_source)
|
65
|
-
setup_view_source_dnd(@iconview)
|
66
|
-
end
|
66
|
+
setup_view_source_dnd(@iconview) if @iconview.respond_to?(:enable_model_drag_source)
|
67
67
|
end
|
68
68
|
|
69
69
|
ICONS_SORTS = [
|
70
70
|
Columns::TITLE, Columns::AUTHORS, Columns::ISBN,
|
71
|
-
Columns::PUBLISHER, Columns::EDITION, Columns::RATING,
|
71
|
+
Columns::PUBLISHER, Columns::EDITION, Columns::RATING,
|
72
|
+
Columns::REDD, Columns::OWN, Columns::WANT
|
72
73
|
].freeze
|
74
|
+
|
73
75
|
def setup_books_iconview_sorting
|
74
76
|
mode = ICONS_SORTS[@prefs.arrange_icons_mode]
|
75
|
-
@
|
76
|
-
|
77
|
+
sort = @prefs.reverse_icons ? Gtk::SORT_DESCENDING : Gtk::SORT_ASCENDING
|
78
|
+
@iconview_model.set_sort_column_id(mode, sort)
|
77
79
|
@filtered_model.refilter # force redraw
|
78
80
|
end
|
79
81
|
end
|
@@ -1,23 +1,8 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
#
|
4
|
-
# Copyright (C) 2008,2009 Cathal Mc Ginley
|
5
|
-
# Copyright (C) 2011, 2014, 2016 Matijs van Zuijlen
|
6
|
-
#
|
7
|
-
# Alexandria is free software; you can redistribute it and/or
|
8
|
-
# modify it under the terms of the GNU General Public License as
|
9
|
-
# published by the Free Software Foundation; either version 2 of the
|
10
|
-
# License, or (at your option) any later version.
|
11
|
-
#
|
12
|
-
# Alexandria is distributed in the hope that it will be useful,
|
13
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
-
# General Public License for more details.
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file is part of Alexandria.
|
16
4
|
#
|
17
|
-
#
|
18
|
-
# License along with Alexandria; see the file COPYING. If not,
|
19
|
-
# write to the Free Software Foundation, Inc., 51 Franklin Street,
|
20
|
-
# Fifth Floor, Boston, MA 02110-1301 USA.
|
5
|
+
# See the file README.md for authorship and licensing information.
|
21
6
|
|
22
7
|
# Please retain the following note:
|
23
8
|
#
|
@@ -27,53 +12,53 @@
|
|
27
12
|
#
|
28
13
|
# Ported to ruby-gtk2 (and modified for IconView) by Cathal Mc Ginley
|
29
14
|
|
30
|
-
require
|
15
|
+
require "cgi"
|
31
16
|
|
32
|
-
|
33
|
-
|
17
|
+
module Alexandria
|
18
|
+
module UI
|
19
|
+
class IconViewTooltips
|
20
|
+
include Logging
|
34
21
|
|
35
|
-
|
36
|
-
|
37
|
-
|
22
|
+
def initialize(view)
|
23
|
+
set_view(view)
|
24
|
+
end
|
38
25
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
26
|
+
def set_view(view)
|
27
|
+
view.has_tooltip = true
|
28
|
+
view.signal_connect("query-tooltip") do |_widget, x, y, _keyboard_mode, tooltip|
|
29
|
+
tree_path = view.get_path_at_pos(x, y)
|
30
|
+
if tree_path
|
31
|
+
iter = view.model.get_iter(tree_path)
|
45
32
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
33
|
+
title = iter[2] # HACK: hardcoded, should use column names...
|
34
|
+
authors = iter[4]
|
35
|
+
publisher = iter[6]
|
36
|
+
year = iter[7]
|
37
|
+
tooltip.set_markup label_for_book(title, authors, publisher, year)
|
38
|
+
end
|
39
|
+
end
|
51
40
|
end
|
52
|
-
end
|
53
|
-
end
|
54
41
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
end
|
65
|
-
html += "\n" if !title.empty? || !authors.empty?
|
42
|
+
def label_for_book(title, authors, publisher, year)
|
43
|
+
# This is much too complex... but it works for now!
|
44
|
+
html = ""
|
45
|
+
unless title.empty?
|
46
|
+
html += "<b>#{CGI.escapeHTML(title)}</b>"
|
47
|
+
html += "\n" unless authors.empty?
|
48
|
+
end
|
49
|
+
html += "<i>#{CGI.escapeHTML(authors)}</i>" unless authors.empty?
|
50
|
+
html += "\n" if !title.empty? || !authors.empty?
|
66
51
|
|
67
|
-
|
68
|
-
|
69
|
-
html += CGI.escapeHTML(publisher).to_s
|
70
|
-
end
|
52
|
+
html += "<small>"
|
53
|
+
html += CGI.escapeHTML(publisher).to_s if publisher && !publisher.empty?
|
71
54
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
55
|
+
if year && !year.empty?
|
56
|
+
html += " " if publisher && !publisher.empty?
|
57
|
+
html += "(#{year})"
|
58
|
+
end
|
76
59
|
|
77
|
-
|
60
|
+
html + "</small>"
|
61
|
+
end
|
62
|
+
end
|
78
63
|
end
|
79
64
|
end
|
@@ -0,0 +1,157 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file is part of Alexandria.
|
4
|
+
#
|
5
|
+
# See the file README.md for authorship and licensing information.
|
6
|
+
|
7
|
+
require "alexandria/ui/error_dialog"
|
8
|
+
require "alexandria/ui/skip_entry_dialog"
|
9
|
+
|
10
|
+
module Alexandria
|
11
|
+
module UI
|
12
|
+
class ImportDialog
|
13
|
+
include GetText
|
14
|
+
include Logging
|
15
|
+
|
16
|
+
GetText.bindtextdomain(Alexandria::TEXTDOMAIN, charset: "UTF-8")
|
17
|
+
|
18
|
+
FILTERS = Alexandria::ImportFilter.all
|
19
|
+
|
20
|
+
attr_reader :dialog
|
21
|
+
|
22
|
+
def initialize(parent)
|
23
|
+
title = _("Import a Library")
|
24
|
+
@dialog = Gtk::FileChooserDialog.new title: title, parent: parent, action: :open
|
25
|
+
log.debug { "ImportDialog opened" }
|
26
|
+
@destroyed = false
|
27
|
+
@running = false
|
28
|
+
dialog.add_button(Gtk::Stock::HELP, Gtk::ResponseType::HELP)
|
29
|
+
dialog.add_button(Gtk::Stock::CANCEL, Gtk::ResponseType::CANCEL)
|
30
|
+
import_button = dialog.add_button(_("_Import"),
|
31
|
+
Gtk::ResponseType::ACCEPT)
|
32
|
+
import_button.sensitive = false
|
33
|
+
|
34
|
+
dialog.signal_connect("destroy") do
|
35
|
+
if @running
|
36
|
+
@destroyed = true
|
37
|
+
else
|
38
|
+
dialog.destroy
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
@filters = {}
|
43
|
+
FILTERS.each do |filter|
|
44
|
+
filefilter = make_filefilter filter
|
45
|
+
dialog.add_filter(filefilter)
|
46
|
+
log.debug { "Added ImportFilter #{filefilter} -- #{filefilter.name}" }
|
47
|
+
@filters[filefilter] = filter
|
48
|
+
end
|
49
|
+
|
50
|
+
dialog.signal_connect("selection_changed") do
|
51
|
+
import_button.sensitive = filename && File.file?(filename)
|
52
|
+
end
|
53
|
+
|
54
|
+
# before adding the (hidden) progress bar, we must re-set the
|
55
|
+
# packing of the button box (currently packed at the end),
|
56
|
+
# because the progressbar will be *after* the button box.
|
57
|
+
buttonbox = dialog.child.children.last
|
58
|
+
dialog.child.set_child_packing(buttonbox, pack_type: :start)
|
59
|
+
dialog.child.reorder_child(buttonbox, 1)
|
60
|
+
|
61
|
+
@pbar = Gtk::ProgressBar.new
|
62
|
+
@pbar.show_text = true
|
63
|
+
dialog.child.pack_start(@pbar, expand: false)
|
64
|
+
end
|
65
|
+
|
66
|
+
def acquire
|
67
|
+
on_progress = proc do |fraction|
|
68
|
+
@pbar.show unless @pbar.visible?
|
69
|
+
@pbar.fraction = fraction
|
70
|
+
end
|
71
|
+
|
72
|
+
on_error = proc do |message|
|
73
|
+
SkipEntryDialog.new(self, message).continue?
|
74
|
+
end
|
75
|
+
|
76
|
+
exec_queue = ExecutionQueue.new
|
77
|
+
|
78
|
+
while !@destroyed &&
|
79
|
+
((response = dialog.run) != Gtk::ResponseType::CANCEL) &&
|
80
|
+
response != Gtk::ResponseType::DELETE_EVENT
|
81
|
+
|
82
|
+
if response == Gtk::ResponseType::HELP
|
83
|
+
Alexandria::UI.display_help(self, "import-library")
|
84
|
+
next
|
85
|
+
end
|
86
|
+
file = File.basename(dialog.filename, ".*")
|
87
|
+
base = GLib.locale_to_utf8(file)
|
88
|
+
new_library_name = Library.generate_new_name(
|
89
|
+
LibraryCollection.instance.all_libraries,
|
90
|
+
base)
|
91
|
+
|
92
|
+
filter = @filters[dialog.filter]
|
93
|
+
log.debug { "Going forward with filter: #{filter.name}" }
|
94
|
+
dialog.sensitive = false
|
95
|
+
|
96
|
+
filter.on_iterate do |n, total|
|
97
|
+
unless @destroyed
|
98
|
+
fraction = n * 1.0 / total
|
99
|
+
log.debug { "#{inspect} fraction: #{fraction}" }
|
100
|
+
exec_queue.call(on_progress, fraction)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
not_cancelled = true
|
105
|
+
filter.on_error do |message|
|
106
|
+
not_cancelled = exec_queue.sync_call(on_error, message)
|
107
|
+
log.debug { "#{inspect} cancel state: #{not_cancelled}" }
|
108
|
+
end
|
109
|
+
|
110
|
+
library = nil
|
111
|
+
@bad_isbns = nil
|
112
|
+
@failed_isbns = nil
|
113
|
+
thread = Thread.start do
|
114
|
+
library, @bad_isbns, @failed_isbns =
|
115
|
+
filter.invoke(new_library_name, dialog.filename)
|
116
|
+
rescue StandardError => ex
|
117
|
+
trace = ex.backtrace.join("\n> ")
|
118
|
+
log.error { "Import failed: #{ex.message} #{trace}" }
|
119
|
+
end
|
120
|
+
|
121
|
+
while thread.alive? && !@destroyed
|
122
|
+
@running = true
|
123
|
+
exec_queue.iterate
|
124
|
+
Gtk.main_iteration_do(false)
|
125
|
+
end
|
126
|
+
|
127
|
+
unless @destroyed
|
128
|
+
if library
|
129
|
+
yield(library, @bad_isbns, @failed_isbns)
|
130
|
+
break
|
131
|
+
elsif not_cancelled
|
132
|
+
log.debug { "Raising ErrorDialog because not_cancelled is #{not_cancelled}" }
|
133
|
+
ErrorDialog.new(dialog,
|
134
|
+
_("Couldn't import the library"),
|
135
|
+
_("The format of the file you " \
|
136
|
+
"provided is unknown. Please " \
|
137
|
+
"retry with another file.")).display
|
138
|
+
end
|
139
|
+
pbar.hide
|
140
|
+
self.sensitive = true
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
dialog.destroy unless @destroyed
|
145
|
+
end
|
146
|
+
|
147
|
+
private
|
148
|
+
|
149
|
+
def make_filefilter(import_filter)
|
150
|
+
filefilter = Gtk::FileFilter.new
|
151
|
+
filefilter.name = import_filter.name
|
152
|
+
import_filter.patterns.each { |x| filefilter.add_pattern(x) }
|
153
|
+
filefilter
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
data/lib/alexandria/ui/init.rb
CHANGED
@@ -1,36 +1,26 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Alexandria is free software; you can redistribute it and/or
|
6
|
-
# modify it under the terms of the GNU General Public License as
|
7
|
-
# published by the Free Software Foundation; either version 2 of the
|
8
|
-
# License, or (at your option) any later version.
|
9
|
-
#
|
10
|
-
# Alexandria is distributed in the hope that it will be useful,
|
11
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
-
# General Public License for more details.
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file is part of Alexandria.
|
14
4
|
#
|
15
|
-
#
|
16
|
-
|
17
|
-
|
18
|
-
# Fifth Floor, Boston, MA 02110-1301 USA.
|
5
|
+
# See the file README.md for authorship and licensing information.
|
6
|
+
|
7
|
+
require "alexandria/ui/error_dialog"
|
19
8
|
|
20
9
|
class CellRendererToggle < Gtk::CellRendererToggle
|
21
10
|
attr_accessor :text
|
11
|
+
|
22
12
|
type_register
|
23
13
|
install_property(GLib::Param::String.new(
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
14
|
+
"text",
|
15
|
+
"text",
|
16
|
+
"Some damn value",
|
17
|
+
"",
|
28
18
|
GLib::Param::READABLE | GLib::Param::WRITABLE))
|
29
19
|
end
|
30
20
|
|
31
21
|
class Gtk::ActionGroup
|
32
|
-
def [](
|
33
|
-
get_action(
|
22
|
+
def [](index)
|
23
|
+
get_action(index)
|
34
24
|
end
|
35
25
|
end
|
36
26
|
|
@@ -58,28 +48,28 @@ end
|
|
58
48
|
|
59
49
|
class Alexandria::Library
|
60
50
|
def action_name
|
61
|
-
|
51
|
+
"MoveIn" + name.gsub(/\s/, "")
|
62
52
|
end
|
63
53
|
end
|
64
54
|
|
65
55
|
class Alexandria::BookProviders::AbstractProvider
|
66
56
|
def action_name
|
67
|
-
|
57
|
+
"At" + name
|
68
58
|
end
|
69
59
|
end
|
70
60
|
|
71
61
|
module Alexandria
|
72
62
|
module UI
|
73
|
-
def self.display_help(parent
|
74
|
-
section_index =
|
63
|
+
def self.display_help(parent, section = nil)
|
64
|
+
section_index = ""
|
75
65
|
section_index = "##{section}" if section
|
76
66
|
exec("gnome-help ghelp:alexandria#{section_index}") if fork.nil?
|
77
|
-
rescue
|
78
|
-
log.error(self) {
|
79
|
-
ErrorDialog.new(parent, _(
|
80
|
-
_(
|
81
|
-
|
82
|
-
|
67
|
+
rescue StandardError
|
68
|
+
log.error(self) { "Unable to load help browser" }
|
69
|
+
ErrorDialog.new(parent, _("Unable to launch the help browser"),
|
70
|
+
_("Could not display help for Alexandria. " \
|
71
|
+
"There was an error launching the system " \
|
72
|
+
"help browser.")).display
|
83
73
|
end
|
84
74
|
end
|
85
75
|
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file is part of Alexandria.
|
4
|
+
#
|
5
|
+
# See the file README.md for authorship and licensing information.
|
6
|
+
|
7
|
+
require "alexandria/ui/alert_dialog"
|
8
|
+
|
9
|
+
module Alexandria
|
10
|
+
module UI
|
11
|
+
class KeepBadISBNDialog < AlertDialog
|
12
|
+
include GetText
|
13
|
+
GetText.bindtextdomain(Alexandria::TEXTDOMAIN, charset: "UTF-8")
|
14
|
+
|
15
|
+
def initialize(parent, book)
|
16
|
+
title = _("Invalid ISBN '%s'") % book.isbn
|
17
|
+
message =
|
18
|
+
_("The book titled '%s' has an invalid ISBN, but still " \
|
19
|
+
"exists in the providers libraries. Do you want to " \
|
20
|
+
"keep the book but change the ISBN or cancel the addition?") % book.title
|
21
|
+
super(parent, title,
|
22
|
+
Gtk::Stock::DIALOG_QUESTION,
|
23
|
+
[[Gtk::Stock::CANCEL, Gtk::ResponseType::CANCEL],
|
24
|
+
[_("_Keep"), Gtk::ResponseType::OK]], message)
|
25
|
+
dialog.default_response = Gtk::ResponseType::OK
|
26
|
+
end
|
27
|
+
|
28
|
+
def keep?
|
29
|
+
show_all
|
30
|
+
@response = run
|
31
|
+
destroy
|
32
|
+
@response == Gtk::ResponseType::OK
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|