+2004-10-21 Helge Hess <helge.hess@skyrix.com>
+
+ * DynamicElements/WOImage.m: minor code cleanup (v4.3.69)
+
2004-10-19 Helge Hess <helge.hess@skyrix.com>
* SoObjects/SoHTTPAuthenticator.m: return 401 instead of 400 if the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id$
#ifndef __NGObjWeb_DynElems_WOImage_H__
#define __NGObjWeb_DynElems_WOImage_H__
data
mimeType
key
+
+ TODO: add support for "?" parameters?
*/
@interface WOImage : WOHTMLDynamicElement
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id: WOImage.m 1 2004-08-20 10:08:27Z znek $
#include "WOImage.h"
}
- (void)dealloc {
- RELEASE(self->src);
+ [self->src release];
[super dealloc];
}
/* HTML generation */
- (void)_appendSrcToResponse:(WOResponse *)_resp inContext:(WOContext *)_ctx {
- [_resp appendContentHTMLAttributeValue:
- [self->src stringValueInComponent:[_ctx component]]];
+ NSString *s;
+
+ s = [self->src stringValueInComponent:[_ctx component]];
+ if (s != nil) [_resp appendContentHTMLAttributeValue:s];
}
/* description */
- (NSString *)associationDescription {
- NSMutableString *str = [NSMutableString stringWithCapacity:64];
-
+ NSMutableString *str;
+
+ str = [NSMutableString stringWithCapacity:64];
[str appendFormat:@" src=%@", self->src];
[str appendString:[super associationDescription]];
return str;
+2004-10-21 Helge Hess <helge.hess@skyrix.com>
+
+ * WETableView/GNUmakefile: added support for config.make (v4.3.61)
+
2004-10-04 Marcus Mueller <znek@mulle-kybernetik.com>
* WEExtensions.xcode: updated to current build version