enju_subject 0.0.15 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. data/app/views/classification_types/index.html.erb +1 -1
  2. data/app/views/classifications/_index.html.erb +1 -1
  3. data/app/views/classifications/_index_subject.html.erb +1 -1
  4. data/app/views/subject_has_classifications/index.html.erb +1 -1
  5. data/app/views/subject_heading_type_has_subjects/index.html.erb +1 -1
  6. data/app/views/subject_heading_types/index.html.erb +1 -1
  7. data/app/views/subject_types/index.html.erb +1 -1
  8. data/app/views/subjects/_index.html.erb +1 -1
  9. data/app/views/subjects/_index_classification.html.erb +1 -1
  10. data/app/views/subjects/_index_work.html.erb +1 -1
  11. data/app/views/subjects/show.html.erb +1 -1
  12. data/app/views/work_has_subjects/index.html.erb +1 -1
  13. data/lib/enju_subject/engine.rb +1 -7
  14. data/lib/enju_subject/expire_editable_fragment.rb +4 -2
  15. data/lib/enju_subject/version.rb +1 -1
  16. data/lib/enju_subject.rb +0 -2
  17. data/spec/dummy/app/models/role.rb +40 -1
  18. data/spec/dummy/app/models/user.rb +29 -0
  19. data/spec/dummy/config/application.rb +2 -1
  20. data/spec/dummy/db/development.sqlite3 +0 -0
  21. data/spec/dummy/db/migrate/001_create_patrons.rb +53 -0
  22. data/spec/dummy/db/migrate/005_create_manifestations.rb +56 -0
  23. data/spec/dummy/db/migrate/006_create_items.rb +28 -0
  24. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  25. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  26. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  27. data/spec/dummy/db/migrate/073_create_carrier_types.rb +1 -5
  28. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  29. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  30. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  31. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  32. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  33. data/spec/dummy/db/migrate/20080905191442_create_patron_types.rb +1 -5
  34. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  35. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  36. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  37. data/spec/dummy/db/migrate/20081028083142_create_patron_import_files.rb +22 -0
  38. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +22 -0
  39. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  40. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  41. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
  42. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  43. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  44. data/spec/dummy/db/migrate/20090812151902_create_patron_relationship_types.rb +12 -0
  45. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  46. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  47. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  48. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  49. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +15 -0
  50. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  51. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  52. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  53. data/spec/dummy/db/migrate/20100606073747_create_patron_relationships.rb +13 -0
  54. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  55. data/spec/dummy/db/migrate/20100814091104_add_position_to_patron_relationship.rb +11 -0
  56. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  57. data/spec/dummy/db/migrate/20100925074559_create_patron_import_results.rb +12 -0
  58. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  59. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  60. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_patron.rb +11 -0
  61. data/spec/dummy/db/migrate/20110425133109_add_issn_to_series_statement.rb +9 -0
  62. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  63. data/spec/dummy/db/migrate/20110618091240_add_periodical_to_series_statement.rb +9 -0
  64. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  65. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  66. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  67. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  68. data/spec/dummy/db/migrate/20110820131417_create_series_has_manifestations.rb +13 -0
  69. data/spec/dummy/db/migrate/20110916053430_rename_manifestation_number_list_to_number_string.rb +13 -0
  70. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  71. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  72. data/spec/dummy/db/migrate/20110918161853_rename_series_statement_manifestation_id_to_root_manifestation_id.rb +13 -0
  73. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  74. data/spec/dummy/db/migrate/20111009183423_add_ndc_to_manifestation.rb +9 -0
  75. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  76. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  77. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  78. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  79. data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +31 -10
  80. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  81. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  82. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  83. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  84. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  85. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  86. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  87. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_patron_import_file.rb +5 -0
  88. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  89. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_patron_import_file.rb +5 -0
  90. data/spec/dummy/db/migrate/20120415060308_rename_resource_import_file_imported_at_to_executed_at.rb +9 -0
  91. data/spec/dummy/db/migrate/20120415060323_rename_patron_import_file_imported_at_to_executed_at.rb +9 -0
  92. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  93. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  94. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_patron_import_file.rb +5 -0
  95. data/spec/dummy/db/schema.rb +563 -50
  96. data/spec/dummy/db/test.sqlite3 +0 -0
  97. data/spec/dummy/solr/data/test/index/segments_1 +0 -0
  98. data/spec/dummy/solr/data/test/spellchecker/segments_1 +0 -0
  99. data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
  100. data/spec/requests/subjects_spec.rb +0 -1
  101. metadata +185 -62
  102. data/app/views/classifications/classification_types/_form.html.erb +0 -19
  103. data/app/views/classifications/classification_types/edit.html.erb +0 -13
  104. data/app/views/classifications/classification_types/index.html.erb +0 -45
  105. data/app/views/classifications/classification_types/new.html.erb +0 -12
  106. data/app/views/classifications/classification_types/show.html.erb +0 -30
  107. data/spec/cassette_library/enju_subject/classification_index.yml +0 -30
  108. data/spec/cassette_library/enju_subject/create.yml +0 -49
  109. data/spec/cassette_library/enju_subject/create_subject.yml +0 -82
  110. data/spec/cassette_library/enju_subject/delete.yml +0 -72
  111. data/spec/cassette_library/enju_subject/edit.yml +0 -49
  112. data/spec/cassette_library/enju_subject/index.yml +0 -82
  113. data/spec/cassette_library/enju_subject/show.yml +0 -72
  114. data/spec/cassette_library/enju_subject/update.yml +0 -72
  115. data/spec/dummy/app/models/carrier_type.rb +0 -4
  116. data/spec/dummy/app/models/manifestation.rb +0 -13
  117. data/spec/dummy/db/migrate/20111201115353_create_manifestations.rb +0 -17
  118. data/spec/dummy/db/migrate/20111201115421_create_patrons.rb +0 -14
  119. data/spec/dummy/db/migrate/20111201121636_create_languages.rb +0 -16
  120. data/spec/dummy/lib/localized_name.rb +0 -13
  121. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  122. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  123. data/spec/dummy/tmp/cache/assets/D47/9C0/sprockets%2Fed08c2088e78d59a4fc4ea21b625784b +0 -0
  124. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  125. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  126. data/spec/dummy/tmp/cache/assets/D63/4E0/sprockets%2F0d39549b9e061d4b82c2ba3ac7ec5c31 +0 -0
  127. data/spec/dummy/tmp/cache/assets/DAD/4B0/sprockets%2Fb5993ad241d17bf516c64e9fcd9f68bb +0 -0
  128. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  129. data/spec/dummy/tmp/cache/assets/DFD/1C0/sprockets%2Fbba00f45f706fc39c4fbfc79305c9afb +0 -0
  130. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
@@ -1,82 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/select?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - application/x-www-form-urlencoded
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1,''params''=>{''wt''=>''ruby'',''start''=>''0'',''fq''=>''type:Subject'',''q''=>''*:*'',''rows''=>''30''}},''response''=>{''numFound''=>17,''start''=>0,''docs''=>[{''id''=>''Subject
24
- 1''},{''id''=>''Subject 2''},{''id''=>''Subject 3''},{''id''=>''Subject 4''},{''id''=>''Subject
25
- 5''},{''id''=>''Subject 68''},{''id''=>''Subject 69''},{''id''=>''Subject 70''},{''id''=>''Subject
26
- 71''},{''id''=>''Subject 130''},{''id''=>''Subject 131''},{''id''=>''Subject
27
- 132''},{''id''=>''Subject 133''},{''id''=>''Subject 6''},{''id''=>''Subject
28
- 7''},{''id''=>''Subject 8''},{''id''=>''Subject 9''}]}}'
29
- http_version: '1.1'
30
- recorded_at: Thu, 01 Dec 2011 16:16:15 GMT
31
- - request:
32
- method: post
33
- uri: http://localhost:8981/solr/select?wt=ruby
34
- body: ''
35
- headers:
36
- content-type:
37
- - application/x-www-form-urlencoded
38
- connection:
39
- - close
40
- response:
41
- status:
42
- code: 200
43
- message: OK
44
- headers:
45
- content-type:
46
- - text/plain; charset=utf-8
47
- connection:
48
- - close
49
- server:
50
- - Jetty(6.1.3)
51
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>0,''params''=>{''sort''=>''created_at_d
52
- desc'',''start''=>''0'',''q''=>''*:*'',''wt''=>''ruby'',''fq''=>[''type:Subject'',''required_role_id_i:[*
53
- TO 1]''],''rows''=>''10''}},''response''=>{''numFound''=>17,''start''=>0,''docs''=>[{''id''=>''Subject
54
- 8''},{''id''=>''Subject 9''},{''id''=>''Subject 7''},{''id''=>''Subject 6''},{''id''=>''Subject
55
- 133''},{''id''=>''Subject 132''},{''id''=>''Subject 131''},{''id''=>''Subject
56
- 130''},{''id''=>''Subject 70''},{''id''=>''Subject 71''}]}}'
57
- http_version: '1.1'
58
- recorded_at: Thu, 01 Dec 2011 16:53:06 GMT
59
- - request:
60
- method: post
61
- uri: http://localhost:8981/solr/update?wt=ruby
62
- body: ''
63
- headers:
64
- content-type:
65
- - text/xml
66
- connection:
67
- - close
68
- response:
69
- status:
70
- code: 200
71
- message: OK
72
- headers:
73
- content-type:
74
- - text/plain; charset=utf-8
75
- connection:
76
- - close
77
- server:
78
- - Jetty(6.1.3)
79
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>20}}'
80
- http_version: '1.1'
81
- recorded_at: Thu, 01 Dec 2011 17:39:28 GMT
82
- recorded_with: VCR 2.0.0.beta2
@@ -1,72 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/update?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - text/xml
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1}}'
24
- http_version: '1.1'
25
- recorded_at: Thu, 01 Dec 2011 17:47:57 GMT
26
- - request:
27
- method: post
28
- uri: http://localhost:8981/solr/update?wt=ruby
29
- body: ''
30
- headers:
31
- content-type:
32
- - text/xml
33
- connection:
34
- - close
35
- response:
36
- status:
37
- code: 200
38
- message: OK
39
- headers:
40
- content-type:
41
- - text/plain; charset=utf-8
42
- connection:
43
- - close
44
- server:
45
- - Jetty(6.1.3)
46
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1}}'
47
- http_version: '1.1'
48
- recorded_at: Thu, 01 Dec 2011 17:47:57 GMT
49
- - request:
50
- method: post
51
- uri: http://localhost:8981/solr/update?wt=ruby
52
- body: ''
53
- headers:
54
- content-type:
55
- - text/xml
56
- connection:
57
- - close
58
- response:
59
- status:
60
- code: 200
61
- message: OK
62
- headers:
63
- content-type:
64
- - text/plain; charset=utf-8
65
- connection:
66
- - close
67
- server:
68
- - Jetty(6.1.3)
69
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>3}}'
70
- http_version: '1.1'
71
- recorded_at: Thu, 01 Dec 2011 17:55:04 GMT
72
- recorded_with: VCR 2.0.0.beta2
@@ -1,49 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/update?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - text/xml
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>0}}'
24
- http_version: '1.1'
25
- recorded_at: Thu, 01 Dec 2011 17:55:03 GMT
26
- - request:
27
- method: post
28
- uri: http://localhost:8981/solr/update?wt=ruby
29
- body: ''
30
- headers:
31
- content-type:
32
- - text/xml
33
- connection:
34
- - close
35
- response:
36
- status:
37
- code: 200
38
- message: OK
39
- headers:
40
- content-type:
41
- - text/plain; charset=utf-8
42
- connection:
43
- - close
44
- server:
45
- - Jetty(6.1.3)
46
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>101}}'
47
- http_version: '1.1'
48
- recorded_at: Thu, 01 Dec 2011 17:55:03 GMT
49
- recorded_with: VCR 2.0.0.beta2
@@ -1,82 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/select?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - application/x-www-form-urlencoded
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>0,''params''=>{''wt''=>''ruby'',''start''=>''0'',''fq''=>''type:Subject'',''q''=>''*:*'',''rows''=>''30''}},''response''=>{''numFound''=>17,''start''=>0,''docs''=>[{''id''=>''Subject
24
- 1''},{''id''=>''Subject 2''},{''id''=>''Subject 3''},{''id''=>''Subject 4''},{''id''=>''Subject
25
- 5''},{''id''=>''Subject 68''},{''id''=>''Subject 69''},{''id''=>''Subject 70''},{''id''=>''Subject
26
- 71''},{''id''=>''Subject 130''},{''id''=>''Subject 131''},{''id''=>''Subject
27
- 132''},{''id''=>''Subject 133''},{''id''=>''Subject 6''},{''id''=>''Subject
28
- 7''},{''id''=>''Subject 8''},{''id''=>''Subject 9''}]}}'
29
- http_version: '1.1'
30
- recorded_at: Thu, 01 Dec 2011 17:06:38 GMT
31
- - request:
32
- method: post
33
- uri: http://localhost:8981/solr/select?wt=ruby
34
- body: ''
35
- headers:
36
- content-type:
37
- - application/x-www-form-urlencoded
38
- connection:
39
- - close
40
- response:
41
- status:
42
- code: 200
43
- message: OK
44
- headers:
45
- content-type:
46
- - text/plain; charset=utf-8
47
- connection:
48
- - close
49
- server:
50
- - Jetty(6.1.3)
51
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1,''params''=>{''sort''=>''created_at_d
52
- desc'',''start''=>''0'',''q''=>''*:*'',''wt''=>''ruby'',''fq''=>[''type:Subject'',''required_role_id_i:[*
53
- TO 4]''],''rows''=>''10''}},''response''=>{''numFound''=>17,''start''=>0,''docs''=>[{''id''=>''Subject
54
- 8''},{''id''=>''Subject 9''},{''id''=>''Subject 7''},{''id''=>''Subject 6''},{''id''=>''Subject
55
- 133''},{''id''=>''Subject 132''},{''id''=>''Subject 131''},{''id''=>''Subject
56
- 130''},{''id''=>''Subject 70''},{''id''=>''Subject 71''}]}}'
57
- http_version: '1.1'
58
- recorded_at: Thu, 01 Dec 2011 17:06:38 GMT
59
- - request:
60
- method: post
61
- uri: http://localhost:8981/solr/update?wt=ruby
62
- body: ''
63
- headers:
64
- content-type:
65
- - text/xml
66
- connection:
67
- - close
68
- response:
69
- status:
70
- code: 200
71
- message: OK
72
- headers:
73
- content-type:
74
- - text/plain; charset=utf-8
75
- connection:
76
- - close
77
- server:
78
- - Jetty(6.1.3)
79
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>2}}'
80
- http_version: '1.1'
81
- recorded_at: Thu, 01 Dec 2011 18:09:50 GMT
82
- recorded_with: VCR 2.0.0.beta2
@@ -1,72 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/update?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - text/xml
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1}}'
24
- http_version: '1.1'
25
- recorded_at: Thu, 01 Dec 2011 17:55:03 GMT
26
- - request:
27
- method: post
28
- uri: http://localhost:8981/solr/select?wt=ruby
29
- body: ''
30
- headers:
31
- content-type:
32
- - application/x-www-form-urlencoded
33
- connection:
34
- - close
35
- response:
36
- status:
37
- code: 200
38
- message: OK
39
- headers:
40
- content-type:
41
- - text/plain; charset=utf-8
42
- connection:
43
- - close
44
- server:
45
- - Jetty(6.1.3)
46
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>1,''params''=>{''wt''=>''ruby'',''start''=>''0'',''fq''=>[''type:Manifestation'',''subject_ids_im:6''],''q''=>''*:*'',''rows''=>''30''}},''response''=>{''numFound''=>0,''start''=>0,''docs''=>[]}}'
47
- http_version: '1.1'
48
- recorded_at: Thu, 01 Dec 2011 17:56:57 GMT
49
- - request:
50
- method: post
51
- uri: http://localhost:8981/solr/update?wt=ruby
52
- body: ''
53
- headers:
54
- content-type:
55
- - text/xml
56
- connection:
57
- - close
58
- response:
59
- status:
60
- code: 200
61
- message: OK
62
- headers:
63
- content-type:
64
- - text/plain; charset=utf-8
65
- connection:
66
- - close
67
- server:
68
- - Jetty(6.1.3)
69
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>4}}'
70
- http_version: '1.1'
71
- recorded_at: Thu, 01 Dec 2011 17:56:57 GMT
72
- recorded_with: VCR 2.0.0.beta2
@@ -1,72 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://localhost:8981/solr/update?wt=ruby
6
- body: ''
7
- headers:
8
- content-type:
9
- - text/xml
10
- connection:
11
- - close
12
- response:
13
- status:
14
- code: 200
15
- message: OK
16
- headers:
17
- content-type:
18
- - text/plain; charset=utf-8
19
- connection:
20
- - close
21
- server:
22
- - Jetty(6.1.3)
23
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>0}}'
24
- http_version: '1.1'
25
- recorded_at: Thu, 01 Dec 2011 17:47:57 GMT
26
- - request:
27
- method: post
28
- uri: http://localhost:8981/solr/update?wt=ruby
29
- body: ''
30
- headers:
31
- content-type:
32
- - text/xml
33
- connection:
34
- - close
35
- response:
36
- status:
37
- code: 200
38
- message: OK
39
- headers:
40
- content-type:
41
- - text/plain; charset=utf-8
42
- connection:
43
- - close
44
- server:
45
- - Jetty(6.1.3)
46
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>0}}'
47
- http_version: '1.1'
48
- recorded_at: Thu, 01 Dec 2011 17:47:57 GMT
49
- - request:
50
- method: post
51
- uri: http://localhost:8981/solr/update?wt=ruby
52
- body: ''
53
- headers:
54
- content-type:
55
- - text/xml
56
- connection:
57
- - close
58
- response:
59
- status:
60
- code: 200
61
- message: OK
62
- headers:
63
- content-type:
64
- - text/plain; charset=utf-8
65
- connection:
66
- - close
67
- server:
68
- - Jetty(6.1.3)
69
- body: ! '{''responseHeader''=>{''status''=>0,''QTime''=>3}}'
70
- http_version: '1.1'
71
- recorded_at: Thu, 01 Dec 2011 17:55:04 GMT
72
- recorded_with: VCR 2.0.0.beta2
@@ -1,4 +0,0 @@
1
- class CarrierType < ActiveRecord::Base
2
- default_scope :order => "position"
3
- has_many :manifestations
4
- end
@@ -1,13 +0,0 @@
1
- class Manifestation < ActiveRecord::Base
2
- has_many :creates, :dependent => :destroy, :foreign_key => 'work_id'
3
- has_many :creators, :through => :creates, :source => :patron
4
- has_many :produces, :dependent => :destroy, :foreign_key => 'manifestation_id'
5
- has_many :publishers, :through => :produces, :source => :patron
6
- has_many :work_has_subjects, :foreign_key => 'work_id', :dependent => :destroy
7
- has_many :subjects, :through => :work_has_subjects
8
- belongs_to :language
9
-
10
- searchable do
11
- integer :subject_ids, :multiple => true
12
- end
13
- end
@@ -1,17 +0,0 @@
1
- class CreateManifestations < ActiveRecord::Migration
2
- def change
3
- create_table :manifestations do |t|
4
- t.text :original_title
5
- t.text :title_transcription
6
- t.text :title_alternative
7
- t.string :pub_date
8
- t.string :isbn
9
- t.string :nbn
10
- t.string :ndc
11
- t.integer :carrier_type_id
12
- t.integer :language_id
13
-
14
- t.timestamps
15
- end
16
- end
17
- end
@@ -1,14 +0,0 @@
1
- class CreatePatrons < ActiveRecord::Migration
2
- def change
3
- create_table :patrons do |t|
4
- t.text :full_name
5
- t.text :full_name_transcription
6
- t.integer :language_id
7
- t.integer :required_role_id
8
- t.integer :patron_type_id
9
- t.integer :user_id
10
-
11
- t.timestamps
12
- end
13
- end
14
- end
@@ -1,16 +0,0 @@
1
- class CreateLanguages < ActiveRecord::Migration
2
- def change
3
- create_table :languages do |t|
4
- t.string :name
5
- t.string :native_name
6
- t.text :display_name
7
- t.string :iso_639_1
8
- t.string :iso_639_2
9
- t.string :iso_639_3
10
- t.text :note
11
- t.integer :position
12
-
13
- t.timestamps
14
- end
15
- end
16
- end
@@ -1,13 +0,0 @@
1
- module LocalizedName
2
- def localize(locale = I18n.locale.to_s)
3
- values = Hash[*self.strip.split("\n").map{|n| n.split(':', 2)}.flatten]
4
- name = values[locale.to_s] || self
5
- name.strip
6
- rescue ArgumentError
7
- self
8
- end
9
- end
10
-
11
- class String
12
- include LocalizedName
13
- end