gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/server/asobj Global.cpp


From: Martin Guy
Subject: [Gnash-commit] gnash/server/asobj Global.cpp
Date: Tue, 27 Feb 2007 22:46:25 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Martin Guy <martinwguy> 07/02/27 22:46:25

Modified files:
        server/asobj   : Global.cpp 

Log message:
        Remove oxbow code

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/Global.cpp?cvsroot=gnash&r1=1.46&r2=1.47

Patches:
Index: Global.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/Global.cpp,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -b -r1.46 -r1.47
--- Global.cpp  25 Feb 2007 18:32:00 -0000      1.46
+++ Global.cpp  27 Feb 2007 22:46:25 -0000      1.47
@@ -18,7 +18,7 @@
 
 // Implementation of the Global ActionScript Object
 
-/* $Id: Global.cpp,v 1.46 2007/02/25 18:32:00 strk Exp $ */
+/* $Id: Global.cpp,v 1.47 2007/02/27 22:46:25 martinwguy Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -136,17 +136,10 @@
 static void
 as_global_escape(const fn_call& fn)
 {
-    // List of chars we must convert to escape sequences
-    // (list taken from crazy case statement in as_global_unescape)
-    const string escapees = " \"#$%&+,/:;<=>address@hidden|}~";
-    const string hexdigits = "0123456789ABCDEF";
-
     ASSERT_FN_ARGS_IS_1
 
     string input = fn.arg(0).to_string();
-
     URL::encode(input);
-
     fn.result->set_string(input.c_str());
 }
 




reply via email to

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