From 40cca68ce2a796ac4ba9707b22a925f53c0d3998 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 2 Jun 2009 23:21:01 +0000 Subject: Huh, cgiutil was mostly a waste, url handles it all already. I still need something for mime eventually, meh. --- src/url.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/url.cpp') 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 ) } } +void Bu::Url::parseParams( const Bu::FString &sQuery ) +{ + Bu::FString::const_iterator i = sQuery.begin(); + parseParams( i ); +} + void Bu::Url::parseParams( Bu::FString::const_iterator &i ) { bool bName = true; -- cgit v1.2.3