alexandria-book-collection-manager 0.6.9.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rubocop.yml +68 -0
  4. data/.rubocop_todo.yml +200 -0
  5. data/CHANGELOG.md +23 -0
  6. data/COPYING +339 -0
  7. data/ChangeLog.0 +3598 -0
  8. data/Gemfile +9 -0
  9. data/INSTALL.rdoc +156 -0
  10. data/PACKAGING +36 -0
  11. data/README.md +88 -0
  12. data/RELEASE_CHECKLIST +18 -0
  13. data/Rakefile +264 -0
  14. data/TODO +24 -0
  15. data/alexandria-book-collection-manager.gemspec +35 -0
  16. data/alexandria.desktop.in +10 -0
  17. data/bin/alexandria +82 -0
  18. data/doc/AUTHORS +60 -0
  19. data/doc/BUGS +31 -0
  20. data/doc/FAQ +369 -0
  21. data/doc/HACKING +19 -0
  22. data/doc/NEWS +341 -0
  23. data/doc/alexandria.1 +120 -0
  24. data/doc/cuecat_support.rdoc +67 -0
  25. data/lib/alexandria.rb +85 -0
  26. data/lib/alexandria/about.rb +82 -0
  27. data/lib/alexandria/book_providers.rb +411 -0
  28. data/lib/alexandria/book_providers/adlibris.rb +235 -0
  29. data/lib/alexandria/book_providers/amazon_aws.rb +261 -0
  30. data/lib/alexandria/book_providers/amazon_ecs_util.rb +405 -0
  31. data/lib/alexandria/book_providers/barnes_and_noble.rb +229 -0
  32. data/lib/alexandria/book_providers/bol_it.rb +162 -0
  33. data/lib/alexandria/book_providers/deastore.rb +277 -0
  34. data/lib/alexandria/book_providers/douban.rb +135 -0
  35. data/lib/alexandria/book_providers/ibs_it.rb +149 -0
  36. data/lib/alexandria/book_providers/mcu.rb +177 -0
  37. data/lib/alexandria/book_providers/proxis.rb +205 -0
  38. data/lib/alexandria/book_providers/pseudomarc.rb +185 -0
  39. data/lib/alexandria/book_providers/renaud.rb +142 -0
  40. data/lib/alexandria/book_providers/siciliano.rb +271 -0
  41. data/lib/alexandria/book_providers/thalia.rb +197 -0
  42. data/lib/alexandria/book_providers/web.rb +59 -0
  43. data/lib/alexandria/book_providers/webster_it.rb +173 -0
  44. data/lib/alexandria/book_providers/worldcat.rb +251 -0
  45. data/lib/alexandria/book_providers/z3950.rb +422 -0
  46. data/lib/alexandria/config.rb +8 -0
  47. data/lib/alexandria/console.rb +31 -0
  48. data/lib/alexandria/execution_queue.rb +96 -0
  49. data/lib/alexandria/export_library.rb +536 -0
  50. data/lib/alexandria/import_library.rb +316 -0
  51. data/lib/alexandria/import_library_csv.rb +270 -0
  52. data/lib/alexandria/logging.rb +159 -0
  53. data/lib/alexandria/models/book.rb +72 -0
  54. data/lib/alexandria/models/library.rb +714 -0
  55. data/lib/alexandria/net.rb +53 -0
  56. data/lib/alexandria/preferences.rb +324 -0
  57. data/lib/alexandria/scanners.rb +42 -0
  58. data/lib/alexandria/scanners/cuecat.rb +118 -0
  59. data/lib/alexandria/scanners/keyboard.rb +57 -0
  60. data/lib/alexandria/smart_library.rb +525 -0
  61. data/lib/alexandria/ui.rb +53 -0
  62. data/lib/alexandria/ui/builder_base.rb +43 -0
  63. data/lib/alexandria/ui/callbacks.rb +389 -0
  64. data/lib/alexandria/ui/completion_models.rb +228 -0
  65. data/lib/alexandria/ui/dialogs/about_dialog.rb +59 -0
  66. data/lib/alexandria/ui/dialogs/acquire_dialog.rb +640 -0
  67. data/lib/alexandria/ui/dialogs/alert_dialog.rb +68 -0
  68. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +43 -0
  69. data/lib/alexandria/ui/dialogs/barcode_animation.rb +159 -0
  70. data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +210 -0
  71. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +432 -0
  72. data/lib/alexandria/ui/dialogs/export_dialog.rb +172 -0
  73. data/lib/alexandria/ui/dialogs/import_dialog.rb +205 -0
  74. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +85 -0
  75. data/lib/alexandria/ui/dialogs/new_book_dialog.rb +639 -0
  76. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +153 -0
  77. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +67 -0
  78. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +587 -0
  79. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +56 -0
  80. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +432 -0
  81. data/lib/alexandria/ui/dndable.rb +81 -0
  82. data/lib/alexandria/ui/gtk_thread_help.rb +88 -0
  83. data/lib/alexandria/ui/icons.rb +100 -0
  84. data/lib/alexandria/ui/iconview.rb +91 -0
  85. data/lib/alexandria/ui/iconview_tooltips.rb +162 -0
  86. data/lib/alexandria/ui/init.rb +93 -0
  87. data/lib/alexandria/ui/libraries_combo.rb +75 -0
  88. data/lib/alexandria/ui/listview.rb +310 -0
  89. data/lib/alexandria/ui/main_app.rb +67 -0
  90. data/lib/alexandria/ui/multi_drag_treeview.rb +150 -0
  91. data/lib/alexandria/ui/sidepane.rb +194 -0
  92. data/lib/alexandria/ui/sound.rb +107 -0
  93. data/lib/alexandria/ui/ui_manager.rb +1308 -0
  94. data/lib/alexandria/undo_manager.rb +78 -0
  95. data/lib/alexandria/utils.rb +30 -0
  96. data/lib/alexandria/version.rb +24 -0
  97. data/lib/alexandria/web_themes.rb +75 -0
  98. data/misc/sounds/README +15 -0
  99. data/misc/sounds/bad_scan.csd +62 -0
  100. data/misc/sounds/good_scan.csd +61 -0
  101. data/misc/sounds/scanning.csd +46 -0
  102. data/po/ChangeLog +488 -0
  103. data/po/Makefile +44 -0
  104. data/po/README +29 -0
  105. data/po/commit-po +72 -0
  106. data/po/cs.po +1437 -0
  107. data/po/cy.po +1521 -0
  108. data/po/de.po +1400 -0
  109. data/po/el.po +1379 -0
  110. data/po/es.po +1376 -0
  111. data/po/fr.po +1420 -0
  112. data/po/ga.po +1359 -0
  113. data/po/gl.po +1397 -0
  114. data/po/it.po +1406 -0
  115. data/po/ja.po +1355 -0
  116. data/po/mk.po +1373 -0
  117. data/po/nb.po +1386 -0
  118. data/po/nl.po +1405 -0
  119. data/po/pl.po +1373 -0
  120. data/po/pt.po +1398 -0
  121. data/po/pt_BR.po +1409 -0
  122. data/po/ru.po +1372 -0
  123. data/po/sk.po +1380 -0
  124. data/po/sv.po +1402 -0
  125. data/po/uk.po +1423 -0
  126. data/po/zh_TW.po +1394 -0
  127. data/schemas/alexandria.schemas +300 -0
  128. data/share/alexandria/glade/acquire_dialog__builder.glade +201 -0
  129. data/share/alexandria/glade/book_properties_dialog__builder.glade +910 -0
  130. data/share/alexandria/glade/main_app__builder.glade +229 -0
  131. data/share/alexandria/glade/new_book_dialog__builder.glade +379 -0
  132. data/share/alexandria/glade/preferences_dialog__builder.glade +733 -0
  133. data/share/alexandria/icons/alexandria.png +0 -0
  134. data/share/alexandria/icons/alexandria_small.png +0 -0
  135. data/share/alexandria/icons/book.png +0 -0
  136. data/share/alexandria/icons/book_icon.png +0 -0
  137. data/share/alexandria/icons/book_small.png +0 -0
  138. data/share/alexandria/icons/cuecat.png +0 -0
  139. data/share/alexandria/icons/cuecat_inactive.png +0 -0
  140. data/share/alexandria/icons/favorite_tag.png +0 -0
  141. data/share/alexandria/icons/less.png +0 -0
  142. data/share/alexandria/icons/library.png +0 -0
  143. data/share/alexandria/icons/library_small.png +0 -0
  144. data/share/alexandria/icons/lookup.png +0 -0
  145. data/share/alexandria/icons/more.png +0 -0
  146. data/share/alexandria/icons/no_cover.png +0 -0
  147. data/share/alexandria/icons/smart_library.png +0 -0
  148. data/share/alexandria/icons/smart_library_small.png +0 -0
  149. data/share/alexandria/icons/star_set.png +0 -0
  150. data/share/alexandria/icons/star_unset.png +0 -0
  151. data/share/alexandria/icons/view_as_icons.png +0 -0
  152. data/share/alexandria/icons/view_as_list.png +0 -0
  153. data/share/alexandria/ui/menus.xml +91 -0
  154. data/share/alexandria/ui/popups.xml +91 -0
  155. data/share/alexandria/web-themes/clean/clean.css +85 -0
  156. data/share/alexandria/web-themes/clean/preview.jpg +0 -0
  157. data/share/alexandria/web-themes/list/list.css +105 -0
  158. data/share/alexandria/web-themes/list/preview.jpg +0 -0
  159. data/share/app-icon/16x16/alexandria.png +0 -0
  160. data/share/app-icon/16x16/alexandria.svg +263 -0
  161. data/share/app-icon/22x22/alexandria.png +0 -0
  162. data/share/app-icon/22x22/alexandria.svg +465 -0
  163. data/share/app-icon/24x24/alexandria.png +0 -0
  164. data/share/app-icon/32x32/alexandria.png +0 -0
  165. data/share/app-icon/32x32/alexandria.svg +813 -0
  166. data/share/app-icon/32x32/alexandria.xpm +241 -0
  167. data/share/app-icon/48x48/alexandria.png +0 -0
  168. data/share/app-icon/scalable/alexandria.svg +700 -0
  169. data/share/gnome/help/alexandria/C/about.xml +44 -0
  170. data/share/gnome/help/alexandria/C/adding-books.xml +339 -0
  171. data/share/gnome/help/alexandria/C/alexandria.xml +185 -0
  172. data/share/gnome/help/alexandria/C/bugs.xml +18 -0
  173. data/share/gnome/help/alexandria/C/editing-book-properties.xml +124 -0
  174. data/share/gnome/help/alexandria/C/exporting.xml +81 -0
  175. data/share/gnome/help/alexandria/C/figures/adding_books_acquire_from_scanner_process.png +0 -0
  176. data/share/gnome/help/alexandria/C/figures/adding_books_add_by_isbn.png +0 -0
  177. data/share/gnome/help/alexandria/C/figures/adding_books_isbn_import.png +0 -0
  178. data/share/gnome/help/alexandria/C/figures/adding_books_manual_details.png +0 -0
  179. data/share/gnome/help/alexandria/C/figures/adding_books_rename_library_after_import.png +0 -0
  180. data/share/gnome/help/alexandria/C/figures/adding_books_search_results.png +0 -0
  181. data/share/gnome/help/alexandria/C/figures/editing_book_properties_info.png +0 -0
  182. data/share/gnome/help/alexandria/C/figures/editing_book_properties_loaning.png +0 -0
  183. data/share/gnome/help/alexandria/C/figures/exporting_information_html.png +0 -0
  184. data/share/gnome/help/alexandria/C/figures/getting_started_first_launched.png +0 -0
  185. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view.png +0 -0
  186. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view_search.png +0 -0
  187. data/share/gnome/help/alexandria/C/figures/settings_providers_new_z3950.png +0 -0
  188. data/share/gnome/help/alexandria/C/figures/smart_libraries_new_smart_library.png +0 -0
  189. data/share/gnome/help/alexandria/C/figures/working_with_libraries_library_pane.png +0 -0
  190. data/share/gnome/help/alexandria/C/getting-started.xml +154 -0
  191. data/share/gnome/help/alexandria/C/gnu-fdl-1.2.xml +543 -0
  192. data/share/gnome/help/alexandria/C/introduction.xml +142 -0
  193. data/share/gnome/help/alexandria/C/searching.xml +90 -0
  194. data/share/gnome/help/alexandria/C/settings.xml +140 -0
  195. data/share/gnome/help/alexandria/C/smart-libraries.xml +160 -0
  196. data/share/gnome/help/alexandria/C/working-with-libraries.xml +76 -0
  197. data/share/gnome/help/alexandria/ChangeLog +99 -0
  198. data/share/gnome/help/alexandria/fr/alexandria.xml +2292 -0
  199. data/share/gnome/help/alexandria/fr/figures/alexandria_add_button.png +0 -0
  200. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_isbn_1.png +0 -0
  201. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_search_1.png +0 -0
  202. data/share/gnome/help/alexandria/fr/figures/alexandria_add_manually.png +0 -0
  203. data/share/gnome/help/alexandria/fr/figures/alexandria_add_z3950.png +0 -0
  204. data/share/gnome/help/alexandria/fr/figures/alexandria_close_button.png +0 -0
  205. data/share/gnome/help/alexandria/fr/figures/alexandria_edit_info.png +0 -0
  206. data/share/gnome/help/alexandria/fr/figures/alexandria_export_web_page.png +0 -0
  207. data/share/gnome/help/alexandria/fr/figures/alexandria_importing.png +0 -0
  208. data/share/gnome/help/alexandria/fr/figures/alexandria_library_pane.png +0 -0
  209. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view.png +0 -0
  210. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view_search.png +0 -0
  211. data/share/gnome/help/alexandria/fr/figures/alexandria_loaning.png +0 -0
  212. data/share/gnome/help/alexandria/fr/figures/alexandria_main_window.png +0 -0
  213. data/share/gnome/help/alexandria/fr/figures/alexandria_remove_button.png +0 -0
  214. data/share/gnome/help/alexandria/ja/about.xml +33 -0
  215. data/share/gnome/help/alexandria/ja/adding-books.xml +314 -0
  216. data/share/gnome/help/alexandria/ja/alexandria.xml +172 -0
  217. data/share/gnome/help/alexandria/ja/bugs.xml +11 -0
  218. data/share/gnome/help/alexandria/ja/editing-book-properties.xml +100 -0
  219. data/share/gnome/help/alexandria/ja/exporting.xml +98 -0
  220. data/share/gnome/help/alexandria/ja/figures/adding_books_acquire_from_scanner_process.png +0 -0
  221. data/share/gnome/help/alexandria/ja/figures/adding_books_add_by_isbn.png +0 -0
  222. data/share/gnome/help/alexandria/ja/figures/adding_books_isbn_import.png +0 -0
  223. data/share/gnome/help/alexandria/ja/figures/adding_books_manual_details.png +0 -0
  224. data/share/gnome/help/alexandria/ja/figures/adding_books_rename_library_after_import.png +0 -0
  225. data/share/gnome/help/alexandria/ja/figures/adding_books_search_results.png +0 -0
  226. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_info.png +0 -0
  227. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_loaning.png +0 -0
  228. data/share/gnome/help/alexandria/ja/figures/exporting_information_html.png +0 -0
  229. data/share/gnome/help/alexandria/ja/figures/getting_started_first_launched.png +0 -0
  230. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view.png +0 -0
  231. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view_search.png +0 -0
  232. data/share/gnome/help/alexandria/ja/figures/settings_providers_new_z3950.png +0 -0
  233. data/share/gnome/help/alexandria/ja/figures/smart_libraries_new_smart_library.png +0 -0
  234. data/share/gnome/help/alexandria/ja/figures/working_with_libraries_library_pane.png +0 -0
  235. data/share/gnome/help/alexandria/ja/getting-started.xml +144 -0
  236. data/share/gnome/help/alexandria/ja/gnu-fdl-1.2.xml +541 -0
  237. data/share/gnome/help/alexandria/ja/introduction.xml +134 -0
  238. data/share/gnome/help/alexandria/ja/searching.xml +104 -0
  239. data/share/gnome/help/alexandria/ja/settings.xml +129 -0
  240. data/share/gnome/help/alexandria/ja/smart-libraries.xml +140 -0
  241. data/share/gnome/help/alexandria/ja/working-with-libraries.xml +88 -0
  242. data/share/menu/alexandria +7 -0
  243. data/share/omf/alexandria/alexandria-C.omf.in +27 -0
  244. data/share/omf/alexandria/alexandria-fr.omf.in +30 -0
  245. data/share/sounds/alexandria/bad_scan.ogg +0 -0
  246. data/share/sounds/alexandria/bad_scan.wav +0 -0
  247. data/share/sounds/alexandria/good_scan.ogg +0 -0
  248. data/share/sounds/alexandria/good_scan.wav +0 -0
  249. data/share/sounds/alexandria/scanning.ogg +0 -0
  250. data/share/sounds/alexandria/scanning.wav +0 -0
  251. data/spec/alexandria/library_spec.rb +205 -0
  252. data/spec/alexandria/preferences_spec.rb +22 -0
  253. data/spec/alexandria/scanners/cuecat_spec.rb +68 -0
  254. data/spec/alexandria/smart_library_spec.rb +22 -0
  255. data/spec/alexandria/ui/dialogs_spec.rb +90 -0
  256. data/spec/alexandria/ui/iconview_spec.rb +27 -0
  257. data/spec/alexandria/ui/listview_spec.rb +28 -0
  258. data/spec/alexandria/ui/main_app_spec.rb +48 -0
  259. data/spec/alexandria/ui/sidepane_spec.rb +27 -0
  260. data/spec/alexandria/ui/ui_manager_spec.rb +26 -0
  261. data/spec/alexandria/ui/ui_utilities_spec.rb +60 -0
  262. data/spec/alexandria/utilities_spec.rb +50 -0
  263. data/spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml +10 -0
  264. data/spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml +10 -0
  265. data/spec/data/libraries/0.6.1/My Library/0192812173.yaml +9 -0
  266. data/spec/data/libraries/0.6.1/My Library/0201398257.cover +0 -0
  267. data/spec/data/libraries/0.6.1/My Library/0201398257.yaml +10 -0
  268. data/spec/data/libraries/0.6.1/My Library/1565920007.yaml +10 -0
  269. data/spec/data/libraries/0.6.2/My Library/9780140266146.cover +0 -0
  270. data/spec/data/libraries/0.6.2/My Library/9780140266146.yaml +16 -0
  271. data/spec/data/libraries/0.6.2/My Library/9780140278781.cover +0 -0
  272. data/spec/data/libraries/0.6.2/My Library/9780140278781.yaml +21 -0
  273. data/spec/data/libraries/0.6.2/My Library/9780571147168.cover +0 -0
  274. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +20 -0
  275. data/spec/data/libraries/0.6.2/My Library/9780575079038.cover +0 -0
  276. data/spec/data/libraries/0.6.2/My Library/9780575079038.yaml +20 -0
  277. data/spec/data/libraries/0.6.2/My Library/9780755322800.cover +0 -0
  278. data/spec/data/libraries/0.6.2/My Library/9780755322800.yaml +20 -0
  279. data/spec/spec_helper.rb +46 -0
  280. data/tasks/rdoc.rake +6 -0
  281. data/tasks/setup.rb +30 -0
  282. data/tasks/spec.rake +29 -0
  283. data/tasks/test.rake +38 -0
  284. data/test/application_test.rb +39 -0
  285. data/test/book_test.rb +34 -0
  286. data/test/data/isbns.txt +3 -0
  287. data/test/isbn_test.rb +68 -0
  288. data/test/providers_test.rb +254 -0
  289. data/test/test_helper.rb +42 -0
  290. data/util/rake/fileinstall.rb +313 -0
  291. data/util/rake/gettextgenerate.rb +158 -0
  292. data/util/rake/omfgenerate.rb +79 -0
  293. metadata +452 -0
@@ -0,0 +1,142 @@
1
+ <!--
2
+ This is part of the Alexandria Manual.
3
+ Copyright (C) 2005 Liam Davison
4
+ Copyright (C) 2007 Cathal Mc Ginley
5
+ See the file alexandria.xml for copying conditions.
6
+ -->
7
+
8
+ <!-- ============= Introduction ============================== -->
9
+ <!-- Use the Introduction section to give a brief overview of what
10
+ the application is and what it does. -->
11
+ <section id="introduction">
12
+ <title>Introduction</title>
13
+
14
+ <para>&app; is a simple GNOME application designed to allow
15
+ individuals to keep a catalogue of their book collection. In
16
+ addition, it enables users to keep track of books which are on
17
+ loan.</para>
18
+
19
+ <section id="features">
20
+ <title>Features</title>
21
+
22
+ <para>&app; provides the following features:</para>
23
+
24
+
25
+ <itemizedlist>
26
+ <listitem>
27
+ <para>
28
+ retrieves and displays book information (sometimes with cover
29
+ pictures) from several online libraries and bookshops, such as
30
+ <itemizedlist>
31
+ <listitem>
32
+ <para>
33
+ <ulink url="http://www.amazon.com">Amazon</ulink>
34
+ (searches .co.uk, .fr, .de, .jp and .ca websites, as
35
+ well as amazon.com)
36
+ </para>
37
+ </listitem>
38
+
39
+ <listitem>
40
+ <para><ulink url="http://www.proxis.be">Proxis</ulink></para>
41
+ </listitem>
42
+
43
+ <listitem>
44
+ <para><ulink url="http://www.barnesandnoble.com">Barnes and Noble</ulink></para>
45
+ </listitem>
46
+
47
+ <listitem>
48
+ <para><ulink url="http://www.mcu.es">Spanish Ministry of Culture</ulink></para>
49
+ </listitem>
50
+
51
+ <listitem>
52
+ <para><ulink url="http://www.thalia.de">Thalia</ulink></para>
53
+ </listitem>
54
+
55
+ <listitem>
56
+ <para><ulink url="http://www.internetbookshop.it">Internet Bookshop Italia</ulink></para>
57
+ </listitem>
58
+
59
+ <listitem>
60
+ <para><ulink url="http://www.renaud-bray.com/">Renaud-Bray</ulink></para>
61
+ </listitem>
62
+
63
+ <listitem>
64
+ <para><ulink url="http://www.loc.gov">US Library of Congress</ulink></para>
65
+ </listitem>
66
+ <listitem>
67
+ <para><ulink url="http://www.bl.uk">British Library</ulink></para>
68
+ </listitem>
69
+ </itemizedlist>
70
+ </para>
71
+ </listitem>
72
+
73
+ <listitem>
74
+ <para>allows books to be added and updated by hand</para>
75
+ </listitem>
76
+ <listitem>
77
+ <para>enables searches either by <acronym>ISBN</acronym>, title, authors or keyword</para>
78
+ </listitem>
79
+ <listitem>
80
+ <para>supports the <ulink
81
+ url="http://www.z3950.org/">Z39.50</ulink> standard and
82
+ allow you to define your own online book information sources</para>
83
+ </listitem>
84
+
85
+ <listitem>
86
+ <para>saves data using the text-based <ulink
87
+ url="http://www.yaml.org"><acronym>YAML</acronym></ulink>
88
+ format, making it easy to work with your book data</para>
89
+ </listitem>
90
+ <listitem>
91
+ <para>can import and export data into <ulink
92
+ url="http://www.editeur.org/onix.html"><acronym>ONIX</acronym></ulink>,
93
+ <ulink url="http://www.periapsis.org/tellico/">Tellico</ulink>
94
+ and <acronym>ISBN</acronym>-list formats</para>
95
+ </listitem>
96
+
97
+ <listitem>
98
+ <para>can export library data in the form of
99
+ <acronym>XHTML</acronym> web pages themable with
100
+ <acronym>CSS</acronym></para>
101
+ </listitem>
102
+ <listitem>
103
+ <para>allows marking your books as loaned, each with the loan-date and
104
+ the name of the person who has borrowed them</para>
105
+ </listitem>
106
+
107
+ <!-- listitem>
108
+ <para>features a <ulink
109
+ url="http://developer.gnome.org/projects/gup/hig/"><acronym>HIG</acronym></ulink>-compliant
110
+ user interface</para>
111
+ </listitem -->
112
+ <listitem>
113
+ <para>shows books in different views (standard list or
114
+ icons list), that can be filtered and/or sorted</para>
115
+ </listitem>
116
+ <listitem>
117
+ <para>handles book rating and notes</para>
118
+ </listitem>
119
+
120
+ <listitem>
121
+ <para>supports <ulink
122
+ url="http://www.cuecat.com/">CueCat</ulink> barcode
123
+ readers for data entry</para>
124
+ </listitem>
125
+ <listitem>
126
+ <para>includes translations for several languages</para>
127
+ </listitem>
128
+ </itemizedlist>
129
+
130
+ <note>
131
+ <para>
132
+ Alexandria is under active development (as of December 2007)
133
+ and new features are being planned and added regularly. See
134
+ the <ulink url="http://alexandria.rubyforge.org/feedback.html"
135
+ type="http">&app; web page</ulink> for more information.
136
+ </para>
137
+ </note>
138
+
139
+ </section>
140
+
141
+ </section>
142
+
@@ -0,0 +1,90 @@
1
+ <!--
2
+ This is part of the Alexandria Manual.
3
+ Copyright (C) 2005 Liam Davison
4
+ Copyright (C) 2007 Cathal Mc Ginley
5
+ See the file alexandria.xml for copying conditions.
6
+ -->
7
+
8
+ <!-- ============= Searching and views subsection =============== -->
9
+
10
+ <section id="searching">
11
+ <title>Searching, Filtering and Views</title>
12
+ <para>&app; includes powerful tools for searching and filtering and books display. You can use these tools to display only books by a certain author or publisher, only those you rate highly or those with additional notes. &app; also contains both Icon and List views, and can directly link to online information providers to display more detailed information.
13
+ <itemizedlist>
14
+ <listitem><para><xref linkend="searching-views"/></para></listitem>
15
+ <listitem><para><xref linkend="searching-filtering"/></para></listitem>
16
+ <listitem><para><xref linkend="searching-more-online"/></para></listitem>
17
+ </itemizedlist>
18
+ </para>
19
+
20
+
21
+ <!-- ========= Icon and List views =========== -->
22
+ <section id="searching-views">
23
+ <title>Icon and List Views</title>
24
+ <para>Like the <application>Nautilus</application> file manager, &app; has both Icon and List views. The Icon view shows the cover and title for every book in your library, while the List view shows more detailed information (as defined in the <xref linkend="alexandria-prefs-display"/> preferences), with one book per line.</para>
25
+ <tip>
26
+ <para>To switch between Icon and List views, either use the <guibutton>View as...</guibutton> button in the top right of the main window, or <menuchoice><guimenu>View</guimenu><guimenuitem>View As List / View as Icons</guimenuitem></menuchoice> in the main menu and right-click menu.</para>
27
+ </tip>
28
+ <para>The icons can be arranged in order of Title, Author, Publishing, Binding or Rating, and you can reverse this order. To change the order of the books in the Icon view, choose <menuchoice><guimenu>View</guimenu><guimenuitem>Arrange Icons</guimenuitem></menuchoice> from the main menu or <guimenuitem>Arrange Icons</guimenuitem> from the right-click menu.</para>
29
+ <para>To change the order of the books in the List view, click on the appropriate column header.</para>
30
+ <figure id="listview-fig">
31
+ <title>The list view, showing books sorted in reverse by author name</title>
32
+ <screenshot>
33
+ <mediaobject>
34
+ <imageobject>
35
+ <imagedata fileref="figures/searching_filtering_views_list_view.png" format="PNG"/>
36
+ </imageobject>
37
+ <!-- EPS versions of the figures are not required at the moment. -->
38
+ <!--
39
+ <imageobject>
40
+ <imagedata fileref="figures/image.eps" format="EPS"/>
41
+ </imageobject>
42
+ -->
43
+ <textobject>
44
+ <phrase>The list view, showing books sorted by author name</phrase>
45
+ </textobject>
46
+ </mediaobject>
47
+ </screenshot>
48
+ </figure>
49
+ </section>
50
+
51
+ <!-- ========== Searching/filtering ======== -->
52
+ <section id="searching-filtering">
53
+ <title>Searching or filtering the view</title>
54
+ <para>It is very easy to search for a particular book, or to limit the number of books displayed. To search for a specific title, just enter its name in the entry field on the toolbar. Use the <guilabel>Title contains</guilabel> drop-down menu to choose between searching for Titles, Authors, ISBNs, Publishers or Notes.</para>
55
+ <figure id="listview-search-fig">
56
+ <title>The list view, showing books only those books whose author name contains 'banks'</title>
57
+ <screenshot>
58
+ <mediaobject>
59
+ <imageobject>
60
+ <imagedata fileref="figures/searching_filtering_views_list_view_search.png" format="PNG"/>
61
+ </imageobject>
62
+ <!-- EPS versions of the figures are not required at the moment. -->
63
+ <!--
64
+ <imageobject>
65
+ <imagedata fileref="figures/image.eps" format="EPS"/>
66
+ </imageobject>
67
+ -->
68
+ <textobject>
69
+ <phrase>The list view, searching for books by 'banks'</phrase>
70
+ </textobject>
71
+ </mediaobject>
72
+ </screenshot>
73
+ </figure>
74
+ <tip>
75
+ <para>From the keyboard, you can move to the search field by pressing Ctrl-F. You can clear the search by pressing Ctrl-Alt-B.</para>
76
+ </tip>
77
+ </section>
78
+
79
+ <!-- ========= Finding out more online =========== -->
80
+ <section id="searching-more-online">
81
+ <title>Finding out more information about your books online</title>
82
+ <para>If you want to find out more information about your book, you can use &app; to open the web page of Amazon, Barnes and Noble, or one of the other online information providers and be taken directly to the relevant book. Simply select the book you wish to know more about, right-click on it, and from the menu <guimenuitem>Display Online Information</guimenuitem>, choose from either Amazon, Barnes and Nobel, Proxis, Spanish Culture Ministry, Amadeus Buch, Renaud-Bray or Internet Bookshop Italia.</para>
83
+ <tip>
84
+ <para>The <menuchoice><guimenu>Display Online Information</guimenu><guimenuitem>At Amazon</guimenuitem></menuchoice> choice will take you to the Amazon .com, .co.uk, .de, or jp site, as set up in the <xref linkend="alexandria-amazon-prefs"/>.</para>
85
+ </tip>
86
+ <caution>
87
+ <para>Not every online information source has a complete list of books and you may have to try several different providers to find the information you want.</para>
88
+ </caution>
89
+ </section>
90
+ </section>
@@ -0,0 +1,140 @@
1
+ <!--
2
+ This is part of the Alexandria Manual.
3
+ Copyright (C) 2005 Liam Davison
4
+ Copyright (C) 2007 Cathal Mc Ginley
5
+ See the file alexandria.xml for copying conditions.
6
+ -->
7
+
8
+ <!-- ============= Customization ============================= -->
9
+ <!-- Use this section to describe how to customise the application. -->
10
+ <section id="alexandria-preferences">
11
+ <title>Settings</title>
12
+ <para>To configure &app;, choose
13
+ <menuchoice><guimenu>Edit</guimenu><guimenuitem>Preferences</guimenuitem></menuchoice>. The
14
+ <guilabel>Preferences</guilabel> dialogue contains the following tabbed
15
+ sections:</para>
16
+ <itemizedlist>
17
+ <listitem>
18
+ <para>
19
+ <xref linkend="alexandria-prefs-display"/></para>
20
+ </listitem>
21
+ <listitem>
22
+ <para>
23
+ <xref linkend="myapp-prefs-providers"/></para>
24
+ </listitem>
25
+ </itemizedlist>
26
+ <para>You can also add new online information providers to &app;:</para>
27
+ <itemizedlist>
28
+ <listitem><para><xref linkend="alexandria-z3950-prefs"/></para></listitem>
29
+ </itemizedlist>
30
+
31
+ <!-- ======== Visible columns ======= -->
32
+ <section id="alexandria-prefs-display">
33
+ <title>List View</title>
34
+ <para>You can choose which columns are displayed in the List view by selecting or deselecting the checkboxes. Possible columns are Authors, ISBN, Publisher, Binding and Rating.</para>
35
+ </section>
36
+
37
+ <!-- ======== Providers ======== -->
38
+ <section id="myapp-prefs-providers">
39
+ <title>Online information providers</title>
40
+ <para>&app; can download information from a variety of different online sources; some of these sources have additional options to control how the information is downloaded. &app; will search each of the sources in turn, in the order displayed in the list. You can change the order in which the sources are searched by moving each source up or down using the <guibutton>Up</guibutton> and <guibutton>Down</guibutton> buttons.
41
+ <itemizedlist>
42
+ <listitem><para><xref linkend="alexandria-amazon-prefs"/></para></listitem>
43
+ <listitem><para><xref linkend="alexandria-proxis-prefs"/></para></listitem>
44
+ <listitem><para>The Spanish Culture Ministry</para></listitem>
45
+ <listitem><para>Barnes and Noble</para></listitem>
46
+ <listitem><para>Amadeus Buch</para></listitem>
47
+ <listitem><para>Internet Bookshop Italia</para></listitem>
48
+ <listitem><para><xref linkend="alexandria-britlib-prefs"/></para></listitem>
49
+ <listitem><para><xref linkend="alexandria-uslibcon-prefs"/></para></listitem>
50
+ <listitem><para>Reynaud-Bray</para></listitem>
51
+ </itemizedlist>
52
+ </para>
53
+ <para>You can also use the Z39.50 protocol to add and remove new information providers. Two providers have been set up using this protocol for you.
54
+ <itemizedlist>
55
+ <listitem><para><xref linkend="alexandria-z3950-prefs"/></para></listitem>
56
+ </itemizedlist>
57
+ </para>
58
+
59
+
60
+ <sect3 id="alexandria-amazon-prefs">
61
+ <title>Amazon preferences</title>
62
+ <para>In order to use the Amazon provider, you must sign up for a free <ulink url="http://aws.amazon.com/">Amazon AWS</ulink> account, and enter your <guilabel>Access Key Id</guilabel> <guilabel>Secret Access Key</guilabel>. You can find these "Access Identifiers" under the link to "Your Account" on the AWS website.</para>
63
+ <note>
64
+ <para>Previous versions of &app; included an Amazon AWS Access
65
+ Key ID. From August 15 2009, Amazon have changed their
66
+ "Product Advertising API" so each request must be
67
+ authenticated, requiring a Secret Access Key. It is not
68
+ possible for us to distribute secret keys to users. So, in
69
+ order to continue using the Amazon provider you will need to
70
+ sign up for your own free AWS account.</para>
71
+ <para>You don't require an Amazon AWS account in order to use
72
+ &app;'s other providers. So, if you don't want to sign up for
73
+ an AWS account, you can leave these settings blank, and &app;
74
+ will simply not search Amazon when looking up books. </para>
75
+ </note>
76
+ <para>&app; can download book information from different amazon websites - currently, amazon.com, .co.uk, .fr, .de, .ca and .jp . To change which site to use, select Amazon from the Provider list, and click on <guibutton>Setup</guibutton>. Then choose either <guilabel>ca, de, fr, jp, uk</guilabel> or <guilabel>us</guilabel> from the drop-down menu.</para>
77
+ </sect3>
78
+
79
+
80
+ <sect3 id="alexandria-proxis-prefs">
81
+ <title>Proxis preferences</title>
82
+ <para>&app; can search the Proxis website for books in either English, French or Dutch. To change which language to use, select Proxis from the Provider list, and click on <guibutton>Setup</guibutton>. Then chose either <guilabel>en, fr</guilabel> or <guilabel>nl</guilabel> from the drop-down menu.</para>
83
+ </sect3>
84
+
85
+ <sect3 id="alexandria-britlib-prefs">
86
+ <title>British Library preferences</title>
87
+ <para>If you have an account with the British Library, you can use this dialogue to specify your username and password for the z39.50 service. You can also choose which database to connect to.</para>
88
+ </sect3>
89
+
90
+ <sect3 id="alexandria-uslibcon-prefs">
91
+ <title>US Library of Congress preferences</title>
92
+ <para>If you have an account with the US Library of Congress, you can use this dialogue to specify your username and password for the z39.50 service. You can also choose which database to connect to.</para>
93
+ </sect3>
94
+
95
+ <sect3 id="alexandria-z3950-prefs">
96
+ <title>Adding Z39.50 providers</title>
97
+
98
+
99
+
100
+ <para>To add or remove a Z39.50 provider, you must first enable
101
+ the advanced preferences options by selecting
102
+ the <guilabel>Custom Z39.50 Providers</guilabel> checkbox. Two new
103
+ buttons will appear: <guibutton>Add</guibutton>
104
+ and <guibutton>Remove</guibutton>.</para>
105
+
106
+ <note>
107
+ <para>Z39.50 support is optional in &app;, and requires that
108
+ you <ulink url="http://alexandria.rubyforge.org/faq.html#ruby-zoom-marc">install
109
+ Ruby/ZOOM and marc</ulink>. If the <guilabel>Custom Z39.50
110
+ Providers</guilabel> checkbox is greyed-out, it means that
111
+ Ruby/ZOOM and marc are not correctly installed.</para>
112
+ </note>
113
+
114
+
115
+
116
+ <para>Clicking Add will open the New Z39.50 Provider dialogue:</para>
117
+ <figure id="add-z3950">
118
+ <title>Adding a new Z39.50 information provider</title>
119
+ <screenshot>
120
+ <mediaobject>
121
+ <imageobject>
122
+ <imagedata fileref="figures/settings_providers_new_z3950.png" format="PNG"/>
123
+ </imageobject>
124
+ <!-- EPS versions of the figures are not required at the moment. -->
125
+ <!--
126
+ <imageobject>
127
+ <imagedata fileref="figures/image.eps" format="EPS"/>
128
+ </imageobject>
129
+ -->
130
+ <textobject>
131
+ <phrase>The Z39.50 information provider dialog.</phrase>
132
+ </textobject>
133
+ </mediaobject>
134
+ </screenshot>
135
+ </figure>
136
+ <para>Here you can specify the <guilabel>Name</guilabel> of the provider, the <guilabel>Hostname</guilabel>, the Internet <guilabel>Port</guilabel> to connect to, the name of the online <guilabel>Database</guilabel>, the <guilabel>Record Syntax</guilabel> used (&app; currently supports USMARC, UNIMARC and SUTRS formats), and, if relevant, a username and password to connect to the provider.</para>
137
+ <para>To remove a provider, select its name from the list and click on <guibutton>Remove</guibutton>. You cannot remove any of the default providers provided by &app;.</para>
138
+ </sect3>
139
+ </section>
140
+ </section>
@@ -0,0 +1,160 @@
1
+ <!--
2
+ This is part of the Alexandria Manual.
3
+ Copyright (C) 2005 Liam Davison
4
+ Copyright (C) 2007 Cathal Mc Ginley
5
+ See the file alexandria.xml for copying conditions.
6
+ -->
7
+
8
+ <!-- ============= Smart Libraries Subsection ============ -->
9
+
10
+ <section id="smart-libraries">
11
+ <title>Smart Libraries</title>
12
+ <para>
13
+ The search feature makes it easy to narrow down the view of books
14
+ in a single library according to a single search term. In order to
15
+ support more complex filtering, in a persistent form, &app; uses
16
+ <quote>Smart Libraries</quote>.
17
+ </para>
18
+
19
+ <para>
20
+ Smart Libraries are listed beneath the actual libraries in the
21
+ application side pane. They do not actually contain books, but
22
+ rather a set of rules describing which books you wish to see. The
23
+ books from all libraries which satisfy the set of rules will be
24
+ displayed. You cannot directly add books to a Smart Library.
25
+ </para>
26
+
27
+ <para>
28
+ <itemizedlist>
29
+ <listitem><para><xref linkend="new-smart-library"/></para></listitem>
30
+ <listitem><para><xref linkend="edit-smart-library"/></para></listitem>
31
+ <listitem><para><xref linkend="renaming-smart-libraries"/></para></listitem>
32
+ <listitem><para><xref linkend="delete-smart-library"/></para></listitem>
33
+ </itemizedlist>
34
+ </para>
35
+
36
+ <!-- ======= Creating smart libraries ===== -->
37
+ <section id="new-smart-library">
38
+ <title>Creating a new Smart Library</title>
39
+
40
+ <para>
41
+ To create a new Smart library, choose
42
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>New Smart
43
+ Library...</guimenuitem></menuchoice> from the main menu. The
44
+ New Smart Library dialog allows you to define the rules which
45
+ select which books will be displayed. Each rule is displayed on
46
+ one line. The first drop-down list gives you the choice of what
47
+ attribute of a book you are concerned with (e.g. Title or
48
+ Publisher). The second drop-down gives a choice of conditions
49
+ for that attribute (e.g. contains). Depending on the attribute
50
+ you choose, there may be a text box to enter text or numbers to
51
+ further define the condition. You can add another rule by
52
+ clicking on the <guibutton>+</guibutton> button. You can remove
53
+ any rule (except the last remaining rule) by clicking on the
54
+ <guibutton>-</guibutton> button.
55
+ </para>
56
+
57
+
58
+ <para>
59
+ An example will illustrate the use of Smart Libraries. Let us
60
+ suppose you have a large collections of books by Terry
61
+ Practchett and you add the tag <quote>discworld</quote> to all
62
+ the books in the Discworld series. Let us create a Smart Library
63
+ for all his non-Discworld books.
64
+ </para>
65
+
66
+ <figure id="new-smart-library-fig">
67
+ <title>A New Smart Library dialog</title>
68
+ <screenshot>
69
+ <mediaobject>
70
+ <imageobject>
71
+ <imagedata fileref="figures/smart_libraries_new_smart_library.png" format="PNG"/>
72
+ </imageobject>
73
+ <!-- EPS versions of the figures are not required at the moment. -->
74
+ <!--
75
+ <imageobject>
76
+ <imagedata fileref="figures/image.eps" format="EPS"/>
77
+ </imageobject>
78
+ -->
79
+ <textobject>
80
+ <phrase>A New Smart Library dialog showing two rules; The
81
+ first is <quote>Author</quote> <quote>contains</quote>
82
+ <quote>Pratchett</quote>, the second is <quote>Tags</quote>
83
+ <quote>does not contain</quote>
84
+ <quote>discworld</quote>.</phrase>
85
+ </textobject>
86
+ </mediaobject>
87
+ </screenshot>
88
+ </figure>
89
+
90
+ <para>
91
+ This is quite simple. We make the first rule select all
92
+ Pratchett books by selecting <quote>Author</quote> and
93
+ <quote>contains</quote> and typing <quote>Pratchett</quote> into
94
+ the text box. Now we click <guibutton>+</guibutton> to add
95
+ another rule. With the second rule we narrow the selection by
96
+ selecting <quote>Tags</quote> and <quote>does not
97
+ contain</quote> and typing <quote>discworld</quote> into the
98
+ text box. Also be sure that <quote>Match <quote>all</quote> the
99
+ following rules</quote> is selected. When you click
100
+ <guibutton>New</guibutton>, the new Smart Library will be
101
+ created, and you should see the books it contains. You will also
102
+ be able rename the Smart Library immediately, or you can accept
103
+ the default name.
104
+ </para>
105
+
106
+ <para>
107
+ Remember, some attributes are boolean - they can either be
108
+ <quote>set</quote> or <quote>not set</quote> (for example the
109
+ <quote>Own</quote> attribute). A text box is not required for
110
+ rules concerning these attributes.
111
+ </para>
112
+ </section>
113
+
114
+ <!-- ======= Editing smart libraries ===== -->
115
+ <section id="edit-smart-library">
116
+ <title>Editing a Smart Library</title>
117
+
118
+ <para>
119
+ To edit a Smart Library, select it in the Smart Library list,
120
+ right-click the Smart Library name and select
121
+ <guimenuitem>Properties</guimenuitem> from the pop-up menu. The
122
+ Properties dialog is the same as the New Smart Library dialog;
123
+ you can modify, add and delete rules.
124
+ </para>
125
+ </section>
126
+
127
+ <!-- ======= Renaming smart libraries ===== -->
128
+ <section id="renaming-smart-libraries">
129
+ <title>Renaming a Smart Library</title>
130
+
131
+ <para>
132
+ To rename a Smart Library, simply click on its name twice in the
133
+ Smart Library pane, and type in the new name. You can also
134
+ right-click on the name, and select
135
+ <guimenuitem>Rename</guimenuitem> from the pop-up menu.
136
+ </para>
137
+ </section>
138
+
139
+ <!-- ======= Deleting smart libraries ===== -->
140
+ <section id="delete-smart-library">
141
+ <title>Deleting a Smart Library</title>
142
+
143
+ <para>
144
+ To delete a Smart Library, select it in the library pane, either
145
+ right-click and select <guimenuitem>Delete</guimenuitem>, choose
146
+ <menuchoice><guimenu>Edit</guimenu><guimenuitem>Delete</guimenuitem></menuchoice>
147
+ from the main menu, or press the <source>Delete</source> key on
148
+ your keyboard. &app; will ask for confirmation before deleting
149
+ the Smart Library.</para>
150
+
151
+ <note>
152
+ <para>
153
+ Deleting a Smart Library does not delete any books, just the
154
+ set of rules by which books are selected for display. However,
155
+ the deletion cannot be undone.
156
+ </para>
157
+ </note>
158
+ </section>
159
+
160
+ </section>