aboutsummaryrefslogtreecommitdiff
path: root/src/url.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-06-02 23:21:01 +0000
committerMike Buland <eichlan@xagasoft.com>2009-06-02 23:21:01 +0000
commit40cca68ce2a796ac4ba9707b22a925f53c0d3998 (patch)
treeb5bb096b5675ca1374bc908c9bc4c5f768f10612 /src/url.cpp
parent1df2d73183a08fc37bc1b97a530c13a9445dad65 (diff)
downloadlibbu++-40cca68ce2a796ac4ba9707b22a925f53c0d3998.tar.gz
libbu++-40cca68ce2a796ac4ba9707b22a925f53c0d3998.tar.bz2
libbu++-40cca68ce2a796ac4ba9707b22a925f53c0d3998.tar.xz
libbu++-40cca68ce2a796ac4ba9707b22a925f53c0d3998.zip
Huh, cgiutil was mostly a waste, url handles it all already. I still need
something for mime eventually, meh.
Diffstat (limited to 'src/url.cpp')
-rw-r--r--src/url.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/url.cpp b/src/url.cpp
index e4d2f55..251e678 100644
--- a/src/url.cpp
+++ b/src/url.cpp
@@ -172,6 +172,12 @@ void Bu::Url::parsePath( Bu::FString::const_iterator &i )
172 } 172 }
173} 173}
174 174
175void Bu::Url::parseParams( const Bu::FString &sQuery )
176{
177 Bu::FString::const_iterator i = sQuery.begin();
178 parseParams( i );
179}
180
175void Bu::Url::parseParams( Bu::FString::const_iterator &i ) 181void Bu::Url::parseParams( Bu::FString::const_iterator &i )
176{ 182{
177 bool bName = true; 183 bool bName = true;