gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. 13fb267d7a2718bf2da1


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 13fb267d7a2718bf2da14cc4400045a64d82c484
Date: Sat, 06 Nov 2010 14:06:47 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  13fb267d7a2718bf2da14cc4400045a64d82c484 (commit)
       via  ec162a0f05248bac624ea4da1f8d9bbf271a6e08 (commit)
      from  821944e60a00ae1e3d2dc28fc39bad6a52a8a816 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=13fb267d7a2718bf2da14cc4400045a64d82c484


commit 13fb267d7a2718bf2da14cc4400045a64d82c484
Author: Sandro Santilli <address@hidden>
Date:   Sat Nov 6 14:57:42 2010 +0100

    More cleanup of gettext strings

diff --git a/gui/gnash.cpp b/gui/gnash.cpp
index e02280f..f33bbb2 100644
--- a/gui/gnash.cpp
+++ b/gui/gnash.cpp
@@ -98,65 +98,126 @@ usage()
     boost::split(renderers, RENDERER_CONFIG,
         boost::is_any_of(" "), boost::token_compress_on);
 
-    cout << _("Usage: gnash [options] movie_file.swf\n")
-    << "\n"
-    << _("Plays a SWF (Shockwave Flash) movie\n")
-    << _("Options:\n")
-    << "\n"
-    << _("  -h,  --help              Print this help and exit\n")
-    << _("  -V,  --version           Print version information and exit\n") 
-    << _("  -s,  --scale <factor>    Scale the movie by the specified 
factor\n") 
-    << _("  -d,  --delay <num>       Number of milliseconds to delay in main 
loop\n") 
-    << _("  -v,  --verbose           Produce verbose output\n") 
+    cout
+
+    << _("Usage: gnash [options] movie_file.swf") << endl
+    << _("Plays a SWF (Shockwave Flash) movie") << endl
+    << _("Options:") << endl
+    << endl 
+
+    <<   "  -h,  --help              "
+    << _("Print this help and exit") << endl
+
+    <<   "  -V,  --version           "
+    << _("Print version information and exit") << endl
+
+    <<   "  -s,  --scale <factor>    "
+    << _("Scale the movie by the specified factor") << endl
+
+    <<   "  -d,  --delay <num>       "
+    << _("Number of milliseconds to delay in main loop") << endl
+
+    <<   "  -v,  --verbose           "
+    << _("Produce verbose output") << endl
+
 #if VERBOSE_ACTION
-    << _("  -va                      Be (very) verbose about action 
execution\n") 
+    <<   "  -va                      "
+    << _("Be (very) verbose about action execution") << endl
 #endif
+
 #if VERBOSE_PARSE
-    << _("  -vp                      Be (very) verbose about parsing\n") 
+    <<   "  -vp                      "
+    << _("Be (very) verbose about parsing") << endl
 #endif
-    << _("  -A <file>                Audio dump file (wave format)\n") 
-    << _("  --hwaccel <none|vaapi> Hardware Video Accelerator to use\n") 
-    << _("                           none|vaapi|omap (default: none)\n") 
-    << _("  -x,  --xid <ID>          X11 Window ID for display\n") 
-    << _("  -w,  --writelog          Produce the disk based debug log\n") 
-    << _("  -j,  --width <width>     Set window width\n") 
-    << _("  -k,  --height <height>   Set window height\n") 
-    << _("  -X,  --x-pos <x-pos>     Set window x position\n") 
-    << _("  -Y,  --y-pos <y-pos>     Set window y position\n") 
-    << _("  -1,  --once              Exit when/if movie reaches the last "
-            "frame\n") 
-    << _("  -g,  --debugger          Turn on the SWF debugger\n") 
-    << _("  -r,  --render-mode <0|1|2|3>\n") 
-    << _("                           0 disable rendering and sound\n") 
-    << _("                           1 enable rendering, disable sound\n") 
-    << _("                           2 enable sound, disable rendering\n") 
-    << _("                           3 enable rendering and sound 
(default)\n") 
-    << _("  -M,  --media <") << boost::join(handlers, "|") << ">\n"
-    << _("                           The media handler to use")
-    << " (default: " << handlers.front() << ")\n"
-    << _("  -R,  --renderer <") << boost::join(renderers, "|") << ">\n"
-    << _("                           The renderer to use")
-    << " (default: agg)\n"
-    << _("  -t,  --timeout <sec>     Exit after the specified number of "
-            "seconds\n") 
-    << _("  -u,  --real-url <url>    Set \"real\" URL of the movie\n") 
-    << _("  -U,  --base-url <url>    Set \"base\" URL for resolving relative "
-            "URLs\n") 
-    << _("  -P,  --param <param>     Set parameter (e.g. "
-            "\"FlashVars=A=1&b=2\")\n") 
-    << _("  -F,  --fd <fd>:<fd>      Filedescriptor to use for external "
-            "communications\n") 
+
+    <<   "  -A <file>                "
+    << _("Audio dump file (wave format)") << endl
+
+    <<   "  --hwaccel <none|vaapi>   "
+    << _("Hardware Video Accelerator to use") << endl
+    <<   "                           none|vaapi|omap (default: none)" 
+    << endl
+
+    <<   "  -x,  --xid <ID>          "
+    << _("X11 Window ID for display") << endl
+
+    <<   "  -w,  --writelog          "
+    << _("Produce the disk based debug log") << endl
+
+    <<   "  -j,  --width <width>     "
+    << _("Set window width") << endl
+
+    <<   "  -k,  --height <height>   "
+    << _("Set window height") << endl
+
+    <<   "  -X,  --x-pos <x-pos>     "
+    << _("Set window x position") << endl
+
+    <<   "  -Y,  --y-pos <y-pos>     "
+    << _("Set window y position") << endl
+
+    <<   "  -1,  --once              "
+    << _("Exit when/if movie reaches the last frame") << endl
+
+    <<   "  -g,  --debugger          "
+    << _("Turn on the SWF debugger") << endl
+
+    <<   "  -r,  --render-mode <0|1|2|3>" << endl 
+    <<   "                           0 "
+    << _("disable rendering and sound") << endl
+    <<   "                           1 "
+    << _("enable rendering, disable sound") << endl
+    <<   "                           2 "
+    << _("enable sound, disable rendering") << endl
+    <<   "                           3 "
+    << _("enable rendering and sound (default)") << endl
+
+    <<   "  -M,  --media <" << boost::join(handlers, "|") << ">" << endl
+    <<   "                           "
+    << _("The media handler to use")
+    << " (default: " << handlers.front() << ")" << endl
+
+    <<   "  -R,  --renderer <" << boost::join(renderers, "|") << ">" << endl
+    <<   "                           "
+    << _("The renderer to use")
+    << " (default: agg)" << endl
+
+    <<   "  -t,  --timeout <sec>     "
+    << _("Exit after the specified number of seconds") << endl
+
+    <<   "  -u,  --real-url <url>    "
+    << _("Set \"real\" URL of the movie")  << endl
+
+    <<   "  -U,  --base-url <url>    "
+    << _("Set \"base\" URL for resolving relative URLs") << endl
+
+    <<   "  -P,  --param <param>     "
+    << _("Set parameter (e.g. \"FlashVars=A=1&b=2\")") << endl
+
+    <<   "  -F,  --fd <fd>:<fd>      "
+    << _("Filedescriptor to use for external communications") << endl
+
 #ifdef GNASH_FPS_DEBUG
-    << _("  -f,  --debug-fps <num>   Print FPS every num seconds (float)\n") 
+    <<   "  -f,  --debug-fps <num>   "
+    << _("Print FPS every num seconds (float)") << endl
 #endif // def GNASH_FPS_DEBUG
     
-    << _("  --max-advances <num>     Exit after specified number of frame "
-            "advances\n") 
-    << _("  --fullscreen             Start in fullscreen mode\n") 
-    << _("  --hide-menubar           Start without displaying the menu bar\n") 
-    << _("  --screenshot <list>      List of frames to save as screenshots\n") 
-    << _("  --screenshot-file <file> Filename pattern for screenshot 
images.\n")
-    << "\n";
+    <<   "  --max-advances <num>     "
+    << _("Exit after specified number of frame advances") << endl
+
+    <<   "  --fullscreen             "
+    << _("Start in fullscreen mode") << endl
+
+    <<   "  --hide-menubar           "
+    << _("Start without displaying the menu bar") << endl
+
+    <<   "  --screenshot <list>      "
+    << _("List of frames to save as screenshots") << endl
+
+    <<   "  --screenshot-file <file> "
+    << _("Filename pattern for screenshot images.") << endl
+
+    << endl;
 
     // Add gui keys
     usage_gui_keys(cout);
@@ -189,7 +250,7 @@ build_options()
         
         << _("   Configured with: ") << CONFIG_CONFIG << endl
         << _("   CXXFLAGS: ") << CXXFLAGS << endl
-        << "   Version: "  << BRANCH_NICK << ":" << BRANCH_REVNO << endl;
+        << _("   Version: ")  << BRANCH_NICK << ":" << BRANCH_REVNO << endl;
 }
 
 static void

http://git.savannah.gnu.org/cgit//commit/?id=ec162a0f05248bac624ea4da1f8d9bbf271a6e08


commit ec162a0f05248bac624ea4da1f8d9bbf271a6e08
Author: Sandro Santilli <address@hidden>
Date:   Sat Nov 6 14:34:57 2010 +0100

    Split gui key print in separate usage function. Use better 
internationalizable strings.

diff --git a/gui/gnash.cpp b/gui/gnash.cpp
index b17133f..e02280f 100644
--- a/gui/gnash.cpp
+++ b/gui/gnash.cpp
@@ -63,6 +63,32 @@ gnash::Debugger& debugger = 
gnash::Debugger::getDefaultInstance();
 }
 
 static void
+usage_gui_keys(std::ostream& os)
+{
+    os
+    << _("Keys:") << std::endl
+    << std::endl
+    << "  CTRL-Q, CTRL-W           "
+    << _("Quit")
+    << std::endl
+    << "  CTRL-F                   "
+    << _("Toggle fullscreen")
+    << std::endl 
+    << "  CTRL-P                   "
+    << _("Toggle pause") 
+    << std::endl 
+    << "  CTRL-R                   "
+    << _("Restart the movie") 
+    << std::endl 
+    << "  CTRL-O                   "
+    << _("Take a screenshot") 
+    << std::endl 
+    << "  CTRL-L                   "
+    << _("Force immediate redraw") 
+    << std::endl;
+}
+
+static void
 usage()
 {
     std::vector<std::string> handlers;
@@ -130,16 +156,13 @@ usage()
     << _("  --hide-menubar           Start without displaying the menu bar\n") 
     << _("  --screenshot <list>      List of frames to save as screenshots\n") 
     << _("  --screenshot-file <file> Filename pattern for screenshot 
images.\n")
-    << "\n"
-    << _("Keys:\n") 
-    << "\n"
-    << _("  CTRL-Q, CTRL-W           Quit\n") 
-    << _("  CTRL-F                   Toggle fullscreen\n") 
-    << _("  CTRL-P                   Toggle pause\n") 
-    << _("  CTRL-R                   Restart the movie\n") 
-    << _("  CTRL-O                   Take a screenshot\n") 
-    << _("  CTRL-L                   Force immediate redraw\n") 
-    << endl;
+    << "\n";
+
+    // Add gui keys
+    usage_gui_keys(cout);
+
+    cout << std::endl;
+
 }
 
 static void

-----------------------------------------------------------------------

Summary of changes:
 gui/gnash.cpp |  206 ++++++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 145 insertions(+), 61 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]