Skip to content

Commit abc45e2

Browse files
committedOct 8, 2014
initial commit
1 parent a16bf5c commit abc45e2

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed
 

‎README.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,20 @@ avspace
22
=======
33

44
ArchivesSpace Plugin for AV Materials
5+
6+
7+
## Getting Started
8+
9+
For detailed instructions, see:
10+
https://github.com/archivesspace/archivesspace/blob/master/plugins/README.md
11+
12+
1. Stop ArchivesSpace if it is running
13+
14+
2. Download the release from the releases tab
15+
16+
3. Unzip it and move it to the plugins directory
17+
18+
4. Open config/config.yml and find the 'plugins' line. Make sure it is uncommented (no leading '#') and add 'avspace' to the list.
19+
20+
5. Restart ArchiveSpace. You should see 'AV Space' in the plugins menu.
21+

‎config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
system_menu_controller: avspace
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class AvspaceController < ApplicationController
2+
3+
skip_before_filter :unauthorised_access
4+
5+
def index
6+
7+
end
8+
end

‎frontend/locales/en.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
en:
2+
plugins:
3+
avspace:
4+
label: AV Space

‎frontend/views/avspace/index.html.erb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div>
2+
<b>Hello! You have successfully installed the AV Space plugin</b>
3+
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.