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,44 @@
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
+ <!-- ============= About ================================== -->
9
+ <!-- This section contains info about the program (not docs), such as
10
+ author's name(s), web page, license, feedback address. This
11
+ section is optional: primary place for this info is "About.." box of
12
+ the program. However, if you do wish to include this info in the
13
+ manual, this is the place to put it. Alternatively, you can put
14
+ this information in the title page.-->
15
+
16
+ <section id="about">
17
+ <title>About &app;</title>
18
+
19
+ <para>
20
+ &app; was originally written by Laurent Sansonetti. Many people
21
+ have contributed to it since it was first released. For a full
22
+ list of contributors, see the file AUTHORS which came with the
23
+ program. It is currently maintained by Joseph Method. To find
24
+ more information about &app;, please visit the <ulink
25
+ url="http://alexandria.rubyforge.org/" type="http">&app; Web
26
+ page</ulink>.
27
+ </para>
28
+
29
+ <para>
30
+ To report a bug or make a suggestion regarding the &app;
31
+ application or this manual, follow the directions on the <ulink
32
+ url="http://alexandria.rubyforge.org/feedback.html"
33
+ type="http">&app; Feedback web page</ulink>.
34
+ </para>
35
+
36
+ <para>
37
+ &app; is distributed under the terms of the GNU General Public
38
+ license as published by the Free Software Foundation; either
39
+ version 2 of the License, or (at your option) any later version. A
40
+ copy of this license can be found at this <ulink url="ghelp:gpl"
41
+ type="help">link</ulink>, or in the file COPYING included with the
42
+ source code of this program.
43
+ </para>
44
+ </section>
@@ -0,0 +1,339 @@
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
+ <!-- ================ Adding Books ================================ -->
9
+ <!-- Use this section to describe how to use the application to perform
10
+ the tasks for which the application is designed. -->
11
+
12
+ <section id="adding-books">
13
+ <title>Adding Books</title>
14
+
15
+ <para>You can add books to &app; in several different ways:
16
+ <itemizedlist>
17
+ <listitem><para><xref linkend="add-book-by-isbn"/></para></listitem>
18
+ <listitem><para><xref linkend="add-book-by-search"/></para></listitem>
19
+ <listitem><para><xref linkend="add-book-by-barcode-scan"/></para></listitem>
20
+ <listitem><para><xref linkend="add-book-manually"/></para></listitem>
21
+ </itemizedlist>
22
+ </para>
23
+
24
+ <para>You can also import a list of books into &app;:
25
+ <itemizedlist>
26
+ <listitem><para><xref linkend="import-library"/></para></listitem>
27
+ </itemizedlist>
28
+ </para>
29
+
30
+ <para>&app; will remember which method you prefer, and will
31
+ automatically select the most recently used method. For instance, if
32
+ you last added a book by searching for an author, &app; will open
33
+ the <guilabel>Add Book...</guilabel> dialog with the <guilabel>Add
34
+ book by author</guilabel> field selected.</para>
35
+
36
+ <!-- ================ Adding Books Subsection ====================== -->
37
+
38
+ <section id="add-book-by-isbn">
39
+ <title>To add a book by supplying an ISBN</title>
40
+
41
+ <para>If you know the ISBN of the book you wish to add to a
42
+ library, choose
43
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>Add
44
+ Book...</guimenuitem></menuchoice>, or click on the
45
+ <guibutton>Add</guibutton> button on the toolbar. The
46
+ <guilabel>Adding a Book</guilabel> dialog is displayed. Type in
47
+ the ISBN of the book you wish to add, then click
48
+ <guibutton>Add</guibutton>.</para>
49
+
50
+ <figure id="add-by-isbn-fig">
51
+ <title>&app; Adding a book by ISBN</title>
52
+ <screenshot>
53
+ <mediaobject>
54
+ <imageobject>
55
+ <imagedata fileref="figures/adding_books_add_by_isbn.png" format="PNG"/>
56
+ </imageobject>
57
+ <!-- EPS versions of the figures are not required at the moment. -->
58
+ <!--
59
+ <imageobject>
60
+ <imagedata fileref="figures/image.eps" format="EPS"/>
61
+ </imageobject>
62
+ -->
63
+ <textobject>
64
+ <phrase>Shows the &app; Add by ISBN dialogue, allowing you to add a book by searching all online information providers the book with that ISBN.</phrase>
65
+ </textobject>
66
+ </mediaobject>
67
+ </screenshot>
68
+ </figure>
69
+
70
+ <caution>
71
+ <itemizedlist>
72
+ <listitem>
73
+ <para>
74
+ &app; will validate the ISBN supplied and will warn you if
75
+ the number entered is not a valid ISBN.
76
+ </para>
77
+ </listitem>
78
+ <listitem>
79
+ <para>
80
+ &app; supports both 10-digit ISBN and the newer
81
+ ISBN-13.
82
+ </para>
83
+ </listitem>
84
+ <listitem>
85
+ <para>
86
+ ISBNs are frequently written with dashes at various
87
+ positions to aid legibility, but these are ignored by
88
+ &app;.
89
+ </para>
90
+ </listitem>
91
+ </itemizedlist>
92
+ </caution>
93
+
94
+ <para>
95
+ &app; will attempt to fetch the information about the book from
96
+ online information sources, searching in the order specified in
97
+ the application preferences. If the book is found by one of the
98
+ online providers, it will be added to the currently selected
99
+ library. To add the book to a different library, select the
100
+ library name from the <guilabel>Save in </guilabel> drop-down
101
+ menu. If there is only one library, there will naturally be no
102
+ choice to be made.
103
+ </para>
104
+
105
+ </section>
106
+
107
+ <!-- ========== Adding books by searching ====== -->
108
+ <section id="add-book-by-search">
109
+ <title>To search for a book whose ISBN you do not know</title>
110
+
111
+ <para>If you do not know the ISBN of the book you wish to add, you
112
+ can specify either the Title, the Authors or the Keywords, and
113
+ &app; will search your online information provider, such as
114
+ Amazon, for books that match. You can then select the desired book
115
+ from the displayed list and click <guibutton>Add</guibutton> to
116
+ the book to the selected library.</para>
117
+
118
+ <para>With the <guilabel>Adding a Book</guilabel> dialog open,
119
+ click on the <guilabel>Search</guilabel> checkbox then choose
120
+ either <guilabel>by title, by authors</guilabel> or <guilabel>by
121
+ keyword</guilabel> from the drop-down menu. Type in the details of
122
+ the book you are looking for, then click on
123
+ <guibutton>Find</guibutton>.</para>
124
+
125
+ <figure id="add-by-search-fig">
126
+ <title>&app; Adding a book by searching</title>
127
+ <screenshot>
128
+ <mediaobject>
129
+ <imageobject>
130
+ <imagedata fileref="figures/adding_books_search_results.png" format="PNG"/>
131
+ </imageobject>
132
+ <!-- EPS versions of the figures are not required at the moment. -->
133
+ <!--
134
+ <imageobject>
135
+ <imagedata fileref="figures/image.eps" format="EPS"/>
136
+ </imageobject>
137
+ -->
138
+ <textobject>
139
+ <phrase>Shows the &app; Add by Search dialogue, allowing you to add a book by searching your online information provider for a specific Title, Author or Keyword.</phrase>
140
+ </textobject>
141
+ </mediaobject>
142
+ </screenshot>
143
+ </figure>
144
+
145
+ <para>Where possible, &app; will show thumbnails of the books it
146
+ finds, making it easier to choose the right book or edition of a
147
+ book. Select the book you want from the list, and click
148
+ <guibutton>Add</guibutton>.</para>
149
+
150
+ <tip>
151
+ <para>You may have to try several different search terms to find
152
+ the book you want.</para>
153
+ </tip>
154
+ </section>
155
+
156
+ <!-- ======== Adding books by scanning a barcode ====== -->
157
+ <section id="add-book-by-barcode-scan">
158
+ <title>To add a book by scanning its barcode</title>
159
+
160
+ <para>
161
+ &app; supports CueCat barcode scanners. (At the moment, only
162
+ unmodified CueCats are supported; support for ordinary barcode
163
+ scanners is planned.) If you have a USB or PS/2 CueCat barcode
164
+ scanner attached to your computer, choose
165
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>Acquire from
166
+ Scanner</guimenuitem></menuchoice>. Scan each book barcode in
167
+ turn, and they will be listed in the <guilabel>Acquire from
168
+ Scanner</guilabel> window.
169
+ </para>
170
+
171
+ <figure id="add-manually-fig">
172
+ <title>Adding books by scanning ISBN barcodes</title>
173
+ <screenshot>
174
+ <mediaobject>
175
+ <imageobject>
176
+ <imagedata fileref="figures/adding_books_acquire_from_scanner_process.png" format="PNG"/>
177
+ </imageobject>
178
+ <!-- EPS versions of the figures are not required at the moment. -->
179
+ <!--
180
+ <imageobject>
181
+ <imagedata fileref="figures/image.eps" format="EPS"/>
182
+ </imageobject>
183
+ -->
184
+ <textobject>
185
+ <phrase>Shows the &app; Acquire from Scanner dialogue, while scanning and then after scanning a book barcode.</phrase>
186
+ </textobject>
187
+ </mediaobject>
188
+ </screenshot>
189
+ </figure>
190
+
191
+ <para>
192
+ Choose which library you wish to save the books in with the
193
+ <guilabel>Save in</guilabel> drop-down menu, and click
194
+ <guibutton>Add</guibutton> to complete the operation.
195
+ </para>
196
+ </section>
197
+
198
+ <!-- ======== Adding a book manually ================= -->
199
+ <section id="add-book-manually">
200
+ <title>To manually add a book</title>
201
+
202
+ <para>Sometimes you will not be able to search for a book
203
+ online. The book may not not have an ISBN (ISBN numbers only
204
+ became standard in the 1970s). Perhaps the book is too new, and no
205
+ information is available online. Or perhaps you simply don't have
206
+ an Internet connection. &app; allows you to specify all the
207
+ details of a book - the Title, Authors, cover image and so forth -
208
+ by supplying them yourself.</para>
209
+
210
+ <para>To manually add a book to a library, choose
211
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>Add Book
212
+ Manually</guimenuitem></menuchoice>. The following dialog will
213
+ appear:
214
+ </para>
215
+
216
+ <figure id="add-manually-fig">
217
+ <title>&app; adding a book manually</title>
218
+ <screenshot>
219
+ <mediaobject>
220
+ <imageobject>
221
+ <imagedata fileref="figures/adding_books_manual_details.png" format="PNG"/>
222
+ </imageobject>
223
+ <!-- EPS versions of the figures are not required at the moment. -->
224
+ <!--
225
+ <imageobject>
226
+ <imagedata fileref="figures/image.eps" format="EPS"/>
227
+ </imageobject>
228
+ -->
229
+ <textobject>
230
+ <phrase>Shows the &app; Add book manually dialogue, allowing type in all the information for the book yourself.</phrase>
231
+ </textobject>
232
+ </mediaobject>
233
+ </screenshot>
234
+ </figure>
235
+
236
+ <para>This dialogue is very similar to the <guilabel>Edit
237
+ Book</guilabel> dialog. There are three tabs to this dialogue -
238
+ <guilabel>General</guilabel>, <guilabel>Loaning</guilabel> and
239
+ <guilabel>Notes</guilabel>. There is space for you to specify the
240
+ book title, the ISBN if you know it, the book publisher, the
241
+ binding (such as Paperback, Hardback, or Audiobook), and the
242
+ Authors.</para>
243
+
244
+ <tip>
245
+ <para>To add an author, click on the <guibutton>+</guibutton>
246
+ next to the author list, then type the name. To remove an
247
+ author, select the name and click <guibutton>-</guibutton>. To
248
+ edit a name, click twice on the name.</para>
249
+ </tip>
250
+
251
+ <para>
252
+ You can also add a set of Tags to a book by entering words or
253
+ phrases separated by commas. Tags are used as an informal way to
254
+ note subject information.
255
+ </para>
256
+
257
+ <para>To supply a book cover image, click on the
258
+ <guibutton>Cover</guibutton> button. A standard file selection
259
+ dialogue will open. Navigate to the cover image file on your
260
+ system - which can be in JPEG or GIF format - and click
261
+ <guibutton>Open</guibutton>. The image will be scaled to fit into
262
+ the <guilabel>Edit Book</guilabel> dialogue.</para>
263
+
264
+ <para>You can rate a book by clicking on the stars. To clear the
265
+ rating, click on the space immediately to the left of the first
266
+ star.</para>
267
+
268
+ <para>When you have filled in all the information, click on the
269
+ <guibutton>Add</guibutton> button.</para>
270
+ </section>
271
+
272
+ <!-- =========== Importing a list of books ========== -->
273
+ <section id="import-library">
274
+ <title>To import a list of books</title>
275
+
276
+ <para>&app; can import Tellico files, (used by the
277
+ <application>Tellico</application> application). It can also
278
+ import a simple list of ISBNs, fetching the details for each book
279
+ in turn. To import either a Tellico file or a flat ISBN list,
280
+ choose
281
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>Import...</guimenuitem></menuchoice>. Navigate
282
+ to the appropriate file, and click
283
+ <guibutton>Import</guibutton>. &app; can automatically determine
284
+ what type of file is being imported; you can, of course, specify
285
+ the file format by choosing either <guimenuitem>Archived
286
+ Tellico</guimenuitem> or <guimenuitem>ISBN List</guimenuitem> from
287
+ the <guilabel>Autodetect</guilabel> drop-down menu.</para>
288
+
289
+ <figure id="importing-fig">
290
+ <title>&app; importing a list of ISBNs</title>
291
+ <screenshot>
292
+ <mediaobject>
293
+ <imageobject>
294
+ <imagedata fileref="figures/adding_books_isbn_import.png" format="PNG"/>
295
+ </imageobject>
296
+ <!-- EPS versions of the figures are not required at the moment. -->
297
+ <!--
298
+ <imageobject>
299
+ <imagedata fileref="figures/image.eps" format="EPS"/>
300
+ </imageobject>
301
+ -->
302
+ <textobject>
303
+ <phrase>Shows &app; importing a list of ISBNs.</phrase>
304
+ </textobject>
305
+ </mediaobject>
306
+ </screenshot>
307
+ </figure>
308
+
309
+ <tip>
310
+ <para>&app; will create a new Library when importing a library -
311
+ its name will be the same as the filename you imported. &app;
312
+ will automatically select and highlight this library in the
313
+ library pane - you can immediately rename this by typing a new
314
+ name, or accept the default by clicking the left mouse
315
+ button.</para>
316
+ </tip>
317
+
318
+ <figure id="importing-new-library">
319
+ <title>Renaming the new library after importing a list of ISBNs</title>
320
+ <screenshot>
321
+ <mediaobject>
322
+ <imageobject>
323
+ <imagedata fileref="figures/adding_books_rename_library_after_import.png" format="PNG"/>
324
+ </imageobject>
325
+ <!-- EPS versions of the figures are not required at the moment. -->
326
+ <!--
327
+ <imageobject>
328
+ <imagedata fileref="figures/image.eps" format="EPS"/>
329
+ </imageobject>
330
+ -->
331
+ <textobject>
332
+ <phrase>Shows &app; new library after importing a list of ISBNs.</phrase>
333
+ </textobject>
334
+ </mediaobject>
335
+ </screenshot>
336
+ </figure>
337
+
338
+ </section>
339
+ </section>
@@ -0,0 +1,185 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
3
+
4
+ <!-- SYMBOLIC ENTITIES -->
5
+ <!ENTITY appversion "0.6.2"> <!-- the version of the application -->
6
+ <!ENTITY manrevision "0.0.9"> <!-- the revision number of this manual -->
7
+ <!ENTITY date "December 2007"> <!-- the release date of this manual -->
8
+ <!ENTITY app "<application>Alexandria</application>">
9
+ <!-- the name of the application -->
10
+ <!-- INCLUDED FILES -->
11
+ <!ENTITY introduction SYSTEM "introduction.xml">
12
+ <!ENTITY gettingstarted SYSTEM "getting-started.xml">
13
+ <!ENTITY addingbooks SYSTEM "adding-books.xml">
14
+ <!ENTITY editingbookproperties SYSTEM "editing-book-properties.xml">
15
+ <!ENTITY workingwithlibraries SYSTEM "working-with-libraries.xml">
16
+ <!ENTITY searching SYSTEM "searching.xml">
17
+ <!ENTITY smartlibraries SYSTEM "smart-libraries.xml">
18
+ <!ENTITY exporting SYSTEM "exporting.xml">
19
+ <!ENTITY settings SYSTEM "settings.xml">
20
+ <!ENTITY bugs SYSTEM "bugs.xml">
21
+ <!ENTITY about SYSTEM "about.xml">
22
+ <!-- ENTITY legal SYSTEM "legal.xml" -->
23
+ <!ENTITY gnufdl SYSTEM "gnu-fdl-1.2.xml">
24
+
25
+ <!-- CHARACTER MNEMONICS -->
26
+ <!ENTITY copy "&#169;"> <!-- copyright sign -->
27
+ ]>
28
+ <!--
29
+ Copyright (C) 2005 Liam Davison
30
+ Copyright (C) 2007 Cathal Mc Ginley
31
+
32
+ Permission is granted to copy, distribute and/or modify this document
33
+ under the terms of the GNU Free Documentation License, Version 1.2
34
+ or any later version published by the Free Software Foundation;
35
+ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
36
+ A copy of the license is included in the section entitled "GNU
37
+ Free Documentation License" (see the file gnu-fdl-1.2.xml).
38
+ -->
39
+
40
+ <!--
41
+ This document is based upon a GNOME documentation template, designed
42
+ by the GNOME Documentation Project Team.
43
+ -->
44
+
45
+ <!--
46
+ (Do not remove this comment block.)
47
+ Maintained by the GNOME Documentation Project
48
+ http://developer.gnome.org/projects/gdp
49
+ Template version: 2.0 beta
50
+ Template last modified Apr 11, 2002
51
+ -->
52
+
53
+ <!-- =============Document Header ============================= -->
54
+ <article id="index" lang="en">
55
+
56
+ <!-- please do not change the id; for translations, change lang to -->
57
+ <!-- appropriate code -->
58
+
59
+ <articleinfo>
60
+ <title>&app; Manual</title>
61
+
62
+ <copyright>
63
+ <year>2007</year>
64
+ <holder>Cathal Mc Ginley</holder>
65
+ </copyright>
66
+ <copyright>
67
+ <year>2005</year>
68
+ <holder>Liam Davison</holder>
69
+ </copyright>
70
+ <!-- translators: uncomment this:
71
+ <copyright>
72
+ <year>2007</year>
73
+ <holder>TRANSLATOR_NAME (LANGUAGE translation)</holder>
74
+ </copyright>
75
+ -->
76
+
77
+ <legalnotice id="legalnotice">
78
+ <para>
79
+ Permission is granted to copy, distribute and/or modify this
80
+ document under the terms of the GNU Free Documentation License,
81
+ Version 1.2 or any later version published by the Free Software
82
+ Foundation; with no Invariant Sections, no Front-Cover Texts,
83
+ and no Back-Cover Texts. A copy of the license is included in
84
+ the section entitled <xref linkend="gfdl"/>.
85
+ </para>
86
+ </legalnotice>
87
+
88
+
89
+ <authorgroup>
90
+ <author>
91
+ <firstname>Liam</firstname>
92
+ <surname>Davison</surname>
93
+ <affiliation>
94
+ <orgname>&app; documentation writing</orgname>
95
+ <address format="linespecific"><email>carnegie@liamjdavison.info</email></address>
96
+ </affiliation>
97
+ </author>
98
+ <othercredit role="maintainer">
99
+ <firstname>Cathal</firstname>
100
+ <surname>Mc Ginley</surname>
101
+ <affiliation>
102
+ <orgname>&app; developers</orgname>
103
+ <address format="linespecific"><email>cathal.alexandria@gnostai.org</email></address>
104
+ </affiliation>
105
+ <contrib>Maintenance</contrib>
106
+ </othercredit>
107
+ <!-- This is appropriate place for other contributors: translators,
108
+ maintainers, etc. Commented out by default.
109
+
110
+ <othercredit role="translator">
111
+ <firstname>Latin</firstname>
112
+ <surname>Translator 1</surname>
113
+ <affiliation>
114
+ <orgname>Latin Translation Team</orgname>
115
+ <address> <email>translator@gnome.org</email> </address>
116
+ </affiliation>
117
+ <contrib>Latin translation</contrib>
118
+ </othercredit>
119
+ -->
120
+ </authorgroup>
121
+
122
+ <!-- According to GNU FDL, revision history is mandatory if you are -->
123
+ <!-- modifying/reusing someone else's document. If not, you can omit it. -->
124
+ <!-- Remember to remove the &manrevision; entity from the revision entries -->
125
+ <!-- other than the current revision. -->
126
+
127
+ <revhistory>
128
+ <revision>
129
+ <revnumber>Alexandria Manual V&manrevision;</revnumber>
130
+ <date>&date;</date>
131
+ <revdescription>
132
+ <para role="author">Cathal Mc Ginley
133
+ <email>cathal.alexandria@gnostai.org</email></para>
134
+ <para role="publisher">Alexandria Documentation</para>
135
+ </revdescription>
136
+ </revision>
137
+ <revision>
138
+ <revnumber>Alexandria Manual V0.0.8</revnumber>
139
+ <date>November 2005</date>
140
+ <revdescription>
141
+ <para role="author">Liam Davison
142
+ <email>carnegie@liamjdavison.info</email></para>
143
+ <para role="publisher">Alexandria Documentation</para>
144
+ </revdescription>
145
+ </revision>
146
+ </revhistory>
147
+
148
+ <releaseinfo>This manual describes version &appversion; of &app;</releaseinfo>
149
+
150
+ <legalnotice id="feedback">
151
+ <title>Feedback</title>
152
+
153
+ <para>Alexandria is not an official part of GNOME. To report a bug
154
+ or make a suggestion regarding the &app; application or this
155
+ manual, follow the directions on the <ulink
156
+ url="http://alexandria.rubyforge.org/feedback.html"
157
+ type="http">&app; Feedback web page</ulink>.
158
+ </para>
159
+
160
+ </legalnotice>
161
+ <!-- Translators may also add here feedback address for translations -->
162
+
163
+ </articleinfo>
164
+
165
+ <indexterm zone="index" significance="preferred">
166
+ <primary>Alexandria</primary>
167
+ </indexterm>
168
+
169
+ <!-- ============= Document Body ============================= -->
170
+
171
+ &introduction;
172
+ &gettingstarted;
173
+ &addingbooks;
174
+ &editingbookproperties;
175
+ &workingwithlibraries;
176
+ &searching;
177
+ &smartlibraries;
178
+ &exporting;
179
+ &settings;
180
+ &bugs;
181
+ &about;
182
+
183
+ &gnufdl;
184
+
185
+ </article>