summary refs log tree commit diff
path: root/public/pretty.js
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-08-23 20:25:28 +0200
committerfranck cuny <franck@lumberjaph.net>2010-08-23 20:25:28 +0200
commit7b12e17aeb45e8fa1a85861220bbed441eff3bbb (patch)
tree99dd551379c53b8204827d1634bc697e58cae928 /public/pretty.js
downloaddancer-chat-master.tar.gz
initial commit master
Diffstat (limited to 'public/pretty.js')
-rw-r--r--public/pretty.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/public/pretty.js b/public/pretty.js
new file mode 100644
index 0000000..dbc1c70
--- /dev/null
+++ b/public/pretty.js
@@ -0,0 +1,36 @@
+/*
+ * JavaScript Pretty Date
+ * Copyright (c) 2008 John Resig (jquery.com)
+ * Licensed under the MIT license.
+ */
+
+// Takes an ISO time and returns a string representing how
+// long ago the date represents.
+function prettyDate(time){
+        var date = new Date(time); // (time || "").replace(/-/g,"/").replace(/[TZ]/g," ")),
+		diff = (((new Date()).getTime() - date.getTime()) / 1000),
+		day_diff = Math.floor(diff / 86400);
+			
+	if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 )
+		return;
+			
+	return day_diff == 0 && (
+			diff < 60 && "just now" ||
+			diff < 120 && "1 minute ago" ||
+			diff < 3600 && Math.floor( diff / 60 ) + " minutes ago" ||
+			diff < 7200 && "1 hour ago" ||
+			diff < 86400 && Math.floor( diff / 3600 ) + " hours ago") ||
+		day_diff == 1 && "Yesterday" ||
+		day_diff < 7 && day_diff + " days ago" ||
+		day_diff < 31 && Math.ceil( day_diff / 7 ) + " weeks ago";
+}
+
+// If jQuery is included in the page, adds a jQuery plugin to handle it as well
+if ( typeof jQuery != "undefined" )
+	jQuery.fn.prettyDate = function(){
+		return this.each(function(){
+			var date = prettyDate(this.title);
+			if ( date )
+				jQuery(this).text( date );
+		});
+	};