sufia 4.0.0.rc2 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +443 -621
  3. data/LICENSE.md +11 -174
  4. data/README.md +21 -7
  5. data/SUFIA_VERSION +1 -1
  6. data/app/assets/javascripts/sufia/batch.js +7 -2
  7. data/app/assets/javascripts/sufia/dashboard_actions.js +21 -10
  8. data/app/assets/javascripts/terms_of_service.js +1 -1
  9. data/app/assets/stylesheets/batch-edit.css.scss +21 -0
  10. data/app/assets/stylesheets/collections.css.scss +4 -0
  11. data/app/assets/stylesheets/home-page.css.scss +8 -1
  12. data/app/assets/stylesheets/styles.css.scss +8 -5
  13. data/app/assets/stylesheets/sufia.css.scss +1 -0
  14. data/app/builders/sufia/bootstrap_breadcrumbs_builder.rb +28 -0
  15. data/app/controllers/collections_controller.rb +2 -0
  16. data/app/controllers/concerns/sufia/batch_edits_controller_behavior.rb +3 -1
  17. data/app/controllers/concerns/sufia/breadcrumbs.rb +41 -0
  18. data/app/controllers/concerns/sufia/files_controller_behavior.rb +3 -1
  19. data/app/controllers/concerns/sufia/homepage_controller.rb +1 -1
  20. data/app/helpers/sufia/blacklight_override.rb +1 -1
  21. data/app/helpers/sufia/records_helper_behavior.rb +19 -5
  22. data/app/helpers/sufia/sufia_helper_behavior.rb +13 -6
  23. data/app/models/concerns/sufia/solr_document_behavior.rb +4 -0
  24. data/app/views/_user_util_links.html.erb +4 -2
  25. data/app/views/batch/_metadata.html.erb +25 -31
  26. data/app/views/batch/_more_metadata.html.erb +6 -5
  27. data/app/views/batch/edit.html.erb +3 -3
  28. data/app/views/batch_edits/edit.html.erb +1 -1
  29. data/app/views/catalog/_search_form.html.erb +1 -3
  30. data/app/views/collections/_form_for_select_collection.html.erb +6 -3
  31. data/app/views/collections/_show_actions.html.erb +2 -2
  32. data/app/views/collections/edit.html.erb +1 -3
  33. data/app/views/collections/show.html.erb +1 -2
  34. data/app/views/generic_files/_field_form.html.erb +3 -3
  35. data/app/views/generic_files/_permission_form.html.erb +20 -3
  36. data/app/views/generic_files/edit.html.erb +1 -1
  37. data/app/views/generic_files/new.html.erb +8 -7
  38. data/app/views/generic_files/show.html.erb +1 -1
  39. data/app/views/generic_files/stats.html.erb +1 -1
  40. data/app/views/generic_files/upload/_form_fields.html.erb +4 -4
  41. data/app/views/homepage/_featured_fields.html.erb +20 -18
  42. data/app/views/homepage/_home_content.html.erb +8 -7
  43. data/app/views/homepage/_recent_document.html.erb +3 -4
  44. data/app/views/homepage/_recents.html.erb +4 -1
  45. data/app/views/homepage/_tagcloud.html.erb +5 -4
  46. data/app/views/kaminari/blacklight_compact/_paginator.html.erb +23 -0
  47. data/app/views/my/_action_menu.html.erb +15 -12
  48. data/app/views/my/_collection_action_menu.html.erb +8 -6
  49. data/app/views/my/_facets.html.erb +1 -1
  50. data/app/views/my/_index_partials/_default_group.html.erb +1 -1
  51. data/app/views/my/_index_partials/_list_collections.html.erb +12 -6
  52. data/app/views/my/_index_partials/_list_files.html.erb +14 -6
  53. data/app/views/my/index.html.erb +7 -2
  54. data/app/views/records/edit_fields/_suffix.html.erb +0 -1
  55. data/app/views/shared/_attributes.html.erb +6 -6
  56. data/app/views/users/_notify_link.html.erb +1 -0
  57. data/app/views/users/_notify_number.html.erb +3 -2
  58. data/config/locales/sufia.en.yml +24 -4
  59. data/lib/sufia.rb +2 -0
  60. data/lib/sufia/version.rb +1 -1
  61. data/spec/actors/generic_file/actor_spec.rb +21 -2
  62. data/spec/controllers/batch_controller_spec.rb +3 -3
  63. data/spec/controllers/batch_edits_controller_spec.rb +4 -0
  64. data/spec/controllers/catalog_controller_spec.rb +3 -3
  65. data/spec/controllers/collections_controller_spec.rb +5 -1
  66. data/spec/controllers/generic_files_controller_spec.rb +21 -4
  67. data/spec/controllers/homepage_controller_spec.rb +8 -1
  68. data/spec/features/browse_dashboard_files_spec.rb +1 -1
  69. data/spec/features/collection_spec.rb +3 -3
  70. data/spec/helpers/records_helper_spec.rb +53 -25
  71. data/spec/jobs/import_url_job_spec.rb +2 -1
  72. data/spec/lib/sufia/breadcrumbs_spec.rb +80 -0
  73. data/spec/lib/sufia/messages_spec.rb +8 -1
  74. data/spec/models/characterization_spec.rb +23 -0
  75. data/spec/models/fits_datastream_spec.rb +20 -23
  76. data/spec/support/features/session_helpers.rb +1 -1
  77. data/spec/views/catalog/index.html.erb_spec.rb +2 -0
  78. data/spec/views/generic_file/stats.html.erb_spec.rb +0 -6
  79. data/spec/views/users/show.html.erb_spec.rb +19 -0
  80. data/sufia-models/app/actors/sufia/generic_file/actor.rb +2 -1
  81. data/sufia-models/app/models/concerns/sufia/generic_file/characterization.rb +3 -4
  82. data/sufia-models/app/models/concerns/sufia/generic_file/full_text_indexing.rb +21 -14
  83. data/sufia-models/app/models/concerns/sufia/generic_file/mime_types.rb +4 -0
  84. data/sufia-models/app/models/file_usage.rb +6 -2
  85. data/sufia-models/lib/sufia/models/version.rb +1 -1
  86. data/sufia.gemspec +1 -0
  87. metadata +28 -9
  88. data/app/views/generic_files/_breadcrumbs.html.erb +0 -31
  89. data/spec/views/generic_file/_breadcrumbs.html.erb_spec.rb +0 -32
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88a671be1433e1c547df206f1ebb565b0f9f7f35
4
- data.tar.gz: 4c2809c2f8252ba717431ecc9d32816722916d8e
3
+ metadata.gz: 7e25d6a2061799097aceb639c5c6a2cb2b441a9d
4
+ data.tar.gz: b85a69100f5df8ab5e5feaebcdd13b1e1d128e4c
5
5
  SHA512:
6
- metadata.gz: c94f29af9b894337d7c6b6222c8371e3671b13aeb1d8d1fde54acb3858ca231b123102c3e452b23bc4c88339bcc7e0fe0c12f44bf6c76f8c3fa3e83578bee8c0
7
- data.tar.gz: 5622829fa0cd2330279dad596a89cf01988e5865f86b4f05a2ccf375aaf7985d463215bdb1f3bc38fedb470dce6e9ec5c1652a96d430a4a9b9798bfbc508ad3b
6
+ metadata.gz: 71e4fd203970d9dac7cacdba50650a85dced73234304f8f413ce27efc27d3795a0ec2b3b9e4a113209dc75bb5f5ba497ff2371d02e6764b820a6f1e86be2482a
7
+ data.tar.gz: 1100a5c6297ee9bf8a00fef6a7c7cc8d8adc18007521f3b0286041e1297af65e567b4332c32301144bd4ca14f4234723c4d092919baa128f7a21f95db83a4c21
data/History.md CHANGED
@@ -1,670 +1,492 @@
1
1
  # History of Sufia releases
2
2
 
3
- ## 4.0.0.rc1
4
-
5
- * Use the bootstrap_form helpers (bootstrap_forms is no longer
6
- available) [Justin Coyne]
7
-
8
- * Lock hydra-editor to ~> 0.3.0 [Justin Coyne]
9
-
10
- * Use mailboxer 0.12.0 [Justin Coyne]
11
-
12
- * Allow hydra-head 7.1.0 to be used [Justin Coyne]
13
-
14
- * Drop no longer used submodule for hydra-jetty [Michael J. Giarlo]
15
-
16
- * Rename releasing document because reasons. [Michael J. Giarlo]
17
-
18
- * Updating release process documentation. [Michael J. Giarlo]
19
-
20
- * Moved to release notes [Michael J. Giarlo]
21
-
22
- * Changing all icons to glyph icons except the social ones because
23
- bootstrap does not include those [Carolyn Cole]
24
-
25
- * Adding missing methods to My controllers [Adam Wead]
26
-
27
- * Added additonal span and classes to fix thumbnail image hogging
28
- column and refactored HTML/CSS. fixes #SCM-9283 [Carolyn Cole]
29
-
30
- * Updating modals and fixing facet features #428 [Adam Wead]
31
-
32
- * Screen reader should say 'items' #485 [Adam Wead]
33
-
34
- * making new office document thumbnails visible. [Carolyn Cole]
35
-
36
- * Removing unused blacklight overrides. Only keeping the ones we need
37
- to change blacklight default behavior. Pinning respec to 2.99 [Carolyn Cole]
38
-
39
- * Label featured works appropriately and allow overriding this label
40
- [Michael J. Giarlo]
41
-
42
- * Creates generators to upgrade 3.7.2 instances to 4.0.0 [Michael J.
43
- Giarlo]
44
-
45
- * Refactor views to support collection links [Justin Coyne]
46
-
47
- * Removing instances of :local_js and :js_head [Adam Wead]
48
-
49
- * Noid.namespaceize should not append a second namespace onto a pid.
50
- Previously if the passed in identifier had a namespace that was not the same as
51
- the configure namespace it would append a second namespace to the identifier.
52
- This would create an invalid pid. [Justin Coyne]
53
-
54
- * Adding collections to the filter for searching. resolves #429
55
- [Carolyn Cole]
56
-
57
- * Correcting Rails app integration issues [Adam Wead]
58
-
59
- * removing unused layout method [Carolyn Cole]
60
-
61
- * Adding bootstrap 3 modal classes to generic_file modals [Carolyn
62
- Cole]
63
-
64
- * Changing the layout for the catalog controller to always include two
65
- columns, since the homepage is now a separate controller [Carolyn Cole]
66
-
67
- * Add image/tiff as a recognized image type [Justin Coyne]
68
-
69
- * Preparing for 4.0.0.beta4 release [Justin Coyne]
70
-
71
- * Bump version to 4.0.0.beta4 [Justin Coyne]
72
-
73
- * New dashboard functionality with unified search [Adam Wead]
74
-
75
- * Uploaded and modified dates should not be included in the display of
76
- descriptive metadata [Michael J. Giarlo]
77
-
78
- * Moving repeatative html up the stack and removing hard coded labels
79
- [Carolyn Cole]
80
-
81
- * Inject Sufia::SolrDocumentBehavior with the sufia generator instead
82
- of the sufia-models generator. This keeps the module and geneator together in
83
- the same gem. [Justin Coyne]
84
-
85
- * Removing sufia route set from catalog path as it does not exist
86
- there. This causes an error in production only. [Carolyn Cole]
87
-
88
- * Fixes progress bar for jquery-file-upload [Michael J. Giarlo]
89
-
90
- * Glyphicons come with bootstrap-sass, remove this old version [Justin
91
- Coyne]
92
-
93
- * Upgrade to mailboxer 0.12.0.rc2 (from rc1) [Justin Coyne]
94
-
95
- * Updating README as per committer's call on May 19th [Adam Wead]
96
-
97
- * Index title with `_sim` suffix in addition to the existing `_tesim`
98
- suffix This enables an exact match search on title: ```ruby
99
- GenericFile.where(desc_metadata__title_tesim: 'anoabo00-00001.jp2').map {|f|
100
- f.title.first } \# => ["anoabo00-00001.jp2", "anoabo00-00002.jp2",
101
- "anoabo00-00003.jp2"] GenericFile.where(desc_metadata__title_sim:
102
- 'anoabo00-00001.jp2').map {|f| f.title.first } \# => ["anoabo00-00001.jp2"] ```
103
- [Justin Coyne]
104
-
105
- * Fixed unified search layout and hover states. [mtribone]
106
-
107
- * Separate model noid concerns from controller noid concerns [Justin
108
- Coyne]
109
-
110
- * bump version to beta 3 [Justin Coyne]
111
-
112
- * Restore schema.org microdata to GenericFile show view; Add
113
- schema.org microdata to Collection show view; Take advantage of Blacklight's
114
- schema.org microdata hooks. [Michael J. Giarlo]
115
-
116
- * Set up all the events in the initializer [Justin Coyne]
117
-
118
- * Version bump to 4.0.0.beta3 [Justin Coyne]
119
-
120
- * Cease auto characterizing on save and use a real Actor. This makes
121
- testing far easier. Fixes #232 [Justin Coyne]
122
-
123
- * Changing the forwarding location to be where the files now are
124
- instead of where they once were. resolves #434 [Carolyn Cole]
125
-
126
- * Changing to only public works can be featured. resolves #395
127
- [Carolyn Cole]
128
-
129
- * Fixing sytax error introduced by Ruby/Rails style reformat [Carolyn
130
- Cole]
131
-
132
- * Refactor the file controller update method for clarity [Justin
133
- Coyne]
134
-
135
- * Use modern Ruby/Rails style guidelines [Michael J. Giarlo]
136
-
137
- * Generate thumbnails for office documents [Michael J. Giarlo]
138
-
139
- * Move GenericFile concerns to standard autoload paths [Justin Coyne]
140
-
141
- * Move the event job launching out of Actions. events aren't in
142
- sufia-models [Justin Coyne]
143
-
144
- * Removed duplicate object allocations [Justin Coyne]
145
-
146
- * Eliminate double save and stop using exceptions for flow control
147
- [Justin Coyne]
148
-
149
- * Encapsulate browse_everything upload in a module [Justin Coyne]
150
-
151
- * Put revert and update actions in the Actions module [Justin Coyne]
152
-
153
- * Allow users to add files to collections. Use the Boostrap modal
154
- rather than a custom modal. [Justin Coyne]
155
-
156
- * Only put the javascript for tinymce on the page one time. This
157
- allows the javascript test to pass. [Justin Coyne]
158
-
159
- * added dashboard tabs and moved file list to those tabs [Brian Maddy]
160
-
161
- * Setting text area id and adding jquery loop to allow for multiple
162
- content blocks to be on the same page. resolves #415 [Carolyn Cole]
163
-
164
- * Query Google Analytics for file usage information and display with
165
- Flot JQuery [Adam Wead]
166
-
167
- * Moved controller concerns from lib/ to app/controllers/concerns/.
168
- [dchandekstark]
169
-
170
- * Added grid view for search results and collections view [Justin
171
- Coyne]
172
-
173
- * There is no longer two recent blocks on the home page, so clean up
174
- the home page controller to only have the one that shows all files. [Carolyn
175
- Cole]
176
-
177
- * Refactor the controllers to cleanup after the homepage_controller
178
- was added [Justin Coyne]
179
-
180
- * Adding an editable block for marketing content on the homepage
181
- header [Carolyn Cole]
182
-
183
- * Add collections [Justin Coyne]
184
-
185
- * Unify the home page search Fixes http://scm.dlt.psu.edu/issues/9142
186
- [Justin Coyne]
187
-
188
- * Add source and bibliographicCitation DC terms to the metadata
189
- datastream [Justin Coyne]
190
-
191
- * moving homepage to it's own controller [Carolyn Cole]
192
-
193
- * added videojs fonts to precompile and made rake clean stop spring
194
- [Brian Maddy]
195
-
196
- * Version should be updated in all three locations. [Michael J.
197
- Giarlo]
198
-
199
- * add default value so config.usage_statistics is defined [Jim Coble]
200
-
201
- * Test for an XHR request, not for a javascript format [Justin Coyne]
202
-
203
- * Check to make sure BrowseEverthing is defined If you're only using
204
- sufia-models, then BrowseEverthing is not defined and you get an error. [Justin
205
- Coyne]
206
-
207
- * Ship the video-js fonts [Justin Coyne]
208
-
209
- * Allow endnote to be injected into a rails 4.0 or 4.1 file [Justin
210
- Coyne]
211
-
212
- * VirusFoundError should live in sufia-models [Justin Coyne]
213
-
214
- * Allow rails 4.1 to be used [Justin Coyne]
215
-
216
- * Modify how the pages controller and helper work so that you do not
217
- have to be logged in before viewing the page. [Carolyn Cole]
218
-
219
- * Changing to 2.1.1 to avoid the issue with 2.1.0 [cam156]
220
-
221
- * Update SUFIA_VERSION [cam156]
222
-
223
- * Update SUFIA_VERSION [cam156]
224
-
225
- * upping the version so people know the current UI changes are
226
- breaking [Carolyn Cole]
227
-
228
- * Refactor styles.css and create additional style sheets for features
229
- and sections. refs #SCM-9141 [Michael Tribone]
230
-
231
- * Template, home page, dashboard, edits to upgrade to Bootstrap3 and
232
- update look [Carolyn Cole]
233
-
234
- * Fixing dashboard facets to be bootstrap 3 compliant and updating
235
- pending dashboard test to be a passing test. [Carolyn Cole]
236
-
237
- * Upgrade mailboxer to 0.12.0.rc1 [Justin Coyne]
238
-
239
- * Drag and drop to order featured works [Justin Coyne]
240
-
241
- * [tagcloud] improving sort feature & made tagcloud properly
242
- configurable [Matt Zumwalt]
243
-
244
- * Add usage statistics to the user interface [Michael J. Giarlo]
245
-
246
- * using gsub to remove require tree, which removes javascript error in
247
- Chrome [Carolyn Cole]
248
-
249
- * Fix tests that broke as a result of a merge [Justin Coyne]
250
-
251
- * checking the frame rate as a number so 30 is equal to 30.0 [Carolyn
252
- Cole]
253
-
254
- * Re-add the generic_files stylesheet which was removed in #359
255
- [Justin Coyne]
256
-
257
- * Use the User.to_param to craft paths. Fixes #367 [Justin Coyne]
258
-
259
- * Refactor user factories [Justin Coyne]
260
-
261
- * Add all show fields to default all_fields search in generator, so
262
- that there's a better search experience out of the box. [dchandekstark]
263
-
264
- * Initialize the javascript on page:load events for Turbolinks support
265
- [Justin Coyne]
266
-
267
- * Factor out PropertiesDatastream behavior to a concern to facilitate
268
- overriding [dchandekstark]
269
-
270
- * Add featured works to the homepage [Justin Coyne]
271
-
272
- * Refactor Trophies javascript. All trophy scripts should use the
273
- TrophyHelper#display_trophy_link Add the `trophy-class` back to the user's
274
- profile page. The script now updates the link text depending on the current
275
- state of the trophy. Trophies should work with Turbolinks now. [Justin Coyne]
276
-
277
- * Restrict rails to ~> 4.0. 4.1.0 causes errors with mailboxer
278
- [Justin Coyne]
279
-
280
- * [tagcloud] adding sort feature to tag cloud [Matt Zumwalt]
281
-
282
- * switched to ajax and jquery-based tag cloud [Matt Zumwalt]
283
-
284
- * Don't show the tinymce editor until the edit button is pushed
285
- [Justin Coyne]
286
-
287
- * Edit the about page with the TinyMCE editor [Justin Coyne]
288
-
289
- * only render tag cloud section on homepage if a blacklight query has
290
- been run. (ie don't render on login page) [Matt Zumwalt]
3
+ ## 4.0.0
4
+
5
+ * Make batch-edit more accessible [Adam Wead]
6
+ * Changing so stats on public files can be viewed without logging in [Carolyn Cole]
7
+ * hide pagination for screen readers [Brian Maddy]
8
+ * Changing headers on home page to be configurable [Carolyn Cole]
9
+ * improved accessibility for permissions editing and help popovers [Brian Maddy]
10
+ * Sufia::BootstrapBreadcrumbsBuilder for rendering breadcrumbs [Adam Wead]
11
+ * Adding aria roles and screen reader labels to make the upload more understandable for the screen reader [Carolyn Cole]
12
+ * 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]
14
+ * Using breadcrumbs_on_rails [Adam Wead]
15
+ * Updating my listing views to make it more usable for a screen reader [Carolyn Cole]
16
+ * Adding check for collection so they display nicely in the gallery, instead of looking like a default document [Carolyn Cole]
17
+ * removing icons in screen reader since they disable finding links by text if they are included and do not add to the sr user expericence [Carolyn Cole]
18
+ * made search result metadata not use headers [Brian Maddy]
19
+ * made tests work with newer version of devise [Brian Maddy]
20
+ * put label before main search field [Brian Maddy]
21
+ * improved accessibility of tag cloud [Brian Maddy]
22
+ * Changes to LICENSE and README to reflect Hydra convention. Fixes #636 [Michael J. Giarlo]
23
+ * Adding labels and moving title to link so screen reader will pick read better information. [Carolyn Cole]
24
+ * Makes sure only visible files are picked up on the Recent Uploads panel [Hector Correa]
25
+ * fixed deprecation warnings in spec/controller/* [Brian Maddy]
26
+ * Removing Unknown attribute error when a trophy is show on the profile page [Carolyn Cole]
27
+ * Characterization should only be loosly coupled to FullTextIndexing [Michael J. Giarlo]
28
+ * Full module name for Legato::Model [Adam Wead]
29
+ * removed a duplicate test, cleaned up some others [Brian Maddy]
30
+
31
+ ## 4.0.0.rc2
32
+
33
+ * made collections not crash in gallery view [Brian Maddy]
34
+ * Changing from font-awesome-sass-rails to font-awesome-rails gem to allign with browse everything [Carolyn Cole]
35
+ * Changing toggle to work correctly for glyphicon right and down [Carolyn Cole]
36
+ * Using Sufia::Messages for batch update notifications [Adam Wead]
37
+ * Batch edit now uses Bootstrap grid rather than HTML table. This fixes the scrollbar issue when editing field details. The links for details have also been fixed so that t
38
+ * Adding a check to make sure the check all box exists before checking to see if it has been checked. [Carolyn Cole]
39
+ * Chaged to use the follower i18n instead of the following [Carolyn Cole]
40
+ * Updating to use the new bootstrap modal classes, and adding internationalization for the following follower [Carolyn Cole]
41
+ * Show tab using anchor [Adam Wead]
42
+ * Visibility status in show and list views [Adam Wead]
43
+ * remove featured files that are deleted [Brian Maddy]
44
+ * Fixes alignment issue with Terms of Service checkbox [Hector Correa]
45
+ * Removed unused autoloads [Justin Coyne]
46
+ * made long facet labels and images not cause div explosions [Brian Maddy]
47
+ * Removes a document from the featured work list when the document is not public anymore [Hector Correa]
48
+ * Move processing message to locale file and add punctuation. [Michael J. Giarlo]
49
+ * fixed sorting issue on 'recently uploaded' [Brian Maddy]
50
+ * Refactor GenericFile#related_files [Justin Coyne]
51
+ * Redirect to MyController [Adam Wead]
52
+ * Remove another deprecation [Justin Coyne]
53
+ * Remove more deprecation warnings [Justin Coyne]
54
+ * Use engine_cart for building the test app [Justin Coyne]
55
+ * removed 40 deprecation warnings [Brian Maddy]
56
+ * swapped order of items in dashboard sidebar [Brian Maddy]
57
+ * made collection show not have a redundant title and description [Brian Maddy]
58
+ * Refactoring the css on the tag cloud to be centered, show a space between terms (or phrases) and show color [Carolyn Cole]
59
+ * Changing logger to ActiveFedora::Base.logger or Rails.logger [Carolyn Cole]
60
+ * Combining event streams for dashboard and getting rid of unused column [Carolyn Cole]
61
+ * Fixes alignment issue with Save Descriptions button [Hector Correa]
62
+ * Collection show now displays list of files using the normal file collection layout [Hector Correa]
63
+ * Fixed alignment of Edit Selected button [Hector Correa]
64
+ * Removed deprecations for assigning scalars to multivalued fields [Justin Coyne]
65
+ * Changing collections folder to new icon and resizing the icon so it is not so big [Carolyn Cole]
66
+ * Move ModelMethods to concerns directory [Justin Coyne]
67
+ * Move jobs into app/jobs [Justin Coyne]
68
+ * Patching after gem updates [Adam Wead]
69
+ * Rake task info should write to stdout [Adam Wead]
70
+ * Adds Collections area to generic_file view, showing collections this file belongs to (if any). [kerchner]
71
+ * Override assign_pid rather than monkeypatch ActiveFedora [Justin Coyne]
72
+ * License Descriptions button is gone from the Upload page and instead the descriptions are displayed when clicking on the question mark icon. Descriptions are still displa
73
+ * Display collections button only for my files [Adam Wead]
74
+ * Fixing collection display issues, refs #9319 [mtribone]
75
+ * Add Google Scholar-style meta tags to GF show view [Michael J. Giarlo]
76
+ * Replaced orphan "What's This" button with two individual tooltips for Visibility and Share With on the Upload file page. [Hector Correa]
77
+ * Fix alignment issue between section title and search box. [Hector Correa]
78
+ * Fixed issue in which the tooltip for the upload button was being DETECTED on the wrong spot (i.e. outside of the button) in Chrome. [Hector Correa]
79
+ * Using Blacklight constraints in my files display [Adam Wead]
80
+ * Use plus icon for create collection option. Hide 'My Dashboard' title for XS devices. [Hector Correa]
81
+ * Replace deprecated method has_next? with last_page? [Justin Coyne]
82
+ * Adjusted the columns to stack without overlapping at smaller resolutions [Hector Correa]
83
+ * Added partial to user utility button to allow each app to add their custom options [Hector Correa]
84
+ * Added 'View Collections' button to the dashboard [Hector Correa]
85
+ * Updating Add More Descriptions java script to work with the latest jquery show hide, and additionally aligning the fields left instead of middle to match up with batch me
86
+ * Merge pull request #567 from projecthydra/file-table [Justin Coyne]
87
+ * My table layout and collection info [Adam Wead]
88
+ * Adding partials for index so it is easier to override individual parts, and update the many icons for upload to be the same [Carolyn Cole]
89
+ * Unify MIME type-checking methods for Solr documents and GenericFiles [Michael J. Giarlo]
90
+ * Adding blacklight galery update to the css [Carolyn Cole]
91
+ * Show number of files and size of collection [Adam Wead]
92
+ * User utility button now takes user to the dashboard when clicking on the user name. Replaced edit profile button with view profile button. Added view tests for new functi
93
+ * Adding vnd.oasis.opendocument.text which fits is giving back for some docx [Carolyn Cole]
94
+ * Add full-text indexing to sufia [Michael J. Giarlo]
95
+ * bootstrap-sass 3.2 breaks our dropdownss [Adam Wead]
96
+ * padding for sort,reduce table borders, position changes for cog. fixes #9283 [mtribone]
97
+ * better responsive header and search form [Adam Wead]
98
+ * Rendering itemprop for custom show fields [Adam Wead]
99
+ * Removing username in mobile view [Adam Wead]
100
+ * Test schema.org microdata embedding [Michael J. Giarlo]
101
+ * Clarify where to add sufia line to application.js [Coding ZEAL]
102
+ * Redirect to dashboard upon login [Adam Wead]
103
+ * Update list of included features in README [Michael J. Giarlo]
104
+ * Add Twitter card/Opengraph meta tags for rich social media linking to generic file show view [Michael J. Giarlo]
105
+ * Makes generic_files edit and show views rely on shared records/edit_fields and records/show_fields. [Matt Zumwalt]
106
+ * Taking advantage of browse everything filename since box does not include the file name in the url. [Carolyn Cole]
107
+ * Adds full metadata editing for Collections (same DC fields as GenericFiles) Fixes hydra-editor style partials in views/records. refs gwu-libraries/gw-sufia#82 refs gwu-l
108
+ * Moves Sufia Collection behaviors into a module [Matt Zumwalt]
109
+ * Configure dashboard notification limits [Adam Wead]
110
+ * Adding header metadata so the page reduces to a small size on the phone. [Carolyn Cole]
111
+ * I18N text for my items [Adam Wead]
112
+ * Added /collections/ case to make breadcrumbs behavior consistent. Required addition of collections_list to localization. Added _breadcrumbs.html.erb test. Fixes gwu-libra
113
+ * Create collection and upload buttons [Adam Wead]
114
+ * Bootstrap3 button classes, fixes #510 [Adam Wead]
115
+ * More Boostrap 2 -> 3 upgrades. Fixes #528, #508 [Justin Coyne]
116
+ * Changing magic to time so the icon show up when the files are being processed and include the icon under the check box instead of in a separate column. [Carolyn Cole]
117
+ * Alerts when editing permissions, fixes #498 [Adam Wead]
118
+ * Don't convert avatar images, fixes #527 [Adam Wead]
119
+ * Remove SufiaHelper#link_back_to_catalog, fixes #323 [Adam Wead]
120
+ * Stats for files and collections, fixes #454 [Adam Wead]
121
+ * Capture original file size [Adam Wead]
122
+ * Moving bootstrap tabs to asset pipeline to extract local javascript from pages. resolves #514 [Carolyn Cole]
123
+ * SSL compatibile usage of google fonts [Matt Zumwalt]
124
+ * tag cloud links point to catalog instead of root path [Matt Zumwalt]
125
+ * specifying button type [Adam Wead]
126
+ * 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
+ * Upgrade to rspec 3. Fixes #493 [Carolyn Cole]
128
+ * Removed extraneous colons preceding key names. Fixes #516 [kerchner]
291
129
 
292
- * Added tinymce editor for featured researcher [Justin Coyne]
293
130
 
294
- * only render tag cloud section on homepage if a blacklight query has
295
- been run. (ie don't render on login page) [Matt Zumwalt]
296
131
 
297
- * Adding stylesheet and fixing login page error on layout [Carolyn
298
- Cole]
299
-
300
- * browse-everything tab uses localization for tab/button labels [Matt
301
- Zumwalt]
302
-
303
- * adding tag cloud helper and displaying it in homepage [Matt Zumwalt]
304
-
305
- * Bootstrap 3 ui changes [Carolyn Cole]
306
-
307
- * removing dropbox-specific support (replaced by browse-everything)
308
- [Matt Zumwalt]
309
-
310
- * added browse-everything for uploads [Matt Zumwalt]
311
-
312
- * Update to hydra-head 7.0.1 [Justin Coyne]
313
-
314
- * Upgrading sufia to the Blacklight 5 and Hydra-Head 7 [Carolyn Cole]
315
-
316
- * Adding a description to the all:release task so it will show up with
317
- rake -T [Carolyn Cole]
318
-
319
- * Update video.js to 4.5.1 [Justin Coyne]
320
-
321
- * Move font-awesome-sass-rails to be an internal dependency and not
322
- required in the Gemfile [Justin Coyne]
323
-
324
- * Clean up spacing [Justin Coyne]
132
+ ## 4.0.0.rc1
325
133
 
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]
256
+ * Clean up spacing [Justin Coyne]
326
257
 
327
258
  ## 3.7.0
328
259
 
329
- * The UsersController needs to set @trophies to a list of GenericFiles [Justin Coyne]
330
- * Removed patches for rails 3 [Justin Coyne]
331
- * Short-circuit freshclam for a faster build [Michael J. Giarlo]
332
- * Use blacklight 4.5 methods for accessing the search_session. Fixes #296 [Justin Coyne]
333
- * Test with ruby 2.1.0 final release [Justin Coyne]
334
- * Simplify tests for GenericFile#related_files [Justin Coyne]
335
- * Remove duplicate includes. Fixes #289 [Justin Coyne]
336
- * Remove non-functioning rake tasks … [Justin Coyne]
337
- * Better documentation for GenericFile#related_files [ci skip] [Justin Coyne]
338
- * Linked in handle seems to have been missed in the permitted attibiute… … [Carolyn Cole]
339
- * Updated: - Don't need to exlicity add 'jettywrapper' to Gemfile b/c added by hydra:head generator (called by sufia generator)
340
- - Don't need to remove public/index.html (Rails 4 presumably)
341
- - Run `rake jetty:clean` instead of hydra:jetty generator -- does the same thing
342
- - Added note that fits can be installed with homebrew (and may require adding a symlink)
343
- [David Chandek-Stark]
344
- * Upgrade blacklight to 4.6 [Justin Coyne]
345
- * Allowing the link to either be sufia based or blacklight based [Carolyn Cole]
346
- * Removing extra_head_content, and paginate deprication warnings [Carolyn Cole]
347
- * Remove deprecated method paginate_rsolr_response. Fixes #312 [Justin Coyne]
348
- * Moving single use link java script into asset pipeline. [Carolyn Cole]
349
- * Update to blacklight 4.7 [Justin Coyne]
350
- * Modifying how zclip works when a flash player is not present, since t… … [Carolyn Cole]
351
- * Upgrading video.js to the latest version so it will work in firefox, … … [Carolyn Cole]
352
- * Removing hard coded asset paths, which do not work in production. Whi… … [Carolyn Cole]
353
- * Fixing audiojs to only display if audio is not supported by the brows… … [Carolyn Cole]
260
+ * The UsersController needs to set @trophies to a list of GenericFiles [Justin Coyne]
261
+ * Removed patches for rails 3 [Justin Coyne]
262
+ * Short-circuit freshclam for a faster build [Michael J. Giarlo]
263
+ * Use blacklight 4.5 methods for accessing the search_session. Fixes #296 [Justin Coyne]
264
+ * Test with ruby 2.1.0 final release [Justin Coyne]
265
+ * Simplify tests for GenericFile#related_files [Justin Coyne]
266
+ * Remove duplicate includes. Fixes #289 [Justin Coyne]
267
+ * Remove non-functioning rake tasks … [Justin Coyne]
268
+ * Better documentation for GenericFile#related_files [ci skip] [Justin Coyne]
269
+ * Linked in handle seems to have been missed in the permitted attibiute… … [Carolyn Cole]
270
+ * Updated: - Don't need to exlicity add 'jettywrapper' to Gemfile b/c added by hydra:head generator (called by sufia generator)
271
+ - Don't need to remove public/index.html (Rails 4 presumably)
272
+ - Run `rake jetty:clean` instead of hydra:jetty generator -- does the same thing
273
+ - Added note that fits can be installed with homebrew (and may require adding a symlink)
274
+ [David Chandek-Stark]
275
+ * 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]
280
+ * Update to blacklight 4.7 [Justin Coyne]
281
+ * Modifying how zclip works when a flash player is not present, since t… … [Carolyn Cole]
282
+ * Upgrading video.js to the latest version so it will work in firefox, … … [Carolyn Cole]
283
+ * Removing hard coded asset paths, which do not work in production. Whi… … [Carolyn Cole]
284
+ * Fixing audiojs to only display if audio is not supported by the brows… … [Carolyn Cole]
354
285
 
355
286
  ## 3.6.0
356
287
 
357
288
  ## 3.4.0
358
- * Handle facets with 3 or more words [Jeremy Friesen]
359
- * Fixed show links in Users#index [Andrew Curley]
360
- * Update to AF 6.7.0 [Justin Coyne]
361
- * Adding more verbose logging to specs [Jeremy Friesen]
362
- * Update to Blacklight 4.5.0 [Justin Coyne]
363
- * Removing migration templates from Sufia (they are in sufia-models) [Justin Coyne]
364
- * Removed HTML align property from views [Justin Coyne]
365
- * Relax the Resque spec [Justin Coyne]
366
- * Pinned to hydra-head ~> 6.4.0 [Justin Coyne]
367
- * Moved trophies related methods to Trophies module [Justin Coyne]
368
- * Move mime type related methods into MimeTypes module [Justin Coyne]
369
- * Extract version methods into its own module [Justin Coyne]
370
- * Extract metadata into its own module [Justin Coyne]
371
- * AccessRight has moved into HydraHead [Justin Coyne]
372
- * Remove Visibility, which was moved into hydra-head [Justin Coyne]
373
- * Fix deprecation warnings by switching to
374
- Hydra::AccessControls::Permissions [Justin Coyne]
375
-
289
+
290
+ * Handle facets with 3 or more words [Jeremy Friesen]
291
+ * Fixed show links in Users#index [Andrew Curley]
292
+ * Update to AF 6.7.0 [Justin Coyne]
293
+ * Adding more verbose logging to specs [Jeremy Friesen]
294
+ * Update to Blacklight 4.5.0 [Justin Coyne]
295
+ * Removing migration templates from Sufia (they are in sufia-models) [Justin Coyne]
296
+ * Removed HTML align property from views [Justin Coyne]
297
+ * Relax the Resque spec [Justin Coyne]
298
+ * Pinned to hydra-head ~> 6.4.0 [Justin Coyne]
299
+ * Moved trophies related methods to Trophies module [Justin Coyne]
300
+ * Move mime type related methods into MimeTypes module [Justin Coyne]
301
+ * Extract version methods into its own module [Justin Coyne]
302
+ * Extract metadata into its own module [Justin Coyne]
303
+ * AccessRight has moved into HydraHead [Justin Coyne]
304
+ * Remove Visibility, which was moved into hydra-head [Justin Coyne]
305
+ * Fix deprecation warnings by switching to Hydra::AccessControls::Permissions [Justin Coyne]
376
306
 
377
307
  ## 3.3.0
378
- * Fix authorities deprecations [Justin Coyne]
379
- * Fix deprecation on MailboxController [Justin Coyne]
380
- * blacklight 4.4.1/0 doesn't work with kaminari > 0.14.1 See projectblacklight/blacklight#614 [Justin Coyne]
381
- * Allow acts_as_follower to be 0.2.0 for Rails 4 support [Justin Coyne]
382
- * Don't run blacklight and hydra generator twice [Justin Coyne]
383
- * Remove deprecation warning on Rails 4 [Justin Coyne]
384
- * Updating CONTRIBUTING.md as per Hydra v6.0.0 [Jeremy Friesen]
385
- * use cancan to authorize and validate single-use tokens. [Chris Beer]
386
- * Add ImageMagick as a software requirement in the README. [Jessie Keck]
387
- * split SingleUseLinkController into the authenticated controller that creates links, and a viewer that handles retrieving content for token-bearing users [Chris Beer]
388
- * remove explicit GenericFile references, and replace them with Rails magic [Chris Beer]
389
- * Refactor single-use links for style and clarity [Chris Beer]
390
- * add more gems to the gemfile for running tests from the gem root [Chris Beer]
391
- * add redis-server to the .travis.yml list of services [Chris Beer]
392
- * Fix typos in README.md [Jessie Keck]
308
+
309
+ * Fix authorities deprecations [Justin Coyne]
310
+ * Fix deprecation on MailboxController [Justin Coyne]
311
+ * blacklight 4.4.1/0 doesn't work with kaminari > 0.14.1 See projectblacklight/blacklight#614 [Justin Coyne]
312
+ * Allow acts_as_follower to be 0.2.0 for Rails 4 support [Justin Coyne]
313
+ * Don't run blacklight and hydra generator twice [Justin Coyne]
314
+ * Remove deprecation warning on Rails 4 [Justin Coyne]
315
+ * Updating CONTRIBUTING.md as per Hydra v6.0.0 [Jeremy Friesen]
316
+ * use cancan to authorize and validate single-use tokens. [Chris Beer]
317
+ * Add ImageMagick as a software requirement in the README. [Jessie Keck]
318
+ * split SingleUseLinkController into the authenticated controller that creates links, and a viewer that handles retrieving content for token-bearing users [Chris Beer]
319
+ * remove explicit GenericFile references, and replace them with Rails magic [Chris Beer]
320
+ * Refactor single-use links for style and clarity [Chris Beer]
321
+ * add more gems to the gemfile for running tests from the gem root [Chris Beer]
322
+ * add redis-server to the .travis.yml list of services [Chris Beer]
323
+ * Fix typos in README.md [Jessie Keck]
393
324
 
394
325
  ## 3.2.1
395
- * Updating gemspec to not limit on sufia-models [Jeremy Friesen]
326
+
327
+ * Updating gemspec to not limit on sufia-models [Jeremy Friesen]
396
328
 
397
329
  ## 3.2.0 - YANKED
398
- * Including on sufia-models subdir in gemspec [Jeremy Friesen]
399
- * Restoring the exception catching for migrations [Jeremy Friesen]
400
- * Publicizing #visibility_changed? [Jeremy Friesen]
401
- * Indicating attr_accessible is deprecated [Jeremy Friesen]
402
- * Removing ActiveModel::Dirty [Jeremy Friesen]
403
- * Upgrading ActiveFedora to latest 6.5 version [Adam Wead]
330
+
331
+ * Including on sufia-models subdir in gemspec [Jeremy Friesen]
332
+ * Restoring the exception catching for migrations [Jeremy Friesen]
333
+ * Publicizing #visibility_changed? [Jeremy Friesen]
334
+ * Indicating attr_accessible is deprecated [Jeremy Friesen]
335
+ * Removing ActiveModel::Dirty [Jeremy Friesen]
336
+ * Upgrading ActiveFedora to latest 6.5 version [Adam Wead]
404
337
 
405
338
  ## 3.1.3
406
- * Removed old PSU licence [Justin Coyne]
407
-
408
- * Moved access rights from curate [Justin Coyne]
409
-
410
- * Adding an operride path where to redirect for when a file gets destroyed.
411
- [Carolyn Cole]
412
-
413
- * Use the deprecation settings on the correct module [Justin Coyne]
414
339
 
340
+ * Removed old PSU licence [Justin Coyne]
341
+ * Moved access rights from curate [Justin Coyne]
342
+ * Adding an operride path where to redirect for when a file gets destroyed. [Carolyn Cole]
343
+ * Use the deprecation settings on the correct module [Justin Coyne]
415
344
 
416
345
  ## 3.1.2
417
- * Track changes on visibility [Justin Coyne]
418
-
419
- * Use an ideomatic setter for visibility [Justin Coyne]
420
346
 
421
- * Upgrade mailboxer [Justin Coyne]
422
-
423
- * Adding a partial for the header of the dashboard to make the wording easier to
424
- override. [Carolyn Cole]
425
-
426
- * Improving the better migration template [Jeremy Friesen]
347
+ * Track changes on visibility [Justin Coyne]
348
+ * Use an ideomatic setter for visibility [Justin Coyne]
349
+ * Upgrade mailboxer [Justin Coyne]
350
+ * Adding a partial for the header of the dashboard to make the wording easier to override. [Carolyn Cole]
351
+ * Improving the better migration template [Jeremy Friesen]
427
352
 
428
353
  ## 3.1.1
429
- * Extracting sufia generator behavior [Jeremy Friesen]
430
-
431
- * Don't use Sufia::Engine in the generated initializer [Justin Coyne]
432
-
433
- * Removed unused code [Justin Coyne]
434
-
435
- * Changed from a tag to span. fixes #32 [Carolyn Cole]
436
354
 
355
+ * Extracting sufia generator behavior [Jeremy Friesen]
356
+ * Don't use Sufia::Engine in the generated initializer [Justin Coyne]
357
+ * Removed unused code [Justin Coyne]
358
+ * Changed from a tag to span. fixes #32 [Carolyn Cole]
437
359
 
438
360
  ## 3.1.0
439
- * Make fits instructions more verbose [Carolyn Cole]
440
-
441
- * Adding one location to define/ override where the upload redirects to after a
442
- sucessfull upload [Carolyn Cole]
443
-
444
- * Added license to the gemspec [Justin Coyne]
445
-
446
- * fixed typo in require statement [Matt Zumwalt]
447
-
448
- * requires active_resource more cleanly [Matt Zumwalt]
449
-
450
- * updating facet views so that the blacklight helper_method will get called
451
- [Carolyn Cole]
452
-
453
- * Adds a spec for the ImportUrlJob [Michael J. Giarlo]
454
-
455
- * Fixed expecations for travis tests for #169 [Justin Coyne]
456
-
457
- * ModelMethods#apply_depositor_metadata should accept a user or a string like the
458
- method it overrides in HydraHead. See:
459
- https://github.com/projecthydra/hydra-head/blob/9a5b2728be2046125d09376a6d78ad06d26548c3/hydra-core/lib/hydra/model_methods.rb#L12
460
- [Justin Coyne]
461
-
462
- * Remove expand_path jazz from remaining specs [Michael J. Giarlo]
463
-
464
- * Codifying a pid based job [Jeremy Friesen]
465
-
466
- * Removing characterization save unless new_object? [Jeremy Friesen]
467
-
468
- * Adding $LOAD_PATH variable to dev rake task [Jeremy Friesen]
469
-
470
- * Bump dependency on hydra-derivatives [Justin Coyne]
471
-
472
- * Use add_file() rather than add_file_datastream() to ensure object label is set
473
- [Michael J. Giarlo]
474
-
475
- * Audio and video transcoding with hydra-derivatives [Justin Coyne]
476
-
477
- * Use hydra-derivatives for generating thumbnails [Justin Coyne]
478
-
479
- * ingest_local_file should ingest the file, not the filename [Justin Coyne]
480
-
481
- * Including deposit agreement on local import page [Matt Zumwalt]
482
-
483
- * UI for local ingest only appears in local ingest tab on upload page [Matt
484
- Zumwalt]
485
-
486
- * Putting test coverage for virus check into the right place [Matt Zumwalt]
487
-
488
- * local file ingest runs virus check [Matt Zumwalt]
489
-
490
- * testing outputs without relying on consistent array ordering [Matt Zumwalt]
491
-
492
- * UI text changes for local ingest [Matt Zumwalt]
493
-
494
- * removing unused fixtures [Matt Zumwalt]
495
-
496
- * cleanup of tests and method names around local ingest [Matt Zumwalt]
497
-
498
- * Display local ingest tab in Upload page when local import enabled [Matt
499
- Zumwalt]
500
-
501
- * Local ingest renders graceful error message if User does not define a directory
502
- path [Matt Zumwalt]
503
-
504
- * fixing scope of describe blocks in this test [Matt Zumwalt]
505
-
506
- * LocalFileIngestBehavior for FilesController [Matt Zumwalt]
507
-
508
- * The generator should create config/initializers/resque_config.rb [Justin Coyne]
509
-
510
- * Reindex everything scopes to sufia's namespace [Jeremy Friesen]
511
-
512
- * Remove css that doesn't appear to be used [Justin Coyne]
513
361
 
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
+ * Remove css that doesn't appear to be used [Justin Coyne]
514
395
 
515
396
  ## 3.0.0
516
- * Update README.md paths for Sufia assets application.css and application.js [Jim
517
- Coble]
518
-
519
- * Moving resque rake task to sufia-models [Jeremy Friesen]
520
-
521
- * Resque should use the redis instance configured in redis.yml [Justin Coyne]
522
-
523
- * Profile link should generate a valid route. Fixes #150 [Justin Coyne]
524
-
525
- * Updating CONTRIBUTING.md as per Hydra v6.0.0 [Jeremy Friesen]
526
-
527
- * Delete all needs a delete HTTP method [Justin Coyne]
528
-
529
- * Put the specific version of kaminari we need into the test app [Justin Coyne]
530
-
531
- * Removed deprecated use of mock() and stub() [Justin Coyne]
532
-
533
- * Simpler rspec run [Justin Coyne]
534
-
535
- * Fix routing spec [Justin Coyne]
536
-
537
- * Replaced cucumber with feature specs [Justin Coyne]
538
-
539
- * Use resourceful routes for users [Justin Coyne]
540
-
541
- * Removed duplicate tasks [Justin Coyne]
542
-
543
- * Switch require spec_helper to relative [Justin Coyne]
544
-
545
- * Support rspec-rails 2.14 [Justin Coyne]
546
-
547
- * Removed empty tests [Justin Coyne]
548
-
549
- * Correct path for fonts [Justin Coyne]
550
-
551
- * Use assets_path [Justin Coyne]
552
-
553
- * Fix path to fixtures.rake [Justin Coyne]
554
-
555
- * Add active_resource as a dependency [Justin Coyne]
556
-
557
- * Distinct on notify_number is unnecessary [Justin Coyne]
558
-
559
- * check all view, should supply the controller [Justin Coyne]
560
-
561
- * Removed unused spec [Justin Coyne]
562
-
563
- * Fixed path to rakefile [Justin Coyne]
564
-
565
- * Fix test to work in an order independent manner [Justin Coyne]
566
-
567
- * Single Use links should be randomly generated [Justin Coyne]
568
-
569
- * Update paperclip gem [Justin Coyne]
570
-
571
- * Handle attributes in a way that works with rails 3 or 4 [Justin Coyne]
572
-
573
- * Fixed view spec [Justin Coyne]
574
-
575
- * Devise is not required by sufia-models [Justin Coyne]
576
-
577
- * Inherit the version of devise from blacklight [Justin Coyne]
578
-
579
- * Move to a released version of blacklight_advanced_search [Justin Coyne]
580
-
581
- * Rails 4 support [Justin Coyne]
582
-
583
- * updating the readme based on mye experience running through it. [Carolyn Cole]
584
-
585
- * The query for my uploads, should be me, not exclude me [Justin Coyne]
586
-
587
- * Multiform should rename the fields correctly [Justin Coyne]
588
-
589
- * more explicit editable docs test [Matt Zumwalt]
590
-
591
- * Dashboard search results test more specific -- avoids pagination causing false
592
- negatives [Matt Zumwalt]
593
-
594
- * explicit handling of kaminari pagination bug, plus info in install docs [Matt
595
- Zumwalt]
596
-
597
- * Test to confirm that pagination works -- fails because dashboard/pages routes
598
- are not properly inherited. [Matt Zumwalt]
599
-
600
- * Handle the odd values in the hidden fields on the
601
- generic_files/_permission.html.erb form. These were added here:
602
- https://github.com/psu-stewardship/scholarsphere/commit/2a58d0c920cc87cad9a815b451613e3d327747e3#L9R5
603
- I have no idea why. [Justin Coyne]
604
-
605
- * Add a comment in the generator about the Sufia route being the very last line
606
- [Justin Coyne]
607
-
608
- * Generated controller uses the search_layout method for determining layout
609
- [Justin Coyne]
610
-
611
- * Force a two column layout for dashboard [Justin Coyne]
612
-
613
- * Use hydra-head 6.3.0 [Justin Coyne]
614
-
615
- * Bump active-fedora version to 6.4.0.rc4 [Justin Coyne]
616
-
617
- * allowing non-sufia controllers to inherit dashboard behaviors and helpers
618
- smoothly [Matt Zumwalt]
619
-
620
- * Set a permission value that actually exists (e.g. 'read') [Justin Coyne]
621
-
622
- * Added attr_accessible [Justin Coyne]
623
-
624
- * Fix the version in sufia-models.gemspec so you can bundle install [Justin
625
- Coyne]
626
-
627
397
 
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]
447
+ * Fix the version in sufia-models.gemspec so you can bundle install [Justin Coyne]
628
448
 
629
449
  ## 2.0.1
630
- * Fix version of sufia-models
450
+
451
+ * Fix version of sufia-models
631
452
 
632
453
  ## 2.0.0
633
- * Dropbox support
634
- * Multiple layouts
635
- * UnzipJob can handle directories
636
- * Support for sufia and hydra-editor in the same app
637
- * Subdividing the upload partial
638
- * Lots of code cleanup
639
454
 
455
+ * Dropbox support
456
+ * Multiple layouts
457
+ * UnzipJob can handle directories
458
+ * Support for sufia and hydra-editor in the same app
459
+ * Subdividing the upload partial
460
+ * Lots of code cleanup
640
461
 
641
462
  ## 1.3.0
642
- * Depends on Hydra::Controller::DownloadBehavior
643
- * Upgraded to hydra-batch-edit 1.1 which includes session-less batches in hydra-collections
644
- * Moved most of the Dashboard behavior into Sufia::DashboardBehavior to enable overriding
645
- * Added Model to_s instead of using display_title
646
- * Added after delivery hook to contact form controller
647
- * Removed the version page
648
- * various bug fixes
649
463
 
464
+ * Depends on Hydra::Controller::DownloadBehavior
465
+ * Upgraded to hydra-batch-edit 1.1 which includes session-less batches in hydra-collections
466
+ * Moved most of the Dashboard behavior into Sufia::DashboardBehavior to enable overriding
467
+ * Added Model to_s instead of using display_title
468
+ * Added after delivery hook to contact form controller
469
+ * Removed the version page
470
+ * various bug fixes
650
471
 
651
472
  ## 1.2.0
652
- * DownloadController uses load_instance_from_solr for speed improvement
653
- * Raise a AccessDenied error if a download is not allowed rather than show an image.
654
- * Autoload the datastreams directory
655
- * Set default variables (fits_path, id_namespace) in the engine config.
473
+
474
+ * DownloadController uses load_instance_from_solr for speed improvement
475
+ * Raise a AccessDenied error if a download is not allowed rather than show an image.
476
+ * Autoload the datastreams directory
477
+ * Set default variables (fits_path, id_namespace) in the engine config.
656
478
 
657
479
  ## 1.1.0
658
- * Allows a user to deposit on behalf of another user
659
- * Tweaks dashboard UI to be less busy: actions now in dropdown button
660
- * Allows HTML tags in metadata helps to render
661
- * Fixes notifications icon
662
- * Raises routing errors in dev and test so they can be resolved
663
- * Refactors users controller for easy re-use
664
- * Adds JSON support to users controller
665
- * Removes dependency on sitemap gem
666
480
 
667
- ## 1.0.0
668
- * Initial API-stable release
481
+ * Allows a user to deposit on behalf of another user
482
+ * Tweaks dashboard UI to be less busy: actions now in dropdown button
483
+ * Allows HTML tags in metadata helps to render
484
+ * Fixes notifications icon
485
+ * Raises routing errors in dev and test so they can be resolved
486
+ * Refactors users controller for easy re-use
487
+ * Adds JSON support to users controller
488
+ * Removes dependency on sitemap gem
669
489
 
490
+ ## 1.0.0
670
491
 
492
+ * Initial API-stable release