gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, ipv6, updated. release_0_8_9_final-14


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, ipv6, updated. release_0_8_9_final-1448-g2cc1a63
Date: Tue, 13 Mar 2012 21:50:10 +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, ipv6 has been updated
       via  2cc1a63be5ba5681ac6c4777d9cbd9350beb980d (commit)
      from  f1467a702088abc3bbfacaffc2aa588f32261e65 (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=2cc1a63be5ba5681ac6c4777d9cbd9350beb980d


commit 2cc1a63be5ba5681ac6c4777d9cbd9350beb980d
Author: Rob Savoye <address@hidden>
Date:   Tue Mar 13 15:50:02 2012 -0600

    make less verbose

diff --git a/libbase/URL.cpp b/libbase/URL.cpp
index 290b48d..5ffdb70 100644
--- a/libbase/URL.cpp
+++ b/libbase/URL.cpp
@@ -45,8 +45,6 @@ namespace gnash {
 
 URL::URL(const std::string& relative_url, const URL& baseurl)
 {
-    GNASH_REPORT_FUNCTION;
-
     init_relative(relative_url, baseurl);
 }
 
@@ -54,8 +52,6 @@ URL::URL(const std::string& relative_url, const URL& baseurl)
 void
 URL::normalize_path(std::string& path)
 {
-    GNASH_REPORT_FUNCTION;
-
 #if defined(_WIN32) || defined(WIN32) || defined(__OS2__) || 
defined(__amigaos4__)
     return;
 #endif
@@ -96,8 +92,6 @@ URL::normalize_path(std::string& path)
 void
 URL::init_absolute(const std::string& in)
 {
-    GNASH_REPORT_FUNCTION;
-
     // Find protocol
     std::string::size_type pos = in.find("://");
     if ( pos != std::string::npos ) {
@@ -148,9 +142,7 @@ URL::init_absolute(const std::string& in)
 
 URL::URL(const std::string& absolute_url)
 {
-    GNASH_REPORT_FUNCTION;
-    
-    std::cerr << "URL(" << absolute_url << ")" << std::endl;
+    // std::cerr << "URL(" << absolute_url << ")" << std::endl;
     if ( ( absolute_url.size() && absolute_url[0] == '/' )
          || absolute_url.find("://") != std::string::npos 
          || ( absolute_url.size() > 1 && absolute_url[1] == ':' )        //for 
win32
@@ -193,8 +185,6 @@ URL::URL(const std::string& absolute_url)
 void
 URL::init_relative(const std::string& relative_url, const URL& baseurl)
 {
-    GNASH_REPORT_FUNCTION;
-    
     // If relative url starts with an hash, it's just
     // an anchor change
     if ( relative_url[0] == '#' ){
@@ -283,8 +273,6 @@ URL::init_relative(const std::string& relative_url, const 
URL& baseurl)
 std::string
 URL::str() const
 {
-    GNASH_REPORT_FUNCTION;
-
     std::string ret = _proto + "://" + _host;
 
     if (!_port.empty()) {
@@ -306,8 +294,6 @@ URL::str() const
 void
 URL::split_anchor_from_path()
 {
-    GNASH_REPORT_FUNCTION;
-
     assert(_anchor == "");
 
     // Extract anchor from path, if any
@@ -321,8 +307,6 @@ URL::split_anchor_from_path()
 void
 URL::split_port_from_host()
 {
-    GNASH_REPORT_FUNCTION;
-
     assert(_port == "");
 
     // Extract anchor from path, if any
@@ -351,8 +335,6 @@ URL::split_port_from_host()
 void
 URL::split_querystring_from_path()
 {
-    GNASH_REPORT_FUNCTION;
-
     assert(_querystring == "");
 
     // extract the parameters from the URL
@@ -374,8 +356,6 @@ void
 URL::parse_querystring(const std::string& query_string,
                        std::map<std::string, std::string>& target_map)
 {
-    GNASH_REPORT_FUNCTION;
-
     if ( query_string.empty() ) return; // nothing to do
 
     std::string qstring=query_string;;

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

Summary of changes:
 libbase/URL.cpp |   22 +---------------------
 1 files changed, 1 insertions(+), 21 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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