Index: app/views/utils.js |
=== modified file 'app/views/utils.js' |
--- app/views/utils.js 2013-04-10 09:40:06 +0000 |
+++ app/views/utils.js 2013-04-10 21:17:18 +0000 |
@@ -12,6 +12,41 @@ |
var views = Y.namespace('juju.views'), |
utils = Y.namespace('juju.views.utils'); |
+ /*jshint bitwise: false*/ |
+ /** |
+ Create a hash of a string. From stackoverflow: http://goo.gl/PEOgF |
+ |
+ @method generateHash |
+ @param {String} value The string to hash. |
+ @return {Integer} The hash of the string. |
+ */ |
+ var generateHash = function(value) { |
+ return value.split('').reduce( |
+ function(hash, character) { |
+ hash = ((hash << 5) - hash) + character.charCodeAt(0); |
+ return hash & hash; |
+ }, |
+ 0 |
+ ); |
+ }; |
+ /*jshint bitwise: true*/ |
+ utils.generateHash = generateHash; |
+ |
+ /** |
+ Create a stable, safe DOM id given an arbitrary string. |
+ See details and discussion in |
+ https://bugs.launchpad.net/juju-gui/+bug/1167295 |
+ |
+ @method generateSafeDOMId |
+ @param {String} value The string to hash. |
+ @return {String} The calculated DOM id. |
+ */ |
+ var generateSafeDOMId = function(value) { |
+ return ( |
+ value.replace(/\W/g, '_') + '-' + generateHash(value)); |
benji
2013/04/11 12:39:44
If value starts with a number then the result will
benji
2013/04/11 13:16:53
I just realized that there is another small issue
|
+ }; |
+ utils.generateSafeDOMId = generateSafeDOMId; |
+ |
var timestrings = { |
prefixAgo: null, |
prefixFromNow: null, |