annotate app/views/journals/update.rjs @ 8:0c83d98252d9
yuya
* Add custom repo prefix and proper auth realm, remove auth cache (seems like an unwise feature), pass DB handle around, various other bits of tidying
author |
Chris Cannam |
date |
Thu, 12 Aug 2010 15:31:37 +0100 |
parents |
513646585e45 |
children |
|
rev |
line source |
Chris@0
|
1 if @journal.frozen?
|
Chris@0
|
2 # journal was destroyed
|
Chris@0
|
3 page.remove "change-#{@journal.id}"
|
Chris@0
|
4 else
|
Chris@0
|
5 page.replace "journal-#{@journal.id}-notes", render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))
|
Chris@0
|
6 page.show "journal-#{@journal.id}-notes"
|
Chris@0
|
7 page.remove "journal-#{@journal.id}-form"
|
Chris@0
|
8 end
|
Chris@0
|
9
|
Chris@0
|
10 call_hook(:view_journals_update_rjs_bottom, { :page => page, :journal => @journal })
|