sufia 4.0.1 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +247 -215
  3. data/README.md +7 -3
  4. data/SUFIA_VERSION +1 -1
  5. data/app/assets/javascripts/sufia.js +5 -2
  6. data/app/assets/javascripts/sufia/proxy_rights.js +68 -0
  7. data/app/assets/javascripts/sufia/transfers.js +3 -0
  8. data/app/assets/javascripts/sufia/user_search.js +31 -0
  9. data/app/assets/stylesheets/jquery-ui.css +17 -17
  10. data/app/assets/stylesheets/sufia.css.scss +3 -2
  11. data/app/assets/stylesheets/sufia/_proxy-rights.scss +10 -0
  12. data/app/controllers/concerns/sufia/contact_form_controller_behavior.rb +22 -23
  13. data/app/controllers/concerns/sufia/depositors_controller_behavior.rb +41 -0
  14. data/app/controllers/concerns/sufia/files_controller_behavior.rb +1 -0
  15. data/app/controllers/concerns/sufia/transfers_controller_behavior.rb +76 -0
  16. data/app/controllers/concerns/sufia/users_controller_behavior.rb +9 -11
  17. data/app/controllers/depositors_controller.rb +3 -0
  18. data/app/controllers/transfers_controller.rb +3 -0
  19. data/app/helpers/sufia/dashboard_helper_behavior.rb +15 -0
  20. data/app/helpers/sufia/sufia_helper_behavior.rb +24 -2
  21. data/app/jobs/content_depositor_change_event_job.rb +50 -0
  22. data/app/views/dashboard/_index_partials/_contents.html.erb +18 -0
  23. data/app/views/dashboard/_index_partials/_proxy_rights.html.erb +23 -0
  24. data/app/views/dashboard/_index_partials/_transfers.html.erb +14 -0
  25. data/app/views/generic_files/proxy.html.erb +5 -0
  26. data/app/views/generic_files/upload/_form.html.erb +7 -2
  27. data/app/views/my/_action_menu.html.erb +3 -1
  28. data/app/views/records/edit_fields/_default.html.erb +1 -1
  29. data/app/views/transfers/_received.html.erb +58 -0
  30. data/app/views/transfers/_sent.html.erb +38 -0
  31. data/app/views/transfers/index.html.erb +7 -0
  32. data/app/views/transfers/new.html.erb +23 -0
  33. data/app/views/users/_proxies.html.erb +8 -0
  34. data/app/views/users/_user_util_links_extra.html.erb +1 -0
  35. data/app/views/users/edit.html.erb +6 -1
  36. data/config/locales/sufia.en.yml +9 -4
  37. data/config/routes.rb +14 -3
  38. data/lib/sufia.rb +7 -5
  39. data/lib/sufia/version.rb +1 -1
  40. data/spec/controllers/authorities_controller_spec.rb +6 -6
  41. data/spec/controllers/batch_controller_spec.rb +29 -29
  42. data/spec/controllers/batch_edits_controller_spec.rb +7 -7
  43. data/spec/controllers/catalog_controller_spec.rb +9 -9
  44. data/spec/controllers/collections_controller_spec.rb +28 -28
  45. data/spec/controllers/content_blocks_controller_spec.rb +3 -3
  46. data/spec/controllers/dashboard_controller_spec.rb +1 -1
  47. data/spec/controllers/depositors_controller_spec.rb +50 -0
  48. data/spec/controllers/downloads_controller_spec.rb +22 -22
  49. data/spec/controllers/featured_work_lists_controller_spec.rb +1 -1
  50. data/spec/controllers/featured_works_controller_spec.rb +1 -1
  51. data/spec/controllers/generic_files_controller_spec.rb +98 -90
  52. data/spec/controllers/homepage_controller_spec.rb +1 -1
  53. data/spec/controllers/mailbox_controller_spec.rb +10 -10
  54. data/spec/controllers/my/collections_controller_spec.rb +1 -1
  55. data/spec/controllers/my/files_controller_spec.rb +1 -1
  56. data/spec/controllers/my/highlights_controller_spec.rb +1 -1
  57. data/spec/controllers/my/shares_controller_spec.rb +1 -1
  58. data/spec/controllers/my_controller_spec.rb +1 -1
  59. data/spec/controllers/pages_controller_spec.rb +1 -1
  60. data/spec/controllers/single_use_links_controller_spec.rb +46 -50
  61. data/spec/controllers/single_use_links_viewer_controller_spec.rb +16 -16
  62. data/spec/controllers/static_controller_spec.rb +9 -9
  63. data/spec/controllers/tinymce_assets_controller_spec.rb +1 -1
  64. data/spec/controllers/transfers_controller_spec.rb +212 -0
  65. data/spec/controllers/users_controller_spec.rb +1 -1
  66. data/spec/factories/generic_files.rb +4 -4
  67. data/spec/factories/proxy_deposit_requests.rb +6 -0
  68. data/spec/features/browse_dashboard_files_spec.rb +25 -36
  69. data/spec/features/browse_files_spec.rb +18 -13
  70. data/spec/features/catalog_search_spec.rb +3 -6
  71. data/spec/features/cloud_upload_spec.rb +5 -7
  72. data/spec/features/collection_spec.rb +28 -35
  73. data/spec/features/contact_form_spec.rb +24 -24
  74. data/spec/features/display_dashboard_spec.rb +11 -11
  75. data/spec/features/ingest_upload_files_spec.rb +10 -10
  76. data/spec/features/notifications_spec.rb +11 -11
  77. data/spec/features/ownership_transfer_spec.rb +111 -0
  78. data/spec/features/proxy_spec.rb +52 -0
  79. data/spec/features/search_spec.rb +1 -1
  80. data/spec/features/single_use_links_spec.rb +28 -18
  81. data/spec/features/users_spec.rb +3 -3
  82. data/spec/helpers/batch_edits_helper_spec.rb +1 -1
  83. data/spec/helpers/content_block_helper_spec.rb +1 -1
  84. data/spec/helpers/dashboard_helper_spec.rb +1 -1
  85. data/spec/helpers/generic_file_helper_spec.rb +1 -1
  86. data/spec/helpers/records_helper_spec.rb +1 -1
  87. data/spec/helpers/sufia_helper_spec.rb +8 -8
  88. data/spec/helpers/trophy_helper_spec.rb +1 -1
  89. data/spec/jobs/audit_job_spec.rb +5 -5
  90. data/spec/jobs/batch_update_job_spec.rb +14 -14
  91. data/spec/jobs/content_depositor_change_event_job_spec.rb +22 -0
  92. data/spec/jobs/event_jobs_spec.rb +104 -104
  93. data/spec/jobs/import_url_job_spec.rb +2 -2
  94. data/spec/jobs/ingest_local_file_job_spec.rb +1 -1
  95. data/spec/lib/sufia/breadcrumbs_spec.rb +3 -3
  96. data/spec/lib/sufia/id_service_spec.rb +1 -1
  97. data/spec/lib/sufia/upload_complete_behavior_spec.rb +4 -4
  98. data/spec/models/ability_spec.rb +59 -15
  99. data/spec/models/batch_spec.rb +16 -16
  100. data/spec/models/characterization_spec.rb +1 -1
  101. data/spec/models/checksum_audit_log_spec.rb +34 -26
  102. data/spec/models/collection_spec.rb +1 -1
  103. data/spec/models/download_spec.rb +1 -1
  104. data/spec/models/featured_work_list_spec.rb +1 -1
  105. data/spec/models/featured_work_spec.rb +15 -4
  106. data/spec/models/file_content_datastream_spec.rb +14 -14
  107. data/spec/models/file_usage_spec.rb +1 -1
  108. data/spec/models/fits_datastream_spec.rb +1 -1
  109. data/spec/models/generic_file/reload_on_save_spec.rb +4 -4
  110. data/spec/models/generic_file/visibility_spec.rb +1 -1
  111. data/spec/models/generic_file/web_form_spec.rb +6 -5
  112. data/spec/models/generic_file_rdf_datastream_spec.rb +1 -1
  113. data/spec/models/generic_file_spec.rb +254 -220
  114. data/spec/models/geo_names_resource_spec.rb +2 -2
  115. data/spec/models/local_authority_spec.rb +60 -59
  116. data/spec/models/pageview_spec.rb +1 -1
  117. data/spec/models/properties_datastream_spec.rb +29 -10
  118. data/spec/models/proxy_deposit_request_spec.rb +107 -0
  119. data/spec/models/single_use_link_spec.rb +13 -13
  120. data/spec/models/solr_document_spec.rb +1 -1
  121. data/spec/models/trophy_spec.rb +6 -6
  122. data/spec/models/user_spec.rb +38 -22
  123. data/spec/routing/featured_works_route_spec.rb +1 -1
  124. data/spec/routing/ownership_transfers_route_spec.rb +45 -0
  125. data/spec/routing/route_spec.rb +42 -42
  126. data/spec/services/noid_spec.rb +2 -2
  127. data/spec/spec_helper.rb +10 -5
  128. data/spec/support/cleaner.rb +12 -0
  129. data/spec/support/features.rb +5 -0
  130. data/spec/support/features/session_helpers.rb +3 -17
  131. data/spec/support/locations.rb +36 -0
  132. data/spec/support/poltergeist.rb +11 -0
  133. data/spec/support/proxies.rb +14 -0
  134. data/spec/support/selectors.rb +122 -0
  135. data/spec/views/batch/edit.html.erb_spec.rb +1 -1
  136. data/spec/views/batch_edits/check_all_spec.rb +4 -4
  137. data/spec/views/catalog/index.html.erb_spec.rb +1 -1
  138. data/spec/views/catalog/sort_and_per_page.html.erb_spec.rb +1 -1
  139. data/spec/views/collections/_form.html.erb_spec.rb +3 -1
  140. data/spec/views/collections/_show_descriptions.html.erb_spec.rb +1 -1
  141. data/spec/views/dashboard/index_spec.rb +3 -6
  142. data/spec/views/generic_file/edit.html.erb_spec.rb +1 -1
  143. data/spec/views/generic_file/show.html.erb_spec.rb +1 -1
  144. data/spec/views/generic_file/stats.html.erb_spec.rb +1 -1
  145. data/spec/views/my/facet.html.erb_spec.rb +2 -2
  146. data/spec/views/users/_follower_modal.html.erb_spec.rb +1 -1
  147. data/spec/views/users/_following_modal.html.erb_spec.rb +1 -1
  148. data/spec/views/users/_notify_number.html.erb_spec.rb +1 -1
  149. data/spec/views/users/_user_util_links.html.erb_spec.rb +1 -1
  150. data/spec/views/users/index.html.erb_spec.rb +2 -2
  151. data/spec/views/users/show.html.erb_spec.rb +2 -2
  152. data/sufia-models/app/models/concerns/sufia/ability.rb +22 -0
  153. data/sufia-models/app/models/concerns/sufia/generic_file.rb +1 -0
  154. data/sufia-models/app/models/concerns/sufia/generic_file/proxy_deposit.rb +22 -0
  155. data/sufia-models/app/models/concerns/sufia/properties_datastream_behavior.rb +3 -0
  156. data/sufia-models/app/models/concerns/sufia/user.rb +9 -0
  157. data/sufia-models/app/models/proxy_deposit_request.rb +85 -0
  158. data/sufia-models/app/models/proxy_deposit_rights.rb +4 -0
  159. data/sufia-models/app/models/sufia/avatar_uploader.rb +2 -3
  160. data/sufia-models/lib/generators/sufia/models/install_generator.rb +9 -1
  161. data/sufia-models/lib/generators/sufia/models/proxies_generator.rb +53 -0
  162. data/sufia-models/lib/generators/sufia/models/templates/migrations/create_proxy_deposit_requests.rb +16 -0
  163. data/sufia-models/lib/generators/sufia/models/templates/migrations/create_proxy_deposit_rights.rb +11 -0
  164. data/sufia-models/lib/sufia/models/engine.rb +1 -1
  165. data/sufia-models/lib/sufia/models/version.rb +1 -1
  166. data/sufia.gemspec +2 -1
  167. data/tasks/sufia-dev.rake +5 -0
  168. metadata +82 -6
  169. data/tasks/sufia-db.rake +0 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94cde4a9af3ac74adc4d40c93d00ac09089e722a
4
- data.tar.gz: b7e76559cbb876f120f28298fa5c5da6066d7f45
3
+ metadata.gz: 9889dfdd0876c8615e02e6c0bf89b9a228fd0241
4
+ data.tar.gz: 63518b2cae3e6434a98d1688ed1d7ec29cc0fbf5
5
5
  SHA512:
6
- metadata.gz: 48198ddc422d252123001f9298356fcd40a73c9417edc4df8852cfc1fa3beafb12c16422a5e7958e9918f9977e85fd1b00418864d585dda20337fb12ed8a84ad
7
- data.tar.gz: b9c83e7291e8a25a7621d884bb69ae3b8efd849b21a9318c292e43fc6d13b30c4d3c0a8c368670a1b0f9e4d8a23e62557c621f78eb4dc107f06fff2db6bebacb
6
+ metadata.gz: 07db0b9e832d7cdfd1bf4b51775f932b29537f3bb32651d06ef1a1eeecc68716350f4d1618ee098d8ca5c43c28c5a1e34759d1fd724e824a88a9ec4732dcf276
7
+ data.tar.gz: 46b8e8b75e586c01108c5e5a2456273916dffbaab674f3255735e97c6c4764fbe6b46b90cf37230d5c453fb4e9c422fffab147395f33aedc1be41d297c47e886
data/History.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # History of Sufia releases
2
2
 
3
+ ## 4.1.0
4
+
5
+ * Adds proxy deposit, "sticky" proxies, and transfers of ownership (from ScholarSphere) [mjgiarlo]
6
+ * Fixes bug with form fields attached to single-valued terms [cam156]
7
+ * Converts specs to use RSpec 3 style [mjgiarlo]
8
+
9
+ ## 4.0.1
10
+
11
+ This release contains bug fixes and css fixes found after the Sufia 4.0 release. Upgrade to Sufia 4.0 first or follow the upgrade notes for 4.0 before upgrading to 4.0.1
12
+
13
+ * Moves featured reseacher above tag cloud [mtribone]
14
+ * Adds configurable translation to HTML element for error pages [mtribone]
15
+ * Removing second call to after_ajax [Carolyn Cole]
16
+ * Changing the timeout to reference this instead of self as self is undefined and this has the id
17
+ * Make sure a few required assets are explicitly listed on the asset pipeline. This removes the runtime error.
18
+ * Creates a default resque-pool.yml so that resque can process jobs without any manual configuration [Hector Correa]
19
+ * Fixing batch processing so the clock will go away when batches finish processing [Carolyn Cole]
20
+ * Adding the created date as the start date for the google analytics query.
21
+ * Allowing the default activity time to be configurable, and to set the default to 24 hours instead of a few hours like it currently is [Carolyn Cole]
22
+ * Refactoring Audit so it uses the file already loaded in memory instead of reloading the file many times to get at the audit log records in active record [Carolyn Cole]
23
+ * Adding screen reader tags to allow the screen reader access to delete the messages [Carolyn Cole]
24
+ * Switched plain text +/- buttons with glyphicons plus/remove. Removed word 'add' from some of the buttons so that they all look the same [Hector Correa]
25
+ * Changing from file path to label since the the base file name from box is a hash code and the label has the file name [Carolyn Cole]
26
+ * Adding I18N for facet labels so we do not get "Filter my Shareds" [Carolyn Cole]
27
+ * Moving tag cloud out of sufia.js so it can be more easily overriden [Carolyn Cole]
28
+ * Adding i18n translations to the form [Carolyn Cole]
29
+ * Moves layout and styles from ScholarSphere for new user dashboard to Sufia, moves styles into sufia folder, refactors variable names for CSS [mtribone]
30
+ * Fix test for the ntriples mime-type This was changed in ActiveFedora 7.1.1 [Justin Coyne]
31
+ * Allow Actor#update_visibility to be overriden (e.g. for embargo) [Justin Coyne]
32
+ * Typo in README [Joe Atzberger]
33
+ * Use correct XACML policy file [Adam Wead]
34
+ * Using Solr 4.9 under hydra-jetty 7.1 [Adam Wead]
35
+ * Forces to require v4.x [Hector Correa]
36
+ * Moving the location of the ZeroClipboard swf load from assets to the asset_path helper so it will work correctly in production [Carolyn Cole]
37
+
3
38
  ## 4.0.0
4
39
 
5
40
  * Make batch-edit more accessible [Adam Wead]
@@ -10,7 +45,7 @@
10
45
  * Sufia::BootstrapBreadcrumbsBuilder for rendering breadcrumbs [Adam Wead]
11
46
  * Adding aria roles and screen reader labels to make the upload more understandable for the screen reader [Carolyn Cole]
12
47
  * Adds labels and ARIA hints for screen-readers [Hector Correa]
13
- * Changing to not use the path if the label has already been set. The path can be more than 255 characters which messes with Fedora [Carolyn Cole]
48
+ * Changing to not use the path if the label has already been set. The path can be more than 255 characters which messes with Fedora [Carolyn Cole]
14
49
  * Using breadcrumbs_on_rails [Adam Wead]
15
50
  * Updating my listing views to make it more usable for a screen reader [Carolyn Cole]
16
51
  * Adding check for collection so they display nicely in the gallery, instead of looking like a default document [Carolyn Cole]
@@ -126,133 +161,130 @@
126
161
  * changing to bootstrap 3 danger from important to get the red background for permissions, and fixing collection detail spacing when there is no description [Carolyn Cole]
127
162
  * Upgrade to rspec 3. Fixes #493 [Carolyn Cole]
128
163
  * Removed extraneous colons preceding key names. Fixes #516 [kerchner]
129
-
130
-
131
-
132
164
  ## 4.0.0.rc1
133
165
 
134
- * Use the bootstrap_form helpers (bootstrap_forms is no longer available) [Justin Coyne]
135
- * Lock hydra-editor to ~> 0.3.0 [Justin Coyne]
136
- * Use mailboxer 0.12.0 [Justin Coyne]
137
- * Allow hydra-head 7.1.0 to be used [Justin Coyne]
138
- * Drop no longer used submodule for hydra-jetty [Michael J. Giarlo]
139
- * Rename releasing document because reasons. [Michael J. Giarlo]
140
- * Updating release process documentation. [Michael J. Giarlo]
141
- * Moved to release notes [Michael J. Giarlo]
142
- * Changing all icons to glyph icons except the social ones because bootstrap does not include those [Carolyn Cole]
143
- * Adding missing methods to My controllers [Adam Wead]
144
- * Added additonal span and classes to fix thumbnail image hogging column and refactored HTML/CSS. fixes #SCM-9283 [Carolyn Cole]
145
- * Updating modals and fixing facet features #428 [Adam Wead]
146
- * Screen reader should say 'items' #485 [Adam Wead]
147
- * making new office document thumbnails visible. [Carolyn Cole]
148
- * Removing unused blacklight overrides. Only keeping the ones we need to change blacklight default behavior. Pinning respec to 2.99 [Carolyn Cole]
149
- * Label featured works appropriately and allow overriding this label [Michael J. Giarlo]
150
- * Creates generators to upgrade 3.7.2 instances to 4.0.0 [Michael J. Giarlo]
151
- * Refactor views to support collection links [Justin Coyne]
152
- * Removing instances of :local_js and :js_head [Adam Wead]
153
- * Noid.namespaceize should not append a second namespace onto a pid. Previously if the passed in identifier had a namespace that was not the same as the configure namespace it would append a second namespace to the identifier. This would create an invalid pid. [Justin Coyne]
154
- * Adding collections to the filter for searching. resolves #429 [Carolyn Cole]
155
- * Correcting Rails app integration issues [Adam Wead]
156
- * removing unused layout method [Carolyn Cole]
157
- * Adding bootstrap 3 modal classes to generic_file modals [Carolyn Cole]
158
- * Changing the layout for the catalog controller to always include two columns, since the homepage is now a separate controller [Carolyn Cole]
159
- * Add image/tiff as a recognized image type [Justin Coyne]
160
- * Preparing for 4.0.0.beta4 release [Justin Coyne]
161
- * Bump version to 4.0.0.beta4 [Justin Coyne]
162
- * New dashboard functionality with unified search [Adam Wead]
163
- * Uploaded and modified dates should not be included in the display of descriptive metadata [Michael J. Giarlo]
164
- * Moving repeatative html up the stack and removing hard coded labels [Carolyn Cole]
165
- * Inject Sufia::SolrDocumentBehavior with the sufia generator instead of the sufia-models generator. This keeps the module and geneator together in the same gem. [Justin Coyne]
166
- * Removing sufia route set from catalog path as it does not exist there. This causes an error in production only. [Carolyn Cole]
167
- * Fixes progress bar for jquery-file-upload [Michael J. Giarlo]
168
- * Glyphicons come with bootstrap-sass, remove this old version [Justin Coyne]
169
- * Upgrade to mailboxer 0.12.0.rc2 (from rc1) [Justin Coyne]
170
- * Updating README as per committer's call on May 19th [Adam Wead]
171
- * Index title with `_sim` suffix in addition to the existing `_tesim` suffix This enables an exact match search on title: ```ruby GenericFile.where(desc_metadata__title_tesim: 'anoabo00-00001.jp2').map {|f| f.title.first } \# => ["anoabo00-00001.jp2", "anoabo00-00002.jp2", "anoabo00-00003.jp2"] GenericFile.where(desc_metadata__title_sim: 'anoabo00-00001.jp2').map {|f| f.title.first } \# => ["anoabo00-00001.jp2"] ``` [Justin Coyne]
172
- * Fixed unified search layout and hover states. [mtribone]
173
- * Separate model noid concerns from controller noid concerns [Justin Coyne]
174
- * bump version to beta 3 [Justin Coyne]
175
- * Restore schema.org microdata to GenericFile show view; Add schema.org microdata to Collection show view; Take advantage of Blacklight's schema.org microdata hooks. [Michael J. Giarlo]
176
- * Set up all the events in the initializer [Justin Coyne]
177
- * Version bump to 4.0.0.beta3 [Justin Coyne]
178
- * Cease auto characterizing on save and use a real Actor. This makes testing far easier. Fixes #232 [Justin Coyne]
179
- * Changing the forwarding location to be where the files now are instead of where they once were. resolves #434 [Carolyn Cole]
180
- * Changing to only public works can be featured. resolves #395 [Carolyn Cole]
181
- * Fixing sytax error introduced by Ruby/Rails style reformat [Carolyn Cole]
182
- * Refactor the file controller update method for clarity [Justin Coyne]
183
- * Use modern Ruby/Rails style guidelines [Michael J. Giarlo]
184
- * Generate thumbnails for office documents [Michael J. Giarlo]
185
- * Move GenericFile concerns to standard autoload paths [Justin Coyne]
186
- * Move the event job launching out of Actions. events aren't in sufia-models [Justin Coyne]
187
- * Removed duplicate object allocations [Justin Coyne]
188
- * Eliminate double save and stop using exceptions for flow control [Justin Coyne]
189
- * Encapsulate browse_everything upload in a module [Justin Coyne]
190
- * Put revert and update actions in the Actions module [Justin Coyne]
191
- * Allow users to add files to collections. Use the Boostrap modal rather than a custom modal. [Justin Coyne]
192
- * Only put the javascript for tinymce on the page one time. This allows the javascript test to pass. [Justin Coyne]
193
- * added dashboard tabs and moved file list to those tabs [Brian Maddy]
194
- * Setting text area id and adding jquery loop to allow for multiple content blocks to be on the same page. resolves #415 [Carolyn Cole]
195
- * Query Google Analytics for file usage information and display with Flot JQuery [Adam Wead]
196
- * Moved controller concerns from lib/ to app/controllers/concerns/. [dchandekstark]
197
- * Added grid view for search results and collections view [Justin Coyne]
198
- * There is no longer two recent blocks on the home page, so clean up the home page controller to only have the one that shows all files. [Carolyn Cole]
199
- * Refactor the controllers to cleanup after the homepage_controller was added [Justin Coyne]
200
- * Adding an editable block for marketing content on the homepage header [Carolyn Cole]
201
- * Add collections [Justin Coyne]
202
- * Unify the home page search Fixes http://scm.dlt.psu.edu/issues/9142 [Justin Coyne]
203
- * Add source and bibliographicCitation DC terms to the metadata datastream [Justin Coyne]
204
- * moving homepage to it's own controller [Carolyn Cole]
205
- * added videojs fonts to precompile and made rake clean stop spring [Brian Maddy]
206
- * Version should be updated in all three locations. [Michael J. Giarlo]
207
- * add default value so config.usage_statistics is defined [Jim Coble]
208
- * Test for an XHR request, not for a javascript format [Justin Coyne]
209
- * Check to make sure BrowseEverthing is defined If you're only using sufia-models, then BrowseEverthing is not defined and you get an error. [Justin Coyne]
210
- * Ship the video-js fonts [Justin Coyne]
211
- * Allow endnote to be injected into a rails 4.0 or 4.1 file [Justin Coyne]
212
- * VirusFoundError should live in sufia-models [Justin Coyne]
213
- * Allow rails 4.1 to be used [Justin Coyne]
214
- * Modify how the pages controller and helper work so that you do not have to be logged in before viewing the page. [Carolyn Cole]
215
- * Changing to 2.1.1 to avoid the issue with 2.1.0 [cam156]
216
- * Update SUFIA_VERSION [cam156]
217
- * Update SUFIA_VERSION [cam156]
218
- * upping the version so people know the current UI changes are breaking [Carolyn Cole]
219
- * Refactor styles.css and create additional style sheets for features and sections. refs #SCM-9141 [Michael Tribone]
220
- * Template, home page, dashboard, edits to upgrade to Bootstrap3 and update look [Carolyn Cole]
221
- * Fixing dashboard facets to be bootstrap 3 compliant and updating pending dashboard test to be a passing test. [Carolyn Cole]
222
- * Upgrade mailboxer to 0.12.0.rc1 [Justin Coyne]
223
- * Drag and drop to order featured works [Justin Coyne]
224
- * [tagcloud] improving sort feature & made tagcloud properly configurable [Matt Zumwalt]
225
- * Add usage statistics to the user interface [Michael J. Giarlo]
226
- * using gsub to remove require tree, which removes javascript error in Chrome [Carolyn Cole]
227
- * Fix tests that broke as a result of a merge [Justin Coyne]
228
- * checking the frame rate as a number so 30 is equal to 30.0 [Carolyn Cole]
229
- * Re-add the generic_files stylesheet which was removed in #359 [Justin Coyne]
230
- * Use the User.to_param to craft paths. Fixes #367 [Justin Coyne]
231
- * Refactor user factories [Justin Coyne]
232
- * Add all show fields to default all_fields search in generator, so that there's a better search experience out of the box. [dchandekstark]
233
- * Initialize the javascript on page:load events for Turbolinks support [Justin Coyne]
234
- * Factor out PropertiesDatastream behavior to a concern to facilitate overriding [dchandekstark]
235
- * Add featured works to the homepage [Justin Coyne]
236
- * Refactor Trophies javascript. All trophy scripts should use the TrophyHelper#display_trophy_link Add the `trophy-class` back to the user's profile page. The script now updates the link text depending on the current state of the trophy. Trophies should work with Turbolinks now. [Justin Coyne]
237
- * Restrict rails to ~> 4.0. 4.1.0 causes errors with mailboxer [Justin Coyne]
238
- * [tagcloud] adding sort feature to tag cloud [Matt Zumwalt]
239
- * switched to ajax and jquery-based tag cloud [Matt Zumwalt]
240
- * Don't show the tinymce editor until the edit button is pushed [Justin Coyne]
241
- * Edit the about page with the TinyMCE editor [Justin Coyne]
242
- * only render tag cloud section on homepage if a blacklight query has been run. (ie don't render on login page) [Matt Zumwalt]
243
- * Added tinymce editor for featured researcher [Justin Coyne]
244
- * only render tag cloud section on homepage if a blacklight query has been run. (ie don't render on login page) [Matt Zumwalt]
245
- * Adding stylesheet and fixing login page error on layout [Carolyn Cole]
246
- * browse-everything tab uses localization for tab/button labels [Matt Zumwalt]
247
- * adding tag cloud helper and displaying it in homepage [Matt Zumwalt]
248
- * Bootstrap 3 ui changes [Carolyn Cole]
249
- * removing dropbox-specific support (replaced by browse-everything) [Matt Zumwalt]
250
- * added browse-everything for uploads [Matt Zumwalt]
251
- * Update to hydra-head 7.0.1 [Justin Coyne]
252
- * Upgrading sufia to the Blacklight 5 and Hydra-Head 7 [Carolyn Cole]
253
- * Adding a description to the all:release task so it will show up with rake -T [Carolyn Cole]
254
- * Update video.js to 4.5.1 [Justin Coyne]
255
- * Move font-awesome-sass-rails to be an internal dependency and not required in the Gemfile [Justin Coyne]
166
+ * Use the bootstrap_form helpers (bootstrap_forms is no longer available) [Justin Coyne]
167
+ * Lock hydra-editor to ~> 0.3.0 [Justin Coyne]
168
+ * Use mailboxer 0.12.0 [Justin Coyne]
169
+ * Allow hydra-head 7.1.0 to be used [Justin Coyne]
170
+ * Drop no longer used submodule for hydra-jetty [Michael J. Giarlo]
171
+ * Rename releasing document because reasons. [Michael J. Giarlo]
172
+ * Updating release process documentation. [Michael J. Giarlo]
173
+ * Moved to release notes [Michael J. Giarlo]
174
+ * Changing all icons to glyph icons except the social ones because bootstrap does not include those [Carolyn Cole]
175
+ * Adding missing methods to My controllers [Adam Wead]
176
+ * Added additonal span and classes to fix thumbnail image hogging column and refactored HTML/CSS. fixes #SCM-9283 [Carolyn Cole]
177
+ * Updating modals and fixing facet features #428 [Adam Wead]
178
+ * Screen reader should say 'items' #485 [Adam Wead]
179
+ * making new office document thumbnails visible. [Carolyn Cole]
180
+ * Removing unused blacklight overrides. Only keeping the ones we need to change blacklight default behavior. Pinning respec to 2.99 [Carolyn Cole]
181
+ * Label featured works appropriately and allow overriding this label [Michael J. Giarlo]
182
+ * Creates generators to upgrade 3.7.2 instances to 4.0.0 [Michael J. Giarlo]
183
+ * Refactor views to support collection links [Justin Coyne]
184
+ * Removing instances of :local_js and :js_head [Adam Wead]
185
+ * Noid.namespaceize should not append a second namespace onto a pid. Previously if the passed in identifier had a namespace that was not the same as the configure namespace it would append a second namespace to the identifier. This would create an invalid pid. [Justin Coyne]
186
+ * Adding collections to the filter for searching. resolves #429 [Carolyn Cole]
187
+ * Correcting Rails app integration issues [Adam Wead]
188
+ * removing unused layout method [Carolyn Cole]
189
+ * Adding bootstrap 3 modal classes to generic_file modals [Carolyn Cole]
190
+ * Changing the layout for the catalog controller to always include two columns, since the homepage is now a separate controller [Carolyn Cole]
191
+ * Add image/tiff as a recognized image type [Justin Coyne]
192
+ * Preparing for 4.0.0.beta4 release [Justin Coyne]
193
+ * Bump version to 4.0.0.beta4 [Justin Coyne]
194
+ * New dashboard functionality with unified search [Adam Wead]
195
+ * Uploaded and modified dates should not be included in the display of descriptive metadata [Michael J. Giarlo]
196
+ * Moving repeatative html up the stack and removing hard coded labels [Carolyn Cole]
197
+ * Inject Sufia::SolrDocumentBehavior with the sufia generator instead of the sufia-models generator. This keeps the module and geneator together in the same gem. [Justin Coyne]
198
+ * Removing sufia route set from catalog path as it does not exist there. This causes an error in production only. [Carolyn Cole]
199
+ * Fixes progress bar for jquery-file-upload [Michael J. Giarlo]
200
+ * Glyphicons come with bootstrap-sass, remove this old version [Justin Coyne]
201
+ * Upgrade to mailboxer 0.12.0.rc2 (from rc1) [Justin Coyne]
202
+ * Updating README as per committer's call on May 19th [Adam Wead]
203
+ * Index title with `_sim` suffix in addition to the existing `_tesim` suffix This enables an exact match search on title: ```ruby GenericFile.where(desc_metadata__title_tesim: 'anoabo00-00001.jp2').map {|f| f.title.first } \# => ["anoabo00-00001.jp2", "anoabo00-00002.jp2", "anoabo00-00003.jp2"] GenericFile.where(desc_metadata__title_sim: 'anoabo00-00001.jp2').map {|f| f.title.first } \# => ["anoabo00-00001.jp2"] ``` [Justin Coyne]
204
+ * Fixed unified search layout and hover states. [mtribone]
205
+ * Separate model noid concerns from controller noid concerns [Justin Coyne]
206
+ * bump version to beta 3 [Justin Coyne]
207
+ * Restore schema.org microdata to GenericFile show view; Add schema.org microdata to Collection show view; Take advantage of Blacklight's schema.org microdata hooks. [Michael J. Giarlo]
208
+ * Set up all the events in the initializer [Justin Coyne]
209
+ * Version bump to 4.0.0.beta3 [Justin Coyne]
210
+ * Cease auto characterizing on save and use a real Actor. This makes testing far easier. Fixes #232 [Justin Coyne]
211
+ * Changing the forwarding location to be where the files now are instead of where they once were. resolves #434 [Carolyn Cole]
212
+ * Changing to only public works can be featured. resolves #395 [Carolyn Cole]
213
+ * Fixing sytax error introduced by Ruby/Rails style reformat [Carolyn Cole]
214
+ * Refactor the file controller update method for clarity [Justin Coyne]
215
+ * Use modern Ruby/Rails style guidelines [Michael J. Giarlo]
216
+ * Generate thumbnails for office documents [Michael J. Giarlo]
217
+ * Move GenericFile concerns to standard autoload paths [Justin Coyne]
218
+ * Move the event job launching out of Actions. events aren't in sufia-models [Justin Coyne]
219
+ * Removed duplicate object allocations [Justin Coyne]
220
+ * Eliminate double save and stop using exceptions for flow control [Justin Coyne]
221
+ * Encapsulate browse_everything upload in a module [Justin Coyne]
222
+ * Put revert and update actions in the Actions module [Justin Coyne]
223
+ * Allow users to add files to collections. Use the Boostrap modal rather than a custom modal. [Justin Coyne]
224
+ * Only put the javascript for tinymce on the page one time. This allows the javascript test to pass. [Justin Coyne]
225
+ * added dashboard tabs and moved file list to those tabs [Brian Maddy]
226
+ * Setting text area id and adding jquery loop to allow for multiple content blocks to be on the same page. resolves #415 [Carolyn Cole]
227
+ * Query Google Analytics for file usage information and display with Flot JQuery [Adam Wead]
228
+ * Moved controller concerns from lib/ to app/controllers/concerns/. [dchandekstark]
229
+ * Added grid view for search results and collections view [Justin Coyne]
230
+ * There is no longer two recent blocks on the home page, so clean up the home page controller to only have the one that shows all files. [Carolyn Cole]
231
+ * Refactor the controllers to cleanup after the homepage_controller was added [Justin Coyne]
232
+ * Adding an editable block for marketing content on the homepage header [Carolyn Cole]
233
+ * Add collections [Justin Coyne]
234
+ * Unify the home page search Fixes http://scm.dlt.psu.edu/issues/9142 [Justin Coyne]
235
+ * Add source and bibliographicCitation DC terms to the metadata datastream [Justin Coyne]
236
+ * moving homepage to it's own controller [Carolyn Cole]
237
+ * added videojs fonts to precompile and made rake clean stop spring [Brian Maddy]
238
+ * Version should be updated in all three locations. [Michael J. Giarlo]
239
+ * add default value so config.usage_statistics is defined [Jim Coble]
240
+ * Test for an XHR request, not for a javascript format [Justin Coyne]
241
+ * Check to make sure BrowseEverthing is defined If you're only using sufia-models, then BrowseEverthing is not defined and you get an error. [Justin Coyne]
242
+ * Ship the video-js fonts [Justin Coyne]
243
+ * Allow endnote to be injected into a rails 4.0 or 4.1 file [Justin Coyne]
244
+ * VirusFoundError should live in sufia-models [Justin Coyne]
245
+ * Allow rails 4.1 to be used [Justin Coyne]
246
+ * Modify how the pages controller and helper work so that you do not have to be logged in before viewing the page. [Carolyn Cole]
247
+ * Changing to 2.1.1 to avoid the issue with 2.1.0 [cam156]
248
+ * Update SUFIA_VERSION [cam156]
249
+ * Update SUFIA_VERSION [cam156]
250
+ * upping the version so people know the current UI changes are breaking [Carolyn Cole]
251
+ * Refactor styles.css and create additional style sheets for features and sections. refs #SCM-9141 [Michael Tribone]
252
+ * Template, home page, dashboard, edits to upgrade to Bootstrap3 and update look [Carolyn Cole]
253
+ * Fixing dashboard facets to be bootstrap 3 compliant and updating pending dashboard test to be a passing test. [Carolyn Cole]
254
+ * Upgrade mailboxer to 0.12.0.rc1 [Justin Coyne]
255
+ * Drag and drop to order featured works [Justin Coyne]
256
+ * [tagcloud] improving sort feature & made tagcloud properly configurable [Matt Zumwalt]
257
+ * Add usage statistics to the user interface [Michael J. Giarlo]
258
+ * using gsub to remove require tree, which removes javascript error in Chrome [Carolyn Cole]
259
+ * Fix tests that broke as a result of a merge [Justin Coyne]
260
+ * checking the frame rate as a number so 30 is equal to 30.0 [Carolyn Cole]
261
+ * Re-add the generic_files stylesheet which was removed in #359 [Justin Coyne]
262
+ * Use the User.to_param to craft paths. Fixes #367 [Justin Coyne]
263
+ * Refactor user factories [Justin Coyne]
264
+ * Add all show fields to default all_fields search in generator, so that there's a better search experience out of the box. [dchandekstark]
265
+ * Initialize the javascript on page:load events for Turbolinks support [Justin Coyne]
266
+ * Factor out PropertiesDatastream behavior to a concern to facilitate overriding [dchandekstark]
267
+ * Add featured works to the homepage [Justin Coyne]
268
+ * Refactor Trophies javascript. All trophy scripts should use the TrophyHelper#display_trophy_link Add the `trophy-class` back to the user's profile page. The script now updates the link text depending on the current state of the trophy. Trophies should work with Turbolinks now. [Justin Coyne]
269
+ * Restrict rails to ~> 4.0. 4.1.0 causes errors with mailboxer [Justin Coyne]
270
+ * [tagcloud] adding sort feature to tag cloud [Matt Zumwalt]
271
+ * switched to ajax and jquery-based tag cloud [Matt Zumwalt]
272
+ * Don't show the tinymce editor until the edit button is pushed [Justin Coyne]
273
+ * Edit the about page with the TinyMCE editor [Justin Coyne]
274
+ * only render tag cloud section on homepage if a blacklight query has been run. (ie don't render on login page) [Matt Zumwalt]
275
+ * Added tinymce editor for featured researcher [Justin Coyne]
276
+ * only render tag cloud section on homepage if a blacklight query has been run. (ie don't render on login page) [Matt Zumwalt]
277
+ * Adding stylesheet and fixing login page error on layout [Carolyn Cole]
278
+ * browse-everything tab uses localization for tab/button labels [Matt Zumwalt]
279
+ * adding tag cloud helper and displaying it in homepage [Matt Zumwalt]
280
+ * Bootstrap 3 ui changes [Carolyn Cole]
281
+ * removing dropbox-specific support (replaced by browse-everything) [Matt Zumwalt]
282
+ * added browse-everything for uploads [Matt Zumwalt]
283
+ * Update to hydra-head 7.0.1 [Justin Coyne]
284
+ * Upgrading sufia to the Blacklight 5 and Hydra-Head 7 [Carolyn Cole]
285
+ * Adding a description to the all:release task so it will show up with rake -T [Carolyn Cole]
286
+ * Update video.js to 4.5.1 [Justin Coyne]
287
+ * Move font-awesome-sass-rails to be an internal dependency and not required in the Gemfile [Justin Coyne]
256
288
  * Clean up spacing [Justin Coyne]
257
289
 
258
290
  ## 3.7.0
@@ -273,10 +305,10 @@
273
305
  - Added note that fits can be installed with homebrew (and may require adding a symlink)
274
306
  [David Chandek-Stark]
275
307
  * Upgrade blacklight to 4.6 [Justin Coyne]
276
- * Allowing the link to either be sufia based or blacklight based [Carolyn Cole]
277
- * Removing extra_head_content, and paginate deprication warnings [Carolyn Cole]
278
- * Remove deprecated method paginate_rsolr_response. Fixes #312 [Justin Coyne]
279
- * Moving single use link java script into asset pipeline. [Carolyn Cole]
308
+ * Allowing the link to either be sufia based or blacklight based [Carolyn Cole]
309
+ * Removing extra_head_content, and paginate deprication warnings [Carolyn Cole]
310
+ * Remove deprecated method paginate_rsolr_response. Fixes #312 [Justin Coyne]
311
+ * Moving single use link java script into asset pipeline. [Carolyn Cole]
280
312
  * Update to blacklight 4.7 [Justin Coyne]
281
313
  * Modifying how zclip works when a flash player is not present, since t… … [Carolyn Cole]
282
314
  * Upgrading video.js to the latest version so it will work in firefox, … … [Carolyn Cole]
@@ -286,7 +318,7 @@
286
318
  ## 3.6.0
287
319
 
288
320
  ## 3.4.0
289
-
321
+
290
322
  * Handle facets with 3 or more words [Jeremy Friesen]
291
323
  * Fixed show links in Users#index [Andrew Curley]
292
324
  * Update to AF 6.7.0 [Justin Coyne]
@@ -323,11 +355,11 @@
323
355
  * Fix typos in README.md [Jessie Keck]
324
356
 
325
357
  ## 3.2.1
326
-
358
+
327
359
  * Updating gemspec to not limit on sufia-models [Jeremy Friesen]
328
360
 
329
361
  ## 3.2.0 - YANKED
330
-
362
+
331
363
  * Including on sufia-models subdir in gemspec [Jeremy Friesen]
332
364
  * Restoring the exception catching for migrations [Jeremy Friesen]
333
365
  * Publicizing #visibility_changed? [Jeremy Friesen]
@@ -339,7 +371,7 @@
339
371
 
340
372
  * Removed old PSU licence [Justin Coyne]
341
373
  * Moved access rights from curate [Justin Coyne]
342
- * Adding an operride path where to redirect for when a file gets destroyed. [Carolyn Cole]
374
+ * Adding an operride path where to redirect for when a file gets destroyed. [Carolyn Cole]
343
375
  * Use the deprecation settings on the correct module [Justin Coyne]
344
376
 
345
377
  ## 3.1.2
@@ -359,91 +391,91 @@
359
391
 
360
392
  ## 3.1.0
361
393
 
362
- * Make fits instructions more verbose [Carolyn Cole]
363
- * Adding one location to define/ override where the upload redirects to after a sucessfull upload [Carolyn Cole]
364
- * Added license to the gemspec [Justin Coyne]
365
- * fixed typo in require statement [Matt Zumwalt]
366
- * requires active_resource more cleanly [Matt Zumwalt]
367
- * updating facet views so that the blacklight helper_method will get called [Carolyn Cole]
368
- * Adds a spec for the ImportUrlJob [Michael J. Giarlo]
369
- * Fixed expecations for travis tests for #169 [Justin Coyne]
370
- * ModelMethods#apply_depositor_metadata should accept a user or a string like the method it overrides in HydraHead. See: https://github.com/projecthydra/hydra-head/blob/9a5b2728be2046125d09376a6d78ad06d26548c3/hydra-core/lib/hydra/model_methods.rb#L12 [Justin Coyne]
371
- * Remove expand_path jazz from remaining specs [Michael J. Giarlo]
372
- * Codifying a pid based job [Jeremy Friesen]
373
- * Removing characterization save unless new_object? [Jeremy Friesen]
374
- * Adding $LOAD_PATH variable to dev rake task [Jeremy Friesen]
375
- * Bump dependency on hydra-derivatives [Justin Coyne]
376
- * Use add_file() rather than add_file_datastream() to ensure object label is set [Michael J. Giarlo]
377
- * Audio and video transcoding with hydra-derivatives [Justin Coyne]
378
- * Use hydra-derivatives for generating thumbnails [Justin Coyne]
379
- * ingest_local_file should ingest the file, not the filename [Justin Coyne]
380
- * Including deposit agreement on local import page [Matt Zumwalt]
381
- * UI for local ingest only appears in local ingest tab on upload page [Matt Zumwalt]
382
- * Putting test coverage for virus check into the right place [Matt Zumwalt]
383
- * local file ingest runs virus check [Matt Zumwalt]
384
- * testing outputs without relying on consistent array ordering [Matt Zumwalt]
385
- * UI text changes for local ingest [Matt Zumwalt]
386
- * removing unused fixtures [Matt Zumwalt]
387
- * cleanup of tests and method names around local ingest [Matt Zumwalt]
388
- * Display local ingest tab in Upload page when local import enabled [Matt Zumwalt]
389
- * Local ingest renders graceful error message if User does not define a directory path [Matt Zumwalt]
390
- * fixing scope of describe blocks in this test [Matt Zumwalt]
391
- * LocalFileIngestBehavior for FilesController [Matt Zumwalt]
392
- * The generator should create config/initializers/resque_config.rb [Justin Coyne]
393
- * Reindex everything scopes to sufia's namespace [Jeremy Friesen]
394
+ * Make fits instructions more verbose [Carolyn Cole]
395
+ * Adding one location to define/ override where the upload redirects to after a sucessfull upload [Carolyn Cole]
396
+ * Added license to the gemspec [Justin Coyne]
397
+ * fixed typo in require statement [Matt Zumwalt]
398
+ * requires active_resource more cleanly [Matt Zumwalt]
399
+ * updating facet views so that the blacklight helper_method will get called [Carolyn Cole]
400
+ * Adds a spec for the ImportUrlJob [Michael J. Giarlo]
401
+ * Fixed expecations for travis tests for #169 [Justin Coyne]
402
+ * ModelMethods#apply_depositor_metadata should accept a user or a string like the method it overrides in HydraHead. See: https://github.com/projecthydra/hydra-head/blob/9a5b2728be2046125d09376a6d78ad06d26548c3/hydra-core/lib/hydra/model_methods.rb#L12 [Justin Coyne]
403
+ * Remove expand_path jazz from remaining specs [Michael J. Giarlo]
404
+ * Codifying a pid based job [Jeremy Friesen]
405
+ * Removing characterization save unless new_object? [Jeremy Friesen]
406
+ * Adding $LOAD_PATH variable to dev rake task [Jeremy Friesen]
407
+ * Bump dependency on hydra-derivatives [Justin Coyne]
408
+ * Use add_file() rather than add_file_datastream() to ensure object label is set [Michael J. Giarlo]
409
+ * Audio and video transcoding with hydra-derivatives [Justin Coyne]
410
+ * Use hydra-derivatives for generating thumbnails [Justin Coyne]
411
+ * ingest_local_file should ingest the file, not the filename [Justin Coyne]
412
+ * Including deposit agreement on local import page [Matt Zumwalt]
413
+ * UI for local ingest only appears in local ingest tab on upload page [Matt Zumwalt]
414
+ * Putting test coverage for virus check into the right place [Matt Zumwalt]
415
+ * local file ingest runs virus check [Matt Zumwalt]
416
+ * testing outputs without relying on consistent array ordering [Matt Zumwalt]
417
+ * UI text changes for local ingest [Matt Zumwalt]
418
+ * removing unused fixtures [Matt Zumwalt]
419
+ * cleanup of tests and method names around local ingest [Matt Zumwalt]
420
+ * Display local ingest tab in Upload page when local import enabled [Matt Zumwalt]
421
+ * Local ingest renders graceful error message if User does not define a directory path [Matt Zumwalt]
422
+ * fixing scope of describe blocks in this test [Matt Zumwalt]
423
+ * LocalFileIngestBehavior for FilesController [Matt Zumwalt]
424
+ * The generator should create config/initializers/resque_config.rb [Justin Coyne]
425
+ * Reindex everything scopes to sufia's namespace [Jeremy Friesen]
394
426
  * Remove css that doesn't appear to be used [Justin Coyne]
395
427
 
396
428
  ## 3.0.0
397
429
 
398
- * Update README.md paths for Sufia assets application.css and application.js [Jim Coble]
399
- * Moving resque rake task to sufia-models [Jeremy Friesen]
400
- * Resque should use the redis instance configured in redis.yml [Justin Coyne]
401
- * Profile link should generate a valid route. Fixes #150 [Justin Coyne]
402
- * Updating CONTRIBUTING.md as per Hydra v6.0.0 [Jeremy Friesen]
403
- * Delete all needs a delete HTTP method [Justin Coyne]
404
- * Put the specific version of kaminari we need into the test app [Justin Coyne]
405
- * Removed deprecated use of mock() and stub() [Justin Coyne]
406
- * Simpler rspec run [Justin Coyne]
407
- * Fix routing spec [Justin Coyne]
408
- * Replaced cucumber with feature specs [Justin Coyne]
409
- * Use resourceful routes for users [Justin Coyne]
410
- * Removed duplicate tasks [Justin Coyne]
411
- * Switch require spec_helper to relative [Justin Coyne]
412
- * Support rspec-rails 2.14 [Justin Coyne]
413
- * Removed empty tests [Justin Coyne]
414
- * Correct path for fonts [Justin Coyne]
415
- * Use assets_path [Justin Coyne]
416
- * Fix path to fixtures.rake [Justin Coyne]
417
- * Add active_resource as a dependency [Justin Coyne]
418
- * Distinct on notify_number is unnecessary [Justin Coyne]
419
- * check all view, should supply the controller [Justin Coyne]
420
- * Removed unused spec [Justin Coyne]
421
- * Fixed path to rakefile [Justin Coyne]
422
- * Fix test to work in an order independent manner [Justin Coyne]
423
- * Single Use links should be randomly generated [Justin Coyne]
424
- * Update paperclip gem [Justin Coyne]
425
- * Handle attributes in a way that works with rails 3 or 4 [Justin Coyne]
426
- * Fixed view spec [Justin Coyne]
427
- * Devise is not required by sufia-models [Justin Coyne]
428
- * Inherit the version of devise from blacklight [Justin Coyne]
429
- * Move to a released version of blacklight_advanced_search [Justin Coyne]
430
- * Rails 4 support [Justin Coyne]
431
- * updating the readme based on mye experience running through it. [Carolyn Cole]
432
- * The query for my uploads, should be me, not exclude me [Justin Coyne]
433
- * Multiform should rename the fields correctly [Justin Coyne]
434
- * more explicit editable docs test [Matt Zumwalt]
435
- * Dashboard search results test more specific -- avoids pagination causing false negatives [Matt Zumwalt]
436
- * explicit handling of kaminari pagination bug, plus info in install docs [Matt Zumwalt]
437
- * Test to confirm that pagination works -- fails because dashboard/pages routes are not properly inherited. [Matt Zumwalt]
438
- * Handle the odd values in the hidden fields on the generic_files/_permission.html.erb form. These were added here: https://github.com/psu-stewardship/scholarsphere/commit/2a58d0c920cc87cad9a815b451613e3d327747e3#L9R5 I have no idea why. [Justin Coyne]
439
- * Add a comment in the generator about the Sufia route being the very last line [Justin Coyne]
440
- * Generated controller uses the search_layout method for determining layout [Justin Coyne]
441
- * Force a two column layout for dashboard [Justin Coyne]
442
- * Use hydra-head 6.3.0 [Justin Coyne]
443
- * Bump active-fedora version to 6.4.0.rc4 [Justin Coyne]
444
- * allowing non-sufia controllers to inherit dashboard behaviors and helpers smoothly [Matt Zumwalt]
445
- * Set a permission value that actually exists (e.g. 'read') [Justin Coyne]
446
- * Added attr_accessible [Justin Coyne]
430
+ * Update README.md paths for Sufia assets application.css and application.js [Jim Coble]
431
+ * Moving resque rake task to sufia-models [Jeremy Friesen]
432
+ * Resque should use the redis instance configured in redis.yml [Justin Coyne]
433
+ * Profile link should generate a valid route. Fixes #150 [Justin Coyne]
434
+ * Updating CONTRIBUTING.md as per Hydra v6.0.0 [Jeremy Friesen]
435
+ * Delete all needs a delete HTTP method [Justin Coyne]
436
+ * Put the specific version of kaminari we need into the test app [Justin Coyne]
437
+ * Removed deprecated use of mock() and stub() [Justin Coyne]
438
+ * Simpler rspec run [Justin Coyne]
439
+ * Fix routing spec [Justin Coyne]
440
+ * Replaced cucumber with feature specs [Justin Coyne]
441
+ * Use resourceful routes for users [Justin Coyne]
442
+ * Removed duplicate tasks [Justin Coyne]
443
+ * Switch require spec_helper to relative [Justin Coyne]
444
+ * Support rspec-rails 2.14 [Justin Coyne]
445
+ * Removed empty tests [Justin Coyne]
446
+ * Correct path for fonts [Justin Coyne]
447
+ * Use assets_path [Justin Coyne]
448
+ * Fix path to fixtures.rake [Justin Coyne]
449
+ * Add active_resource as a dependency [Justin Coyne]
450
+ * Distinct on notify_number is unnecessary [Justin Coyne]
451
+ * check all view, should supply the controller [Justin Coyne]
452
+ * Removed unused spec [Justin Coyne]
453
+ * Fixed path to rakefile [Justin Coyne]
454
+ * Fix test to work in an order independent manner [Justin Coyne]
455
+ * Single Use links should be randomly generated [Justin Coyne]
456
+ * Update paperclip gem [Justin Coyne]
457
+ * Handle attributes in a way that works with rails 3 or 4 [Justin Coyne]
458
+ * Fixed view spec [Justin Coyne]
459
+ * Devise is not required by sufia-models [Justin Coyne]
460
+ * Inherit the version of devise from blacklight [Justin Coyne]
461
+ * Move to a released version of blacklight_advanced_search [Justin Coyne]
462
+ * Rails 4 support [Justin Coyne]
463
+ * updating the readme based on mye experience running through it. [Carolyn Cole]
464
+ * The query for my uploads, should be me, not exclude me [Justin Coyne]
465
+ * Multiform should rename the fields correctly [Justin Coyne]
466
+ * more explicit editable docs test [Matt Zumwalt]
467
+ * Dashboard search results test more specific -- avoids pagination causing false negatives [Matt Zumwalt]
468
+ * explicit handling of kaminari pagination bug, plus info in install docs [Matt Zumwalt]
469
+ * Test to confirm that pagination works -- fails because dashboard/pages routes are not properly inherited. [Matt Zumwalt]
470
+ * Handle the odd values in the hidden fields on the generic_files/_permission.html.erb form. These were added here: https://github.com/psu-stewardship/scholarsphere/commit/2a58d0c920cc87cad9a815b451613e3d327747e3#L9R5 I have no idea why. [Justin Coyne]
471
+ * Add a comment in the generator about the Sufia route being the very last line [Justin Coyne]
472
+ * Generated controller uses the search_layout method for determining layout [Justin Coyne]
473
+ * Force a two column layout for dashboard [Justin Coyne]
474
+ * Use hydra-head 6.3.0 [Justin Coyne]
475
+ * Bump active-fedora version to 6.4.0.rc4 [Justin Coyne]
476
+ * allowing non-sufia controllers to inherit dashboard behaviors and helpers smoothly [Matt Zumwalt]
477
+ * Set a permission value that actually exists (e.g. 'read') [Justin Coyne]
478
+ * Added attr_accessible [Justin Coyne]
447
479
  * Fix the version in sufia-models.gemspec so you can bundle install [Justin Coyne]
448
480
 
449
481
  ## 2.0.1