From beeed3eee66cf7feef16fe78e2f18ba2c804edf7 Mon Sep 17 00:00:00 2001 From: Alexey Verkhovsky Date: Sat, 19 Feb 2005 14:38:10 +0000 Subject: [PATCH] Corrected a copy/paste bug in tests, and corresponding problems in rollback.rhtml --- app/views/wiki/page.rhtml | 2 +- app/views/wiki/rollback.rhtml | 17 ++++++++++++----- test/functional/wiki_controller_test.rb | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/app/views/wiki/page.rhtml b/app/views/wiki/page.rhtml index b8c84a99..9ad96de4 100644 --- a/app/views/wiki/page.rhtml +++ b/app/views/wiki/page.rhtml @@ -46,7 +46,7 @@ <% if @page.revisions.length > 1 %> | <%= link_to('Back in time', - {:web => @web.address, :action => 'edit', :id => @page.name, + {:web => @web.address, :action => 'revision', :id => @page.name, :rev => @page.revisions.length - 2}, {:class => 'navlink', :accesskey => 'R'}) %> diff --git a/app/views/wiki/rollback.rhtml b/app/views/wiki/rollback.rhtml index d7fa656a..511656b9 100644 --- a/app/views/wiki/rollback.rhtml +++ b/app/views/wiki/rollback.rhtml @@ -6,17 +6,24 @@ <%= "

Please correct the error that caused this error in rendering:
#{@params["msg"]}

" if @params["msg"] %> -
+<%= form_tag({:web => @web.address, :action => 'save', :id => @page.name}, + {:id => 'editForm', :method => 'post', :onSubmit => 'cleanAuthorName();'}) +%>

- as + as - | Cancel (unlocks page) + onClick="this.value == 'AnonymousCoward' ? this.value = '' : true" /> + | + <% link_to('Cancel', + {:web => @web.address, :action => 'cancel_edit', :id => @page.name}, + {:accesskey => 'c'}) + %> + (unlocks page)

-
+<%= end_form_tag %> <%= render("#{@web.markup}_help") if @web %> diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb index 525fcae7..1b77379d 100755 --- a/test/functional/wiki_controller_test.rb +++ b/test/functional/wiki_controller_test.rb @@ -337,7 +337,7 @@ class WikiControllerTest < Test::Unit::TestCase def test_rollback # rollback shows a form where a revision can be edited. # its assigns the same as or revision - r = process 'revision', 'web' => 'wiki1', 'id' => 'HomePage', 'rev' => '0' + r = process 'rollback', 'web' => 'wiki1', 'id' => 'HomePage', 'rev' => '0' assert_success assert_equal @home, r.template_objects['page']