From 996088f03e82fc37d68b6c34bca63b6cdf9b4a52 Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Wed, 2 Nov 2011 22:22:54 +0000 Subject: [PATCH] Moving more serializer code over to VisualEditor --- modules/es/es.Document.Serializer.js | 69 ++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 modules/es/es.Document.Serializer.js diff --git a/modules/es/es.Document.Serializer.js b/modules/es/es.Document.Serializer.js new file mode 100644 index 0000000000..da4d17f92e --- /dev/null +++ b/modules/es/es.Document.Serializer.js @@ -0,0 +1,69 @@ +/** + * Creates content serializer. + * + * Base object for all serializers, providing basic shared functionality and stubs for required + * implementations. + * + * @class + * @constructor + * @param context {es.WikiContext} Context of the wiki the document is a part of + * @property context {es.WikiContext} Context of the wiki the document is a part of + */ +es.Document.Serializer = function( context ) { + this.context = context; +}; + +/* Static Methods */ + +es.Document.Serializer.repeatString = function( pattern, count ) { + if ( count < 1 ) { + return ''; + } + var result = ''; + while ( count > 0 ) { + if ( count & 1 ) { result += pattern; } + count >>= 1; + pattern += pattern; + } + return result; +}; + +es.Document.Serializer.escapeXmlText = function( text ) { + return text + .replace( /&/g, '&' ) + .replace( //g, '>' ) + .replace( /"/g, '"' ) + .replace( /'/g, ''' ); +}; + +es.Document.Serializer.buildXmlAttributes = function( attributes, prespace ) { + var attr = []; + var name; + if ( attributes ) { + for ( name in attributes ) { + attr.push( name + '="' + attributes[name] + '"' ); + } + } + return ( prespace && attr.length ? ' ' : '' ) + attr.join( ' ' ); +}; + +es.Document.Serializer.buildXmlOpeningTag = function( tag, attributes ) { + return '<' + tag + es.Document.Serializer.buildXmlAttributes( attributes, true ) + '>'; +}; + +es.Document.Serializer.buildXmlClosingTag = function( tag ) { + return ''; +}; + +es.Document.Serializer.buildXmlTag = function( tag, attributes, value, escape ) { + if ( value === false ) { + return '<' + tag + es.Document.Serializer.buildXmlAttributes( attributes, true ) + ' />'; + } else { + if ( escape ) { + value = wiki.util.xml.esc( value ); + } + return '<' + tag + es.Document.Serializer.buildXmlAttributes( attributes, true ) + '>' + + value + ''; + } +};