Artifact 372c3e5fe15d6d04f17f5cac29e50b140cab2c9a7651c97d3718b66908203e13:
- File
src/OFURLEncoding.h
— part of check-in
[033054ad75]
at
2009-05-29 19:21:57
on branch trunk
— A few renames.
OFExceptions:
* OFNoMemException to OFOutOfMemoryException.
* OFMemNotPartOfObjException to OFMemoryNotPartOfObjectException.OFObject:
* -[addItemToMemoryPool:] to -[addMemoryToPool:].
* -[allocWithSize:] to -[allocMemoryWithSize:].
* -[allocNItems:withSize] to -[allocMemoryForNItems:withSize:].
* -[resizeMem:toSize] to -[resizeMemory:toSize:].
* -[resizeMem:toNItems:withSize:] to
-[resizeMemoryToNItems:withSize:].
* -[freeMem] to -[freeMemory:].OFString:
* -[urlencode] to -[urlEncodedString].
* -[urldecode] to -[urlDecodedString]. (user: js, size: 737) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008 - 2009 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of libobjfw. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFMutableString.h" extern int _OFURLEncoding_reference; /** * The OFURLEncoding category provides an easy way to encode and decode strings * for URLs. */ @interface OFString (OFURLEncoding) /** * Encodes a string for use in a URL. * * \return A new, autoreleased string */ - (OFString*)urlEncodedString; /** * Decodes a string used in a URL. * * \return A new, autoreleased string */ - (OFString*)urlDecodedString; @end