Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
quoideneuf committed Oct 8, 2014
1 parent a16bf5c commit abc45e2
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,20 @@ avspace
=======

ArchivesSpace Plugin for AV Materials


## Getting Started

For detailed instructions, see:
https://github.com/archivesspace/archivesspace/blob/master/plugins/README.md

1. Stop ArchivesSpace if it is running

2. Download the release from the releases tab

3. Unzip it and move it to the plugins directory

4. Open config/config.yml and find the 'plugins' line. Make sure it is uncommented (no leading '#') and add 'avspace' to the list.

5. Restart ArchiveSpace. You should see 'AV Space' in the plugins menu.

1 change: 1 addition & 0 deletions config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
system_menu_controller: avspace
8 changes: 8 additions & 0 deletions frontend/controllers/avspace_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class AvspaceController < ApplicationController

skip_before_filter :unauthorised_access

def index

end
end
4 changes: 4 additions & 0 deletions frontend/locales/en.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
en:
plugins:
avspace:
label: AV Space
3 changes: 3 additions & 0 deletions frontend/views/avspace/index.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
<b>Hello! You have successfully installed the AV Space plugin</b>
</div>

0 comments on commit abc45e2

Please sign in to comment.