You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sam Ruby <ru...@apache.org> on 2016/03/03 20:55:54 UTC

[whimsy.git] [1/1] Commit bbc1178: spell out rotation

Commit bbc1178fdd0a82ecd249718418f53af66f3a7515:
    spell out rotation


Branch: refs/heads/master
Author: Sam Ruby <ru...@intertwingly.net>
Committer: Sam Ruby <ru...@intertwingly.net>
Pusher: rubys <ru...@apache.org>

------------------------------------------------------------
www/secretary/workbench/file.cgi                             | ++++ ----
------------------------------------------------------------
8 changes: 4 additions, 4 deletions.
------------------------------------------------------------


diff --git a/www/secretary/workbench/file.cgi b/www/secretary/workbench/file.cgi
index 2c084e5..b26d4af 100755
--- a/www/secretary/workbench/file.cgi
+++ b/www/secretary/workbench/file.cgi
@@ -794,19 +794,19 @@ _html do
           _.system "svn rm #{@source}#{at}"
         elsif @dest == 'flip'
           _h1 'Flip'
-          _.system "pdftk #{@source} cat 1-endS output #{@source}.tmp"
+          _.system "pdftk #{@source} cat 1-endSouth output #{@source}.tmp"
           _.system "mv #{@source}.tmp #{@source}"
         elsif @dest == 'restore'
           _h1 'Restore'
-          _.system "pdftk #{@source} cat 1-endN output #{@source}.tmp"
+          _.system "pdftk #{@source} cat 1-endNorth output #{@source}.tmp"
           _.system "mv #{@source}.tmp #{@source}"
         elsif @dest == 'rotate right'
           _h1 'Rotate Right'
-          _.system "pdftk #{@source} cat 1-endE output #{@source}.tmp"
+          _.system "pdftk #{@source} cat 1-endEast output #{@source}.tmp"
           _.system "mv #{@source}.tmp #{@source}"
         elsif @dest == 'rotate left'
           _h1 'Rotate Left'
-          _.system "pdftk #{@source} cat 1-endW output #{@source}.tmp"
+          _.system "pdftk #{@source} cat 1-endWest output #{@source}.tmp"
           _.system "mv #{@source}.tmp #{@source}"
         elsif @dest == 'junk'
           _.system(['svn', 'rm', '--force', "#{@source}#{at}"])