Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(30)

Unified Diff: app/views/utils.js

Issue 8640043: Make safe relation ids in environment view
Patch Set: Make safe relation ids in environment view Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « app/views/topology/relation.js ('k') | lib/views/stylesheet.less » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « app/views/topology/relation.js ('k') | lib/views/stylesheet.less » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b