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,88 @@
1
+ <!-- ============= Working with Libraries Subsection ============ -->
2
+
3
+ <section id="working-with-libraries">
4
+ <title>ライブラリを管理するには</title>
5
+ <para>&app; に登録した本は、いくつかのコレクションにグループ分けされて収納されます。
6
+ これをライブラリと呼びます。例えば、小説を全て1つのライブラリに入れてもよいですし、
7
+ また別のライブラリにはプログラミングのマニュアルをいれてもよいです。&app; では、
8
+ ライブラリを作成したり、編集したり、ライブラリ間で本を移動したりできます。</para>
9
+ <para>&app; のメインウィンドの左にある<guilabel>ライブラリのペイン</guilabel>
10
+ には利用可能なライブラリの一覧が表示されています。
11
+ ライブラリのペインが表示されていない場合には、メインメニューから
12
+ <menuchoice><guimenu>表示</guimenu><guimenuitem>サイドペイン</guimenuitem></menuchoice>
13
+ を選択してください。ペインを消すには、同じようにしてメニューから選ぶか、
14
+ ライブラリペインの左上にある<guibutton>閉じる(×)</guibutton>
15
+ のアイコンをクリックしてください。</para>
16
+ <figure id="library-pane-fig">
17
+ <title>&app; のライブラリの一覧</title>
18
+ <screenshot>
19
+ <mediaobject>
20
+ <imageobject>
21
+ <imagedata fileref="figures/working_with_libraries_library_pane.png" format="PNG"/>
22
+ </imageobject>
23
+ <!-- EPS versions of the figures are not required at the moment. -->
24
+ <!--
25
+ <imageobject>
26
+ <imagedata fileref="figures/image.eps" format="EPS"/>
27
+ </imageobject>
28
+ -->
29
+ <textobject>
30
+ <phrase>&app;のライブラリの一覧です。</phrase>
31
+ </textobject>
32
+ </mediaobject>
33
+ </screenshot>
34
+ </figure>
35
+ <para>
36
+ <itemizedlist>
37
+ <listitem><para><xref linkend="create-new-library"/></para></listitem>
38
+ <listitem><para><xref linkend="renaming-libraries"/></para></listitem>
39
+ <listitem><para><xref linkend="delete-library"/></para></listitem>
40
+ <listitem><para><xref linkend="moving-between-libraries"/></para></listitem>
41
+ </itemizedlist>
42
+ </para>
43
+
44
+ <!-- ======= Creating libraries ===== -->
45
+ <section id="create-new-library">
46
+ <title>新しいライブラリを作成作成するには</title>
47
+ <para>新しいライブラリを作成するには、ツールバーにある
48
+ <guibutton>新規ライブラリの作成</guibutton> のボタンを押すか、メニューから
49
+ <menuchoice><guimenu>ライブラリ</guimenu><guimenuitem>新規ライブラリの作成</guimenuitem>
50
+ </menuchoice>を選択します。他の場所から本のリストをインポートした時にも、
51
+ 新しいライブラリが新規に作成されます。</para>
52
+ </section>
53
+
54
+ <!-- ======= Renaming libraries ===== -->
55
+ <section id="renaming-libraries">
56
+ <title>ライブラリ名を変更するには</title>
57
+ <para>ライブラリの名前を変更するにはライブラリペインの名前のところをクリックして、
58
+ 新しい名前を入力してください。または、ライブラリの名前の上で右クリックをして、
59
+ ポップアップのメニューから<guimenuitem>名称変更</guimenuitem> を選択してください。</para>
60
+ </section>
61
+
62
+ <!-- ======= Deleting libraries ===== -->
63
+ <section id="delete-library">
64
+ <title>ライブラリを削除するには</title>
65
+ <para>ライブラリを削除するには、ライブラリのペインの名前の上で右クリックして、
66
+ <guimenuitem>削除</guimenuitem>,を選択するか、メインメニューから
67
+ <menuchoice>
68
+ <guimenu>編集</guimenu>
69
+ <guimenuitem>削除</guimenuitem>
70
+ </menuchoice>
71
+ を選択するか、キーボードから<source>Delete</source>キーを押します。削除するとき、&app;
72
+ は本当にライブラリを削除してもよいか尋ねてきます。</para>
73
+ <warning>
74
+ <para>ライブラリを削除すると、そのライブラリの中にある本を全て削除します。この操作は
75
+ 取り消せません。</para>
76
+ </warning>
77
+ </section>
78
+
79
+ <!-- ====== Moving between libraries == -->
80
+ <section id="moving-between-libraries">
81
+ <title>ライブラリ間で本を移動するには</title>
82
+ <para>本を移動するには、移動したい本を1つまたは複数を選択し、右クリックして<menuchoice><guimenu>移動</guimenu><guimenuitem>移動先ライブラリの名前</guimenuitem>
83
+ </menuchoice> を選択するか、メインメニューから
84
+ <menuchoice><guimenu>編集</guimenu><guimenuitem>移動</guimenuitem>
85
+ <guimenuitem>移動先ライブラリの名前</guimenuitem></menuchoice> を選択してください。
86
+ </para>
87
+ </section>
88
+ </section>
@@ -0,0 +1,7 @@
1
+ ?package(alexandria):\
2
+ needs="X11"\
3
+ section="Applications/Office"\
4
+ title="Alexandria"\
5
+ icon="/usr/share/icons/hicolor/scalable/apps/alexandria.svg"\
6
+ command="/usr/bin/alexandria"
7
+
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE omf PUBLIC "-//OMF//DTD Scrollkeeper OMF Variant V1.0//EN" "http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd">
3
+ <omf>
4
+ <resource>
5
+ <creator>
6
+ liam@liamjdavison.info (Liam Davison)
7
+ </creator>
8
+ <title>
9
+ Alexandria Manual
10
+ </title>
11
+ <date>
12
+ 2005-03-12
13
+ </date>
14
+ <subject category="GNOME|Applications"/>
15
+ <description>
16
+ User manual for the Alexandria application.
17
+ </description>
18
+ <type>
19
+ user's guide
20
+ </type>
21
+ <format mime="text/xml"/>
22
+ <identifier url="PATH_TO_DOC_FILE"/>
23
+ <language code="C"/>
24
+ <relation seriesid="7591aee4-92d9-11d9-88aa-939bacdd01aa"/>
25
+ </resource>
26
+ </omf>
27
+
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE omf PUBLIC "-//OMF//DTD Scrollkeeper OMF Variant V1.0//EN" "http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd">
3
+ <omf>
4
+ <resource>
5
+ <creator>
6
+ aymeric AT nnx DOT com (Aymeric Nys)
7
+ </creator>
8
+ <title>
9
+ Manuel d&#8217;Alexandria
10
+ </title>
11
+ <date>
12
+ 2006-01-06
13
+ </date>
14
+ <version identifier="0.6.1-fr.1.0" date="2006-01-06" description="Manuel d&#8217;Alexandria" />
15
+ <subject category="GNOME|Applications"/>
16
+ <description>
17
+ Alexandria a pour but de vous aider dans la gestion de votre bibliothèque personnelle.
18
+ Ce manuel décrit toutes les fonctionnalités du logiciel pour une prise en main rapide.
19
+ </description>
20
+ <type>
21
+ user's guide
22
+ </type>
23
+ <format mime="text/xml" dtd="-//OASIS//DTD DocBook XML V4.4//EN"/>
24
+ <identifier url="PATH_TO_DOC_FILE"/>
25
+ <language code="fr"/>
26
+ <relation seriesid="7591aee4-92d9-11d9-88aa-939bacdd01aa"/>
27
+ <rights type="GNU FDL" holder="Aymeric Nys"/>
28
+ </resource>
29
+ </omf>
30
+
@@ -0,0 +1,205 @@
1
+ #-- -*- ruby -*-
2
+ # Copyright (C) 2007 Cathal Mc Ginley
3
+ # Copyright (C) 2014 Matijs van Zuijlen
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.
14
+ #
15
+ # You should have received a copy of the GNU General Public
16
+ # License along with Alexandria; see the file COPYING. If not,
17
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ # Fifth Floor, Boston, MA 02110-1301 USA.
19
+ require File.dirname(__FILE__) + '/../spec_helper'
20
+
21
+ describe Alexandria::Library do
22
+
23
+ before(:each) do
24
+ FileUtils.mkdir(TESTDIR) unless File.exist? TESTDIR
25
+ end
26
+
27
+ it 'has symbolic references to file extensions' do
28
+ extensions = Alexandria::Library::EXT
29
+ expect(extensions[:book]).not_to be_nil
30
+ expect(extensions[:cover]).not_to be_nil
31
+ end
32
+
33
+ it 'disallows multiple deletion of the same copy of a book' do
34
+ my_library = Alexandria::Library.loadall[0]
35
+ first_copy = an_artist_of_the_floating_world
36
+ my_library << first_copy
37
+ my_library.delete(first_copy)
38
+ expect { my_library.delete(first_copy) }.to raise_error
39
+ end
40
+
41
+ it 'allows multiple copies of a book to be added and deleted in turn' do
42
+ my_library = Alexandria::Library.loadall[0]
43
+ first_copy = an_artist_of_the_floating_world
44
+ # puts "first_copy #{first_copy.object_id}"
45
+ my_library << first_copy
46
+ my_library.delete(first_copy)
47
+
48
+ second_copy = an_artist_of_the_floating_world
49
+ my_library << second_copy
50
+ third_copy = an_artist_of_the_floating_world
51
+ my_library << third_copy
52
+
53
+ # puts "AAA my_library.size #{my_library.size}"
54
+
55
+ # puts "second_copy #{second_copy.object_id}"
56
+ # lambda { my_library.delete(second_copy) }.should raise_error
57
+ expect { my_library.delete(second_copy) }.not_to raise_error
58
+
59
+ # puts "BBB my_library.size #{my_library.size}"
60
+ # my_library.size.should == 1 # not yet an established feature...
61
+ end
62
+
63
+ after(:each) do
64
+ FileUtils.rm_rf(TESTDIR)
65
+ end
66
+
67
+ end
68
+
69
+ describe Alexandria::Library, ' imported from 0.6.1 data files' do
70
+
71
+ before(:each) do
72
+ lib_version = File.join(LIBDIR, '0.6.1')
73
+ FileUtils.cp_r(lib_version, TESTDIR)
74
+ end
75
+
76
+ it 'imports cleanly from version 0.6.1 data format' do
77
+ libs = Alexandria::Library.loadall
78
+ expect(libs.size).to eq(1)
79
+ my_library = libs[0]
80
+ expect(my_library.size).to eq(3)
81
+ # Malory
82
+ malory_book = my_library.select { |b| b.isbn == '9780192812179' }[0]
83
+ expect(malory_book.publisher).to eq('Oxford University Press')
84
+ expect(malory_book.authors.include?('Vinaver')).to be_truthy
85
+ expect(malory_book.version).to eq(Alexandria::DATA_VERSION)
86
+
87
+ # Guide to LaTeX
88
+ latex_book = my_library.select { |b| b.title.include? 'Latex' }[0]
89
+ expect(latex_book.isbn).to eq('9780201398250')
90
+ expect(latex_book.publisher).to eq('Addison Wesley') # note, no Ruby-Amazon cruft
91
+ end
92
+
93
+ after(:each) do
94
+ FileUtils.rm_rf(TESTDIR)
95
+ end
96
+
97
+ end
98
+
99
+ describe Alexandria::Library, ' with books without an ISBN' do
100
+
101
+ before(:each) do
102
+ lib_version = File.join(LIBDIR, '0.6.1-noisbn')
103
+ FileUtils.cp_r(lib_version, TESTDIR)
104
+ end
105
+
106
+ it 'allows books to have no ISBN' do
107
+ libs = Alexandria::Library.loadall
108
+ expect(libs.size).to eq(1)
109
+ my_library = libs[0]
110
+ expect(my_library.size).to eq(2)
111
+
112
+ # Guide to LaTeX
113
+ latex_book = my_library.select { |b| b.title.include? 'Latex' }[0]
114
+ expect(latex_book.isbn).to eq('9780201398250')
115
+ expect(latex_book.publisher).to eq('Addison Wesley') # note, no Ruby-Amazon cruft
116
+ expect(latex_book.version).to eq(Alexandria::DATA_VERSION)
117
+
118
+ # Lex and Yacc
119
+ lex_and_yacc_book = my_library.select { |b| b.title.include? 'Lex' }[0]
120
+ expect(lex_and_yacc_book.publisher).to eq("O'Reilley")
121
+
122
+ # puts "ident -> " + lex_and_yacc_book.ident
123
+
124
+ my_library.each do |book|
125
+ my_library.save(book, true)
126
+ end
127
+
128
+ libraries_reloaded = Alexandria::Library.loadall
129
+ my_library_reloaded = libraries_reloaded[0]
130
+
131
+ expect(my_library_reloaded.size).to eq(2)
132
+
133
+ latex_book = my_library_reloaded.select { |b| b.title.include? 'Latex' }[0]
134
+ expect(latex_book).not_to be_nil
135
+ expect(latex_book.publisher).to eq('Addison Wesley')
136
+ # puts latex_book.title
137
+
138
+ lex_and_yacc_book = my_library_reloaded.select { |b| b.title.include? 'Lex' }[0]
139
+ expect(lex_and_yacc_book).not_to be_nil
140
+ expect(lex_and_yacc_book.publisher).to eq("O'Reilley")
141
+ # puts lex_and_yacc_book.title
142
+
143
+ end
144
+
145
+ after(:each) do
146
+ FileUtils.rm_rf(TESTDIR)
147
+ end
148
+
149
+ end
150
+
151
+ describe Alexandria::Library, ' export sort order' do
152
+
153
+ before(:all) do
154
+ require 'tmpdir'
155
+ require 'csv'
156
+ end
157
+
158
+ before(:each) do
159
+ lib_version = File.join(LIBDIR, '0.6.2')
160
+ FileUtils.cp_r(lib_version, TESTDIR)
161
+ @format = Alexandria::ExportFormat.new('CSV list', 'csv', :export_as_csv_list)
162
+ @outfile = File.join(Dir.tmpdir, 'my_library-0.6.2.csv')
163
+ @my_library = Alexandria::Library.loadall[0]
164
+ end
165
+
166
+ def load_rows_from_csv
167
+ CSV.read(@outfile, col_sep: ';')
168
+ end
169
+
170
+ it 'can sort by title' do
171
+ sort_by_title = Alexandria::LibrarySortOrder.new(:title)
172
+ @format.invoke(@my_library, sort_by_title, @outfile)
173
+ expect(File.exist?(@outfile)).to be_truthy
174
+ rows = load_rows_from_csv
175
+ rows.shift
176
+ expect(rows.size).to eq(@my_library.size)
177
+ TITLE = 0
178
+ comparisons = rows.size - 1
179
+ comparisons.times do |index|
180
+ expect(rows[index][TITLE]).to be <= rows[index + 1][TITLE]
181
+ end
182
+ end
183
+
184
+ it 'can sort in descending order' do
185
+ sort_by_date_desc = Alexandria::LibrarySortOrder.new(:publishing_year, false)
186
+ @format.invoke(@my_library, sort_by_date_desc, @outfile)
187
+ expect(File.exist?(@outfile)).to be_truthy
188
+ rows = load_rows_from_csv
189
+ rows.shift
190
+ expect(rows.size).to eq(@my_library.size)
191
+ DATE = 5
192
+ comparisons = rows.size - 1
193
+ comparisons.times do |index|
194
+ expect(rows[index][DATE]).to be >= rows[index + 1][DATE]
195
+ end
196
+ end
197
+
198
+ after(:each) do
199
+ FileUtils.rm_rf(TESTDIR)
200
+ if File.exist? @outfile
201
+ File.unlink @outfile
202
+ end
203
+ end
204
+
205
+ end
@@ -0,0 +1,22 @@
1
+ # Copyright (C) 2007 Joseph Method
2
+ #
3
+ # Alexandria is free software; you can redistribute it and/or
4
+ # modify it under the terms of the GNU General Public License as
5
+ # published by the Free Software Foundation; either version 2 of the
6
+ # License, or (at your option) any later version.
7
+ #
8
+ # Alexandria is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
+ # General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public
14
+ # License along with Alexandria; see the file COPYING. If not,
15
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
16
+ # Fifth Floor, Boston, MA 02110-1301 USA.
17
+
18
+ require File.dirname(__FILE__) + '/../spec_helper'
19
+
20
+ describe Alexandria::Preferences do
21
+ it 'should work'
22
+ end
@@ -0,0 +1,68 @@
1
+ #-- -*- ruby -*-
2
+ # Copyright (C) 2007 Cathal Mc Ginley
3
+ # Copyright (C) 2014 Matijs van Zuijlen
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.
14
+ #
15
+ # You should have received a copy of the GNU General Public
16
+ # License along with Alexandria; see the file COPYING. If not,
17
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ # Fifth Floor, Boston, MA 02110-1301 USA.
19
+
20
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '../../../lib'))
21
+
22
+ require 'alexandria/scanners/cuecat'
23
+
24
+ describe Alexandria::Scanners::CueCat do
25
+
26
+ before :all do
27
+ @cuecat = Alexandria::Scanners::CueCat.new
28
+ @partials = ['.',
29
+ '.C3nZC3nZC3n2ChnWENz7DxnY',
30
+ '.C3nZC3nZC3n2ChnWENz7DxnY.',
31
+ '.C3nZC3nZC3n2ChnWENz7DxnY.cGen',
32
+ '.C3nZC3nZC3n2ChnWENz7DxnY.cGen.',
33
+ '.C3nZC3nZC3n2ChnWENz7DxnY.cGen.ENr7C3z0CNj3Dhj1EW'
34
+ ]
35
+ @scans = {
36
+ isbn: '.C3nZC3nZC3n2ChnWENz7DxnY.cGen.ENr7C3z0CNj3Dhj1EW.',
37
+ ib5: '.C3nZC3nZC3n2ChnWENz7DxnY.cGf2.ENr7C3z0DNn0ENnWE3nZDhP6.'
38
+ }
39
+ end
40
+
41
+ it 'is called CueCat' do
42
+ expect(@cuecat.name).to match(/CueCat/i)
43
+ end
44
+
45
+ it 'should detect a complete scan only ' do
46
+ @partials.each { |scan| expect(@cuecat.match?(scan)).not_to be_truthy }
47
+ expect(@cuecat.match?(@scans[:isbn])).to be_truthy
48
+ expect(@cuecat.match?(@scans[:ib5])).to be_truthy
49
+ end
50
+
51
+ it 'should decode ISBN barcodes' do
52
+ expect(@cuecat.decode(@scans[:isbn])).to eq('9780571147168')
53
+ end
54
+
55
+ it 'should decode ISBN+5 barcodes' do
56
+ expect(@cuecat.decode(@scans[:ib5])).to eq('9780575079038') # 00799
57
+ # TODO are we supposed to keep the +5 bit?
58
+ end
59
+
60
+ it 'should decode ISSN barcodes' do
61
+ skip 'Test scan ISSN'
62
+ end
63
+
64
+ it 'should decode UPC barcodes' do
65
+ skip 'Test scan UPC'
66
+ end
67
+
68
+ end