From b89a7ee8b956c96a1dcee995ea840feddc5d4b27 Mon Sep 17 00:00:00 2001 From: Pierre Frisch Date: Thu, 22 Dec 2011 07:25:50 -0800 Subject: First commit of Ninja to ninja-internal Signed-off-by: Valerio Virgillito --- .../core/converter/new-line-to-br-converter.js | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 node_modules/montage/core/converter/new-line-to-br-converter.js (limited to 'node_modules/montage/core/converter/new-line-to-br-converter.js') diff --git a/node_modules/montage/core/converter/new-line-to-br-converter.js b/node_modules/montage/core/converter/new-line-to-br-converter.js new file mode 100755 index 00000000..d64531e6 --- /dev/null +++ b/node_modules/montage/core/converter/new-line-to-br-converter.js @@ -0,0 +1,60 @@ +/* + This file contains proprietary software owned by Motorola Mobility, Inc.
+ No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
+ (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. +
*/ +/** + @module montage/core/converter/new-line-to-br-converter + @requires montage/core/core + @requires montage/core/converter/converter +*/ + +var Montage = require("montage").Montage; +var Converter = require('core/converter/converter').Converter; + +/** + Replaces all new line characters with a HTML <br> + @memberof module:montage/core/converter# + @function + @param {String} str The string to format. + @returns {String} The formatted string. + */ +var newLineToBr = function(str) { + return str.replace(/(\r\n|\r|\n)/g, '
'); +}; + +/** + @class module:montage/core/converter/new-line-to-br-converter.NewLineToBrConverter + @classdesc Converts a newline to a <br> tag. + */ +exports.NewLineToBrConverter = Montage.create(Converter, /** @lends module:montage/core/converter/new-line-to-br-converter.NewLineToBrConverter# */{ + + /** + @private + */ + _convert: { + value: function(v) { + if (v && typeof v === 'string') { + return newLineToBr(v); + } + return v; + } + }, + /** + @function + @param {String} v Case format + @returns this._convert(v) + */ + convert: {value: function(v) { + return this._convert(v); + }}, + + /** + @function + @param {String} v Case format + @returns this._convert(v) + */ + revert: {value: function(v) { + return this._convert(v); + }} +}); -- cgit v1.2.3