00001 /* 00002 * ==================================================================== 00003 * Copyright (c) 2002-2006 The RapidSvn Group. All rights reserved. 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library (in the file LGPL.txt); if not, 00017 * write to the Free Software Foundation, Inc., 51 Franklin St, 00018 * Fifth Floor, Boston, MA 02110-1301 USA 00019 * 00020 * This software consists of voluntary contributions made by many 00021 * individuals. For exact contribution history, see the revision 00022 * history and logs, available at http://rapidsvn.tigris.org/. 00023 * ==================================================================== 00024 */ 00025 #ifndef _SVNCPP_URL_HPP_ 00026 #define _SVNCPP_URL_HPP_ 00027 00028 // stl 00029 #include <string> 00030 #include <vector> 00031 00032 namespace svn 00033 { 00034 class Url 00035 { 00036 public: 00038 Url (); 00039 00041 virtual ~Url (); 00042 00051 static bool 00052 isValid (const char * urlToValidate); 00053 00062 static std::string 00063 escape (const char * url); 00064 00070 static std::string 00071 unescape (const char * url); 00072 00080 static std::vector<std::string> 00081 supportedSchemas (); 00082 }; 00083 } 00084 00085 #endif 00086 /* ----------------------------------------------------------------- 00087 * local variables: 00088 * eval: (load-file "../../rapidsvn-dev.el") 00089 * end: 00090 */ 00091