diff --git a/Gemfile b/Gemfile
index 4df07731..23495a03 100644
--- a/Gemfile
+++ b/Gemfile
@@ -14,8 +14,8 @@ gem 'formtastic'
gem 'json'
gem 'rails3-jquery-autocomplete'
gem 'best_in_place'
-gem 'therubyracer' #optional
-gem 'rb-readline'
+#gem 'therubyracer' #optional
+#gem 'rb-readline'
# Gems used only for assets and not required
# in production environments by default.
diff --git a/Gemfile~ b/Gemfile~
index 23495a03..4df07731 100644
--- a/Gemfile~
+++ b/Gemfile~
@@ -14,8 +14,8 @@ gem 'formtastic'
gem 'json'
gem 'rails3-jquery-autocomplete'
gem 'best_in_place'
-#gem 'therubyracer' #optional
-#gem 'rb-readline'
+gem 'therubyracer' #optional
+gem 'rb-readline'
# Gems used only for assets and not required
# in production environments by default.
diff --git a/app/assets/images/MMCCicon_add_map.png b/app/assets/images/MMCCicon_add_map.png
index af4832b7..ded32adc 100644
Binary files a/app/assets/images/MMCCicon_add_map.png and b/app/assets/images/MMCCicon_add_map.png differ
diff --git a/app/assets/images/MMCCicon_left_arrow.png b/app/assets/images/MMCCicon_left_arrow.png
new file mode 100644
index 00000000..23cd9559
Binary files /dev/null and b/app/assets/images/MMCCicon_left_arrow.png differ
diff --git a/app/assets/images/MMCCicon_right_arrow.png b/app/assets/images/MMCCicon_right_arrow.png
new file mode 100644
index 00000000..5b57c191
Binary files /dev/null and b/app/assets/images/MMCCicon_right_arrow.png differ
diff --git a/app/assets/images/fresnel-mountainous-landscape-002.png b/app/assets/images/fresnel-mountainous-landscape-002.png
new file mode 100644
index 00000000..4f7920f4
Binary files /dev/null and b/app/assets/images/fresnel-mountainous-landscape-002.png differ
diff --git a/public/assets/scroll/mCSB_buttons.png b/app/assets/images/mCSB_buttons.png
similarity index 100%
rename from public/assets/scroll/mCSB_buttons.png
rename to app/assets/images/mCSB_buttons.png
diff --git a/app/assets/images/metacode-watermark.png b/app/assets/images/metacode-watermark.png
new file mode 100644
index 00000000..2196e907
Binary files /dev/null and b/app/assets/images/metacode-watermark.png differ
diff --git a/app/assets/images/metacodes75ms300x300.gif b/app/assets/images/metacodes75ms300x300.gif
new file mode 100644
index 00000000..baeff962
Binary files /dev/null and b/app/assets/images/metacodes75ms300x300.gif differ
diff --git a/app/assets/images/metamap128x128.png b/app/assets/images/metamap128x128.png
new file mode 100644
index 00000000..6285f6d6
Binary files /dev/null and b/app/assets/images/metamap128x128.png differ
diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js
index b72fce39..f83e2142 100644
--- a/app/assets/javascripts/application.js
+++ b/app/assets/javascripts/application.js
@@ -15,6 +15,9 @@
//= require jquery
//= require jquery-ui
//= require jquery.purr
+//= require jquery.lettering
+//= require jquery.textillate
+//= require jquery.roundabout.min
//= require best_in_place
//= require jquery_ujs
//= require_tree .
@@ -491,8 +494,10 @@ var labelType, useGradients, nativeTextSupport, animate, json, Mconsole = null,
});
//bind lightbox clicks
- $('.openLightbox').click(function() {
+ $('.openLightbox').click(function(event) {
openLightbox($(this).attr('data-open'));
+ event.preventDefault();
+ return false;
});
// bind permission changer events
diff --git a/app/assets/javascripts/carousel/cloud-carousel.1.0.5.js b/app/assets/javascripts/carousel/cloud-carousel.1.0.5.js
index 7820a5f5..c10a835f 100644
--- a/app/assets/javascripts/carousel/cloud-carousel.1.0.5.js
+++ b/app/assets/javascripts/carousel/cloud-carousel.1.0.5.js
@@ -318,10 +318,11 @@ jQuery.browser = browser;
x = this.xCentre + (( (funcCos(radians) * this.xRadius) - (item.orgWidth*0.5)) * scale);
y = this.yCentre + (( (sinVal * this.yRadius) ) * scale);
- if (item.imageOK)
+ if (item.imageOK)
{
var img = item.image;
- img.style.zIndex = "" + (scale * 100)>>0; // >>0 = Math.foor(). Firefox doesn't like fractional decimals in z-index.
+
+ img.style.zIndex = "" + (scale * 100)>>0; // >>0 = Math.foor(). Firefox doesn't like fractional decimals in z-index.
w = img.width = item.orgWidth * scale;
h = img.height = item.orgHeight * scale;
img.style.left = x + px ;
diff --git a/app/assets/javascripts/jquery.lettering.js b/app/assets/javascripts/jquery.lettering.js
new file mode 100644
index 00000000..4515590c
--- /dev/null
+++ b/app/assets/javascripts/jquery.lettering.js
@@ -0,0 +1,66 @@
+/*global jQuery */
+/*!
+* Lettering.JS 0.6.1
+*
+* Copyright 2010, Dave Rupert http://daverupert.com
+* Released under the WTFPL license
+* http://sam.zoy.org/wtfpl/
+*
+* Thanks to Paul Irish - http://paulirish.com - for the feedback.
+*
+* Date: Mon Sep 20 17:14:00 2010 -0600
+*/
+(function($){
+ function injector(t, splitter, klass, after) {
+ var a = t.text().split(splitter), inject = '';
+ if (a.length) {
+ $(a).each(function(i, item) {
+ inject += ''+item+''+after;
+ });
+ t.empty().append(inject);
+ }
+ }
+
+ var methods = {
+ init : function() {
+
+ return this.each(function() {
+ injector($(this), '', 'char', '');
+ });
+
+ },
+
+ words : function() {
+
+ return this.each(function() {
+ injector($(this), ' ', 'word', ' ');
+ });
+
+ },
+
+ lines : function() {
+
+ return this.each(function() {
+ var r = "eefec303079ad17405c889e092e105b0";
+ // Because it's hard to split a tag consistently across browsers,
+ // (*ahem* IE *ahem*), we replaces all instances with an md5 hash
+ // (of the word "split"). If you're trying to use this plugin on that
+ // md5 hash string, it will fail because you're being ridiculous.
+ injector($(this).children("br").replaceWith(r).end(), r, 'line', '');
+ });
+
+ }
+ };
+
+ $.fn.lettering = function( method ) {
+ // Method calling logic
+ if ( method && methods[method] ) {
+ return methods[ method ].apply( this, [].slice.call( arguments, 1 ));
+ } else if ( method === 'letters' || ! method ) {
+ return methods.init.apply( this, [].slice.call( arguments, 0 ) ); // always pass an array
+ }
+ $.error( 'Method ' + method + ' does not exist on jQuery.lettering' );
+ return this;
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/app/assets/javascripts/jquery.roundabout.min.js b/app/assets/javascripts/jquery.roundabout.min.js
new file mode 100644
index 00000000..63b7bba8
--- /dev/null
+++ b/app/assets/javascripts/jquery.roundabout.min.js
@@ -0,0 +1,41 @@
+/**
+ * jQuery Roundabout - v2.3
+ * http://fredhq.com/projects/roundabout
+ *
+ * Moves list-items of enabled ordered and unordered lists long
+ * a chosen path. Includes the default "lazySusan" path, that
+ * moves items long a spinning turntable.
+ *
+ * Terms of Use // jQuery Roundabout
+ *
+ * Open source under the BSD license
+ *
+ * Copyright (c) 2011-2012, Fred LeBlanc
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ * - Neither the name of the author nor the names of its contributors
+ * may be used to endorse or promote products derived from this
+ * software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+(function(a){"use strict";var b,c,d;a.extend({roundaboutShapes:{def:"lazySusan",lazySusan:function(a,b,c){return{x:Math.sin(a+b),y:Math.sin(a+3*Math.PI/2+b)/8*c,z:(Math.cos(a+b)+1)/2,scale:Math.sin(a+Math.PI/2+b)/2+.5}}}});b={bearing:0,tilt:0,minZ:100,maxZ:280,minOpacity:.4,maxOpacity:1,minScale:.4,maxScale:1,duration:600,btnNext:null,btnNextCallback:function(){},btnPrev:null,btnPrevCallback:function(){},btnToggleAutoplay:null,btnStartAutoplay:null,btnStopAutoplay:null,easing:"swing",clickToFocus:true,clickToFocusCallback:function(){},focusBearing:0,shape:"lazySusan",debug:false,childSelector:"li",startingChild:null,reflect:false,floatComparisonThreshold:.001,autoplay:false,autoplayDuration:1e3,autoplayPauseOnHover:false,autoplayCallback:function(){},autoplayInitialDelay:0,enableDrag:false,dropDuration:600,dropEasing:"swing",dropAnimateTo:"nearest",dropCallback:function(){},dragAxis:"x",dragFactor:4,triggerFocusEvents:true,triggerBlurEvents:true,responsive:false};c={autoplayInterval:null,autoplayIsRunning:false,autoplayStartTimeout:null,animating:false,childInFocus:-1,touchMoveStartPosition:null,stopAnimation:false,lastAnimationStep:false};d={init:function(e,f,g){var h,i=(new Date).getTime();e=typeof e==="object"?e:{};f=a.isFunction(f)?f:function(){};f=a.isFunction(e)?e:f;h=a.extend({},b,e,c);return this.each(function(){var b=a(this),c=b.children(h.childSelector).length,e=360/c,i=h.startingChild&&h.startingChild>c-1?c-1:h.startingChild,j=h.startingChild===null?h.bearing:360-i*e,k=b.css("position")!=="static"?b.css("position"):"relative";b.css({padding:0,position:k}).addClass("roundabout-holder").data("roundabout",a.extend({},h,{startingChild:i,bearing:j,oppositeOfFocusBearing:d.normalize.apply(null,[h.focusBearing-180]),dragBearing:j,period:e}));if(g){b.unbind(".roundabout").children(h.childSelector).unbind(".roundabout")}else{if(h.responsive){a(window).bind("resize",function(){d.relayoutChildren.apply(b)})}}if(h.clickToFocus){b.children(h.childSelector).each(function(c){a(this).bind("click.roundabout",function(){var e=d.getPlacement.apply(b,[c]);if(!d.isInFocus.apply(b,[e])){d.stopAnimation.apply(a(this));if(!b.data("roundabout").animating){d.animateBearingToFocus.apply(b,[e,b.data("roundabout").clickToFocusCallback])}return false}})})}if(h.btnNext){a(h.btnNext).bind("click.roundabout",function(){if(!b.data("roundabout").animating){d.animateToNextChild.apply(b,[b.data("roundabout").btnNextCallback])}return false})}if(h.btnPrev){a(h.btnPrev).bind("click.roundabout",function(){d.animateToPreviousChild.apply(b,[b.data("roundabout").btnPrevCallback]);return false})}if(h.btnToggleAutoplay){a(h.btnToggleAutoplay).bind("click.roundabout",function(){d.toggleAutoplay.apply(b);return false})}if(h.btnStartAutoplay){a(h.btnStartAutoplay).bind("click.roundabout",function(){d.startAutoplay.apply(b);return false})}if(h.btnStopAutoplay){a(h.btnStopAutoplay).bind("click.roundabout",function(){d.stopAutoplay.apply(b);return false})}if(h.autoplayPauseOnHover){b.bind("mouseenter.roundabout.autoplay",function(){d.stopAutoplay.apply(b,[true])}).bind("mouseleave.roundabout.autoplay",function(){d.startAutoplay.apply(b)})}if(h.enableDrag){if(!a.isFunction(b.drag)){if(h.debug){alert("You do not have the drag plugin loaded.")}}else if(!a.isFunction(b.drop)){if(h.debug){alert("You do not have the drop plugin loaded.")}}else{b.drag(function(a,c){var e=b.data("roundabout"),f=e.dragAxis.toLowerCase()==="x"?"deltaX":"deltaY";d.stopAnimation.apply(b);d.setBearing.apply(b,[e.dragBearing+c[f]/e.dragFactor])}).drop(function(a){var c=b.data("roundabout"),e=d.getAnimateToMethod(c.dropAnimateTo);d.allowAnimation.apply(b);d[e].apply(b,[c.dropDuration,c.dropEasing,c.dropCallback]);c.dragBearing=c.period*d.getNearestChild.apply(b)})}b.each(function(){var b=a(this).get(0),c=a(this).data("roundabout"),e=c.dragAxis.toLowerCase()==="x"?"pageX":"pageY",f=d.getAnimateToMethod(c.dropAnimateTo);if(b.addEventListener){b.addEventListener("touchstart",function(a){c.touchMoveStartPosition=a.touches[0][e]},false);b.addEventListener("touchmove",function(b){var f=(b.touches[0][e]-c.touchMoveStartPosition)/c.dragFactor;b.preventDefault();d.stopAnimation.apply(a(this));d.setBearing.apply(a(this),[c.dragBearing+f])},false);b.addEventListener("touchend",function(b){b.preventDefault();d.allowAnimation.apply(a(this));f=d.getAnimateToMethod(c.dropAnimateTo);d[f].apply(a(this),[c.dropDuration,c.dropEasing,c.dropCallback]);c.dragBearing=c.period*d.getNearestChild.apply(a(this))},false)}})}d.initChildren.apply(b,[f,g])})},initChildren:function(b,c){var e=a(this),f=e.data("roundabout");b=b||function(){};e.children(f.childSelector).each(function(b){var f,g,h,i=d.getPlacement.apply(e,[b]);if(c&&a(this).data("roundabout")){f=a(this).data("roundabout").startWidth;g=a(this).data("roundabout").startHeight;h=a(this).data("roundabout").startFontSize}a(this).addClass("roundabout-moveable-item").css("position","absolute");a(this).data("roundabout",{startWidth:f||a(this).width(),startHeight:g||a(this).height(),startFontSize:h||parseInt(a(this).css("font-size"),10),degrees:i,backDegrees:d.normalize.apply(null,[i-180]),childNumber:b,currentScale:1,parent:e})});d.updateChildren.apply(e);if(f.autoplay){f.autoplayStartTimeout=setTimeout(function(){d.startAutoplay.apply(e)},f.autoplayInitialDelay)}e.trigger("ready");b.apply(e);return e},updateChildren:function(){return this.each(function(){var b=a(this),c=b.data("roundabout"),e=-1,f={bearing:c.bearing,tilt:c.tilt,stage:{width:Math.floor(a(this).width()*.9),height:Math.floor(a(this).height()*.9)},animating:c.animating,inFocus:c.childInFocus,focusBearingRadian:d.degToRad.apply(null,[c.focusBearing]),shape:a.roundaboutShapes[c.shape]||a.roundaboutShapes[a.roundaboutShapes.def]};f.midStage={width:f.stage.width/2,height:f.stage.height/2};f.nudge={width:f.midStage.width+f.stage.width*.05,height:f.midStage.height+f.stage.height*.05};f.zValues={min:c.minZ,max:c.maxZ,diff:c.maxZ-c.minZ};f.opacity={min:c.minOpacity,max:c.maxOpacity,diff:c.maxOpacity-c.minOpacity};f.scale={min:c.minScale,max:c.maxScale,diff:c.maxScale-c.minScale};b.children(c.childSelector).each(function(g){if(d.updateChild.apply(b,[a(this),f,g,function(){a(this).trigger("ready")}])&&(!f.animating||c.lastAnimationStep)){e=g;a(this).addClass("roundabout-in-focus")}else{a(this).removeClass("roundabout-in-focus")}});if(e!==f.inFocus){if(c.triggerBlurEvents){b.children(c.childSelector).eq(f.inFocus).trigger("blur")}c.childInFocus=e;if(c.triggerFocusEvents&&e!==-1){b.children(c.childSelector).eq(e).trigger("focus")}}b.trigger("childrenUpdated")})},updateChild:function(b,c,e,f){var g,h=this,i=a(b),j=i.data("roundabout"),k=[],l=d.degToRad.apply(null,[360-j.degrees+c.bearing]);f=f||function(){};l=d.normalizeRad.apply(null,[l]);g=c.shape(l,c.focusBearingRadian,c.tilt);g.scale=g.scale>1?1:g.scale;g.adjustedScale=(c.scale.min+c.scale.diff*g.scale).toFixed(4);g.width=(g.adjustedScale*j.startWidth).toFixed(4);g.height=(g.adjustedScale*j.startHeight).toFixed(4);i.css({left:(g.x*c.midStage.width+c.nudge.width-g.width/2).toFixed(0)+"px",top:(g.y*c.midStage.height+c.nudge.height-g.height/2).toFixed(0)+"px",width:g.width+"px",height:g.height+"px",opacity:(c.opacity.min+c.opacity.diff*g.scale).toFixed(2),zIndex:Math.round(c.zValues.min+c.zValues.diff*g.z),fontSize:(g.adjustedScale*j.startFontSize).toFixed(1)+"px"});j.currentScale=g.adjustedScale;if(h.data("roundabout").debug){k.push('
-Metamaps is a platform for visioning, magic making, productive conversation, understanding something, innovation, free style weaving and all night brainstorming.
+
+
+
+
\ No newline at end of file
diff --git a/app/views/main/paq.html.erb b/app/views/main/paq.html.erb
index 82bf601b..580fce86 100644
--- a/app/views/main/paq.html.erb
+++ b/app/views/main/paq.html.erb
@@ -35,7 +35,6 @@
How can I participate, or support the project?
We welcome contributions in many forms. One of the easiest and best things you can do is to keep on mapping your ideas into the commons on the platform! If you're a developer interested in advancing the technology, contact us and take a look around our Github. Designers and others with professional skills can get in touch about opportunities for freelance collaboration through our innovative Open Value Network organizational structure for business development opportunities. Financial contributions are greatly appreciated in support of our work, and can be made by supporting us on Flattr or donating BitCoin. All financial contributions are transparently recorded in our value accounting.
-
BTC Address: 14GontNS1FKoiTQDEB5WBCUDZaFTiyxkzN
Are you making money from it? Do you plan to?
To date, the Metamaps.cc project has been supported by volunteers and small grants or donations. We intend to establish an open collaborative environment to pursue revenue opportunities in an agile and equitable fashion by configuring products and services based on the open source Metamaps technology. Stay tuned for further info via our blog and social media, or get in touch if you'd like to join the team!
diff --git a/app/views/maps/_homemap.html.erb b/app/views/maps/_homemap.html.erb
new file mode 100644
index 00000000..3f6c0ebd
--- /dev/null
+++ b/app/views/maps/_homemap.html.erb
@@ -0,0 +1,31 @@
+<%#
+ # @file
+ # Shows a map as a card.
+ # Any list of maps uses this rendering.
+ #%>
+
diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb
index 183e9128..bd436df1 100644
--- a/config/initializers/devise.rb
+++ b/config/initializers/devise.rb
@@ -10,7 +10,7 @@ Devise.setup do |config|
# config.mailer = "Devise::Mailer"
if Rails.env.production?
- #config.secret_key = 'd91ba0da95749174ee2b8922034783cbde4945409ed28b13383e18e72844beb74467f8199e9e216f0687cd2290c6e46bf74da24486d14bba3671d76c5b10c753'
+ config.secret_key = 'd91ba0da95749174ee2b8922034783cbde4945409ed28b13383e18e72844beb74467f8199e9e216f0687cd2290c6e46bf74da24486d14bba3671d76c5b10c753'
end
# ==> ORM configuration
diff --git a/config/initializers/redis.rb b/config/initializers/redis.rb
index 3acdbeae..85937713 100644
--- a/config/initializers/redis.rb
+++ b/config/initializers/redis.rb
@@ -1,6 +1,6 @@
-#if Rails.env.development?
+if Rails.env.development?
$redis = Redis.new(:host => 'localhost', :port=> 6379)
-#elsif Rails.env.production?
-# uri = URI.parse(ENV["REDISTOGO_URL"])
-# $redis = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
-#end
\ No newline at end of file
+elsif Rails.env.production?
+ uri = URI.parse(ENV["REDISTOGO_URL"])
+ $redis = Redis.new(:host => uri.host, :port => uri.port, :password => uri.password)
+end
\ No newline at end of file
diff --git a/public/assets/Fonts/Lato-Lig-webfont-1435188a694a7d5e29cf4a3288ff3e36.eot b/public/assets/Fonts/Lato-Lig-webfont-1435188a694a7d5e29cf4a3288ff3e36.eot
deleted file mode 100644
index 42265967..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont-1435188a694a7d5e29cf4a3288ff3e36.eot and /dev/null differ
diff --git a/public/assets/Fonts/Lato-Lig-webfont-47c2912f319ae759c3b1cd558b080c33.woff b/public/assets/Fonts/Lato-Lig-webfont-47c2912f319ae759c3b1cd558b080c33.woff
deleted file mode 100644
index 0c337a6a..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont-47c2912f319ae759c3b1cd558b080c33.woff and /dev/null differ
diff --git a/public/assets/Fonts/Lato-Lig-webfont-496f32fb28e2be2d6a4b41f1c7e37cc1.svg b/public/assets/Fonts/Lato-Lig-webfont-496f32fb28e2be2d6a4b41f1c7e37cc1.svg
deleted file mode 100644
index e89a231a..00000000
--- a/public/assets/Fonts/Lato-Lig-webfont-496f32fb28e2be2d6a4b41f1c7e37cc1.svg
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/public/assets/Fonts/Lato-Lig-webfont-4b8f0d5ac83e783eb84848ff3254685c.ttf b/public/assets/Fonts/Lato-Lig-webfont-4b8f0d5ac83e783eb84848ff3254685c.ttf
deleted file mode 100644
index 86b4e957..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont-4b8f0d5ac83e783eb84848ff3254685c.ttf and /dev/null differ
diff --git a/public/assets/Fonts/Lato-Lig-webfont.eot b/public/assets/Fonts/Lato-Lig-webfont.eot
deleted file mode 100644
index 42265967..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont.eot and /dev/null differ
diff --git a/public/assets/Fonts/Lato-Lig-webfont.svg b/public/assets/Fonts/Lato-Lig-webfont.svg
deleted file mode 100644
index e89a231a..00000000
--- a/public/assets/Fonts/Lato-Lig-webfont.svg
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/public/assets/Fonts/Lato-Lig-webfont.ttf b/public/assets/Fonts/Lato-Lig-webfont.ttf
deleted file mode 100644
index 86b4e957..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont.ttf and /dev/null differ
diff --git a/public/assets/Fonts/Lato-Lig-webfont.woff b/public/assets/Fonts/Lato-Lig-webfont.woff
deleted file mode 100644
index 0c337a6a..00000000
Binary files a/public/assets/Fonts/Lato-Lig-webfont.woff and /dev/null differ
diff --git a/public/assets/MMCCicon_add-e907e5cd1adb7cee2cacd99aabf8ed5d.png b/public/assets/MMCCicon_add-e907e5cd1adb7cee2cacd99aabf8ed5d.png
deleted file mode 100644
index fdb4045f..00000000
Binary files a/public/assets/MMCCicon_add-e907e5cd1adb7cee2cacd99aabf8ed5d.png and /dev/null differ
diff --git a/public/assets/MMCCicon_add.png b/public/assets/MMCCicon_add.png
deleted file mode 100644
index fdb4045f..00000000
Binary files a/public/assets/MMCCicon_add.png and /dev/null differ
diff --git a/public/assets/MMCCicon_add_map-b6c2f61965518fcf1a48cd22d18783b5.png b/public/assets/MMCCicon_add_map-b6c2f61965518fcf1a48cd22d18783b5.png
deleted file mode 100644
index af4832b7..00000000
Binary files a/public/assets/MMCCicon_add_map-b6c2f61965518fcf1a48cd22d18783b5.png and /dev/null differ
diff --git a/public/assets/MMCCicon_add_map.png b/public/assets/MMCCicon_add_map.png
deleted file mode 100644
index af4832b7..00000000
Binary files a/public/assets/MMCCicon_add_map.png and /dev/null differ
diff --git a/public/assets/MMCCicon_commons-51c9d948f0f791cf52aca4e294e48975.png b/public/assets/MMCCicon_commons-51c9d948f0f791cf52aca4e294e48975.png
deleted file mode 100644
index 1eed3c5b..00000000
Binary files a/public/assets/MMCCicon_commons-51c9d948f0f791cf52aca4e294e48975.png and /dev/null differ
diff --git a/public/assets/MMCCicon_commons.png b/public/assets/MMCCicon_commons.png
deleted file mode 100644
index 1eed3c5b..00000000
Binary files a/public/assets/MMCCicon_commons.png and /dev/null differ
diff --git a/public/assets/MMCCicon_commons_black-0838a93739999edccd2536ac78ca40aa.png b/public/assets/MMCCicon_commons_black-0838a93739999edccd2536ac78ca40aa.png
deleted file mode 100644
index 4f06fed8..00000000
Binary files a/public/assets/MMCCicon_commons_black-0838a93739999edccd2536ac78ca40aa.png and /dev/null differ
diff --git a/public/assets/MMCCicon_commons_black.png b/public/assets/MMCCicon_commons_black.png
deleted file mode 100644
index 4f06fed8..00000000
Binary files a/public/assets/MMCCicon_commons_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_delete_black-12da9e8e5ebba4f4bdbcf0c51b7edc86.png b/public/assets/MMCCicon_delete_black-12da9e8e5ebba4f4bdbcf0c51b7edc86.png
deleted file mode 100644
index 017a1adf..00000000
Binary files a/public/assets/MMCCicon_delete_black-12da9e8e5ebba4f4bdbcf0c51b7edc86.png and /dev/null differ
diff --git a/public/assets/MMCCicon_delete_black.png b/public/assets/MMCCicon_delete_black.png
deleted file mode 100644
index 017a1adf..00000000
Binary files a/public/assets/MMCCicon_delete_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_delete_grey-139563eb178ac12911430f31c487eff6.png b/public/assets/MMCCicon_delete_grey-139563eb178ac12911430f31c487eff6.png
deleted file mode 100644
index 4ba2b136..00000000
Binary files a/public/assets/MMCCicon_delete_grey-139563eb178ac12911430f31c487eff6.png and /dev/null differ
diff --git a/public/assets/MMCCicon_delete_grey.png b/public/assets/MMCCicon_delete_grey.png
deleted file mode 100644
index 4ba2b136..00000000
Binary files a/public/assets/MMCCicon_delete_grey.png and /dev/null differ
diff --git a/public/assets/MMCCicon_filter-8dd344476ca9fb88261938acb66d2c79.png b/public/assets/MMCCicon_filter-8dd344476ca9fb88261938acb66d2c79.png
deleted file mode 100644
index afb23324..00000000
Binary files a/public/assets/MMCCicon_filter-8dd344476ca9fb88261938acb66d2c79.png and /dev/null differ
diff --git a/public/assets/MMCCicon_filter.png b/public/assets/MMCCicon_filter.png
deleted file mode 100644
index afb23324..00000000
Binary files a/public/assets/MMCCicon_filter.png and /dev/null differ
diff --git a/public/assets/MMCCicon_filter2-2ce402ad9cc218a3a6ac5e86ae0f0a03.png b/public/assets/MMCCicon_filter2-2ce402ad9cc218a3a6ac5e86ae0f0a03.png
deleted file mode 100644
index 5b50ffdd..00000000
Binary files a/public/assets/MMCCicon_filter2-2ce402ad9cc218a3a6ac5e86ae0f0a03.png and /dev/null differ
diff --git a/public/assets/MMCCicon_filter2.png b/public/assets/MMCCicon_filter2.png
deleted file mode 100644
index 5b50ffdd..00000000
Binary files a/public/assets/MMCCicon_filter2.png and /dev/null differ
diff --git a/public/assets/MMCCicon_go-aae580938b3ea29afbe3de759feee359.png b/public/assets/MMCCicon_go-aae580938b3ea29afbe3de759feee359.png
deleted file mode 100644
index e35a0f87..00000000
Binary files a/public/assets/MMCCicon_go-aae580938b3ea29afbe3de759feee359.png and /dev/null differ
diff --git a/public/assets/MMCCicon_go.png b/public/assets/MMCCicon_go.png
deleted file mode 100644
index e35a0f87..00000000
Binary files a/public/assets/MMCCicon_go.png and /dev/null differ
diff --git a/public/assets/MMCCicon_help-dfde3a342abc809a6508695a75ea9b87.png b/public/assets/MMCCicon_help-dfde3a342abc809a6508695a75ea9b87.png
deleted file mode 100644
index 16cd1894..00000000
Binary files a/public/assets/MMCCicon_help-dfde3a342abc809a6508695a75ea9b87.png and /dev/null differ
diff --git a/public/assets/MMCCicon_help.png b/public/assets/MMCCicon_help.png
deleted file mode 100644
index 16cd1894..00000000
Binary files a/public/assets/MMCCicon_help.png and /dev/null differ
diff --git a/public/assets/MMCCicon_hide-e2fcfe3fcaeef87d07322aeea2b2af37.png b/public/assets/MMCCicon_hide-e2fcfe3fcaeef87d07322aeea2b2af37.png
deleted file mode 100644
index 80ea7276..00000000
Binary files a/public/assets/MMCCicon_hide-e2fcfe3fcaeef87d07322aeea2b2af37.png and /dev/null differ
diff --git a/public/assets/MMCCicon_hide.png b/public/assets/MMCCicon_hide.png
deleted file mode 100644
index 80ea7276..00000000
Binary files a/public/assets/MMCCicon_hide.png and /dev/null differ
diff --git a/public/assets/MMCCicon_info-76fbf35e20e1bb6facb3e14254543c9c.png b/public/assets/MMCCicon_info-76fbf35e20e1bb6facb3e14254543c9c.png
deleted file mode 100644
index 4594cba0..00000000
Binary files a/public/assets/MMCCicon_info-76fbf35e20e1bb6facb3e14254543c9c.png and /dev/null differ
diff --git a/public/assets/MMCCicon_info.png b/public/assets/MMCCicon_info.png
deleted file mode 100644
index 4594cba0..00000000
Binary files a/public/assets/MMCCicon_info.png and /dev/null differ
diff --git a/public/assets/MMCCicon_invite-33ce02d3a0500b602c15e9192c3c4f66.png b/public/assets/MMCCicon_invite-33ce02d3a0500b602c15e9192c3c4f66.png
deleted file mode 100644
index 347ddc02..00000000
Binary files a/public/assets/MMCCicon_invite-33ce02d3a0500b602c15e9192c3c4f66.png and /dev/null differ
diff --git a/public/assets/MMCCicon_invite.png b/public/assets/MMCCicon_invite.png
deleted file mode 100644
index 347ddc02..00000000
Binary files a/public/assets/MMCCicon_invite.png and /dev/null differ
diff --git a/public/assets/MMCCicon_link-32bc019e1ba44c73c8898de7ca0de1fa.png b/public/assets/MMCCicon_link-32bc019e1ba44c73c8898de7ca0de1fa.png
deleted file mode 100644
index 8bd1ee24..00000000
Binary files a/public/assets/MMCCicon_link-32bc019e1ba44c73c8898de7ca0de1fa.png and /dev/null differ
diff --git a/public/assets/MMCCicon_link.png b/public/assets/MMCCicon_link.png
deleted file mode 100644
index 8bd1ee24..00000000
Binary files a/public/assets/MMCCicon_link.png and /dev/null differ
diff --git a/public/assets/MMCCicon_logout-2b7d4dfff8cdc4d38089c082ac0c6929.png b/public/assets/MMCCicon_logout-2b7d4dfff8cdc4d38089c082ac0c6929.png
deleted file mode 100644
index 5f22796f..00000000
Binary files a/public/assets/MMCCicon_logout-2b7d4dfff8cdc4d38089c082ac0c6929.png and /dev/null differ
diff --git a/public/assets/MMCCicon_logout.png b/public/assets/MMCCicon_logout.png
deleted file mode 100644
index 5f22796f..00000000
Binary files a/public/assets/MMCCicon_logout.png and /dev/null differ
diff --git a/public/assets/MMCCicon_map-77c3768601370ee04d15f7da448fee91.png b/public/assets/MMCCicon_map-77c3768601370ee04d15f7da448fee91.png
deleted file mode 100644
index e1a61d89..00000000
Binary files a/public/assets/MMCCicon_map-77c3768601370ee04d15f7da448fee91.png and /dev/null differ
diff --git a/public/assets/MMCCicon_map.png b/public/assets/MMCCicon_map.png
deleted file mode 100644
index e1a61d89..00000000
Binary files a/public/assets/MMCCicon_map.png and /dev/null differ
diff --git a/public/assets/MMCCicon_map_black-f07d554e21d2f064d72d94f33efec39f.png b/public/assets/MMCCicon_map_black-f07d554e21d2f064d72d94f33efec39f.png
deleted file mode 100644
index abefa2a1..00000000
Binary files a/public/assets/MMCCicon_map_black-f07d554e21d2f064d72d94f33efec39f.png and /dev/null differ
diff --git a/public/assets/MMCCicon_map_black.png b/public/assets/MMCCicon_map_black.png
deleted file mode 100644
index abefa2a1..00000000
Binary files a/public/assets/MMCCicon_map_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_mapper-3d7a6f42563271141b72483efa7701d2.png b/public/assets/MMCCicon_mapper-3d7a6f42563271141b72483efa7701d2.png
deleted file mode 100644
index 0e9c3207..00000000
Binary files a/public/assets/MMCCicon_mapper-3d7a6f42563271141b72483efa7701d2.png and /dev/null differ
diff --git a/public/assets/MMCCicon_mapper.png b/public/assets/MMCCicon_mapper.png
deleted file mode 100644
index 0e9c3207..00000000
Binary files a/public/assets/MMCCicon_mapper.png and /dev/null differ
diff --git a/public/assets/MMCCicon_mapper_black-8e5daace6edd134213588252f1426e10.png b/public/assets/MMCCicon_mapper_black-8e5daace6edd134213588252f1426e10.png
deleted file mode 100644
index a324b3a9..00000000
Binary files a/public/assets/MMCCicon_mapper_black-8e5daace6edd134213588252f1426e10.png and /dev/null differ
diff --git a/public/assets/MMCCicon_mapper_black.png b/public/assets/MMCCicon_mapper_black.png
deleted file mode 100644
index a324b3a9..00000000
Binary files a/public/assets/MMCCicon_mapper_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_maximize_arrow-d529ebb50a2254187a1d42e7ec496eaa.png b/public/assets/MMCCicon_maximize_arrow-d529ebb50a2254187a1d42e7ec496eaa.png
deleted file mode 100644
index 1fe42d26..00000000
Binary files a/public/assets/MMCCicon_maximize_arrow-d529ebb50a2254187a1d42e7ec496eaa.png and /dev/null differ
diff --git a/public/assets/MMCCicon_maximize_arrow.png b/public/assets/MMCCicon_maximize_arrow.png
deleted file mode 100644
index 1fe42d26..00000000
Binary files a/public/assets/MMCCicon_maximize_arrow.png and /dev/null differ
diff --git a/public/assets/MMCCicon_maximize_arrow_black-e74d6a248225791c761025c94dd6cc67.png b/public/assets/MMCCicon_maximize_arrow_black-e74d6a248225791c761025c94dd6cc67.png
deleted file mode 100644
index 5196c38e..00000000
Binary files a/public/assets/MMCCicon_maximize_arrow_black-e74d6a248225791c761025c94dd6cc67.png and /dev/null differ
diff --git a/public/assets/MMCCicon_maximize_arrow_black.png b/public/assets/MMCCicon_maximize_arrow_black.png
deleted file mode 100644
index 5196c38e..00000000
Binary files a/public/assets/MMCCicon_maximize_arrow_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_metacode_set-f4e1e0a7c9e66f8d61ded339704f9ef6.png b/public/assets/MMCCicon_metacode_set-f4e1e0a7c9e66f8d61ded339704f9ef6.png
deleted file mode 100644
index 98aea34a..00000000
Binary files a/public/assets/MMCCicon_metacode_set-f4e1e0a7c9e66f8d61ded339704f9ef6.png and /dev/null differ
diff --git a/public/assets/MMCCicon_metacode_set.png b/public/assets/MMCCicon_metacode_set.png
deleted file mode 100644
index 98aea34a..00000000
Binary files a/public/assets/MMCCicon_metacode_set.png and /dev/null differ
diff --git a/public/assets/MMCCicon_minimize_arrow-8923745a55d45e84fcd5ce8c0b90d042.png b/public/assets/MMCCicon_minimize_arrow-8923745a55d45e84fcd5ce8c0b90d042.png
deleted file mode 100644
index 2aad516c..00000000
Binary files a/public/assets/MMCCicon_minimize_arrow-8923745a55d45e84fcd5ce8c0b90d042.png and /dev/null differ
diff --git a/public/assets/MMCCicon_minimize_arrow.png b/public/assets/MMCCicon_minimize_arrow.png
deleted file mode 100644
index 2aad516c..00000000
Binary files a/public/assets/MMCCicon_minimize_arrow.png and /dev/null differ
diff --git a/public/assets/MMCCicon_minimize_arrow_black-7fcdd44ae9658aafab1afe8b845a67e4.png b/public/assets/MMCCicon_minimize_arrow_black-7fcdd44ae9658aafab1afe8b845a67e4.png
deleted file mode 100644
index cb1a83b7..00000000
Binary files a/public/assets/MMCCicon_minimize_arrow_black-7fcdd44ae9658aafab1afe8b845a67e4.png and /dev/null differ
diff --git a/public/assets/MMCCicon_minimize_arrow_black.png b/public/assets/MMCCicon_minimize_arrow_black.png
deleted file mode 100644
index cb1a83b7..00000000
Binary files a/public/assets/MMCCicon_minimize_arrow_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_pop-out-f929f9f904f0dde84210a68980110e9b.png b/public/assets/MMCCicon_pop-out-f929f9f904f0dde84210a68980110e9b.png
deleted file mode 100644
index ca3ecd45..00000000
Binary files a/public/assets/MMCCicon_pop-out-f929f9f904f0dde84210a68980110e9b.png and /dev/null differ
diff --git a/public/assets/MMCCicon_pop-out.png b/public/assets/MMCCicon_pop-out.png
deleted file mode 100644
index ca3ecd45..00000000
Binary files a/public/assets/MMCCicon_pop-out.png and /dev/null differ
diff --git a/public/assets/MMCCicon_pop-out_black-a0fe60f38328f60a42e4e59472c669a2.png b/public/assets/MMCCicon_pop-out_black-a0fe60f38328f60a42e4e59472c669a2.png
deleted file mode 100644
index 7db39126..00000000
Binary files a/public/assets/MMCCicon_pop-out_black-a0fe60f38328f60a42e4e59472c669a2.png and /dev/null differ
diff --git a/public/assets/MMCCicon_pop-out_black.png b/public/assets/MMCCicon_pop-out_black.png
deleted file mode 100644
index 7db39126..00000000
Binary files a/public/assets/MMCCicon_pop-out_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_private-9de86555fbdb4a6acafb0082678c07bd.png b/public/assets/MMCCicon_private-9de86555fbdb4a6acafb0082678c07bd.png
deleted file mode 100644
index 50e98e18..00000000
Binary files a/public/assets/MMCCicon_private-9de86555fbdb4a6acafb0082678c07bd.png and /dev/null differ
diff --git a/public/assets/MMCCicon_private.png b/public/assets/MMCCicon_private.png
deleted file mode 100644
index 50e98e18..00000000
Binary files a/public/assets/MMCCicon_private.png and /dev/null differ
diff --git a/public/assets/MMCCicon_private_black-0270d490f6ac12e81fa60182b604b8ce.png b/public/assets/MMCCicon_private_black-0270d490f6ac12e81fa60182b604b8ce.png
deleted file mode 100644
index 076205f6..00000000
Binary files a/public/assets/MMCCicon_private_black-0270d490f6ac12e81fa60182b604b8ce.png and /dev/null differ
diff --git a/public/assets/MMCCicon_private_black.png b/public/assets/MMCCicon_private_black.png
deleted file mode 100644
index 076205f6..00000000
Binary files a/public/assets/MMCCicon_private_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_public-488184590f4ad9d8ded7bb45cfb3e2d2.png b/public/assets/MMCCicon_public-488184590f4ad9d8ded7bb45cfb3e2d2.png
deleted file mode 100644
index e8b51410..00000000
Binary files a/public/assets/MMCCicon_public-488184590f4ad9d8ded7bb45cfb3e2d2.png and /dev/null differ
diff --git a/public/assets/MMCCicon_public.png b/public/assets/MMCCicon_public.png
deleted file mode 100644
index e8b51410..00000000
Binary files a/public/assets/MMCCicon_public.png and /dev/null differ
diff --git a/public/assets/MMCCicon_public_black-3dfabdcce6d4dddafdbed8d45d1d51ae.png b/public/assets/MMCCicon_public_black-3dfabdcce6d4dddafdbed8d45d1d51ae.png
deleted file mode 100644
index 950c49e4..00000000
Binary files a/public/assets/MMCCicon_public_black-3dfabdcce6d4dddafdbed8d45d1d51ae.png and /dev/null differ
diff --git a/public/assets/MMCCicon_public_black.png b/public/assets/MMCCicon_public_black.png
deleted file mode 100644
index 950c49e4..00000000
Binary files a/public/assets/MMCCicon_public_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_realtime_blue-7d74516f638c995156bffae310aeed7a.png b/public/assets/MMCCicon_realtime_blue-7d74516f638c995156bffae310aeed7a.png
deleted file mode 100644
index e821e243..00000000
Binary files a/public/assets/MMCCicon_realtime_blue-7d74516f638c995156bffae310aeed7a.png and /dev/null differ
diff --git a/public/assets/MMCCicon_realtime_blue.png b/public/assets/MMCCicon_realtime_blue.png
deleted file mode 100644
index e821e243..00000000
Binary files a/public/assets/MMCCicon_realtime_blue.png and /dev/null differ
diff --git a/public/assets/MMCCicon_realtime_junto-9264f28a0d186ea4b0b66140bcd8ec15.png b/public/assets/MMCCicon_realtime_junto-9264f28a0d186ea4b0b66140bcd8ec15.png
deleted file mode 100644
index 4f687b4d..00000000
Binary files a/public/assets/MMCCicon_realtime_junto-9264f28a0d186ea4b0b66140bcd8ec15.png and /dev/null differ
diff --git a/public/assets/MMCCicon_realtime_junto.png b/public/assets/MMCCicon_realtime_junto.png
deleted file mode 100644
index 4f687b4d..00000000
Binary files a/public/assets/MMCCicon_realtime_junto.png and /dev/null differ
diff --git a/public/assets/MMCCicon_remove_from_map_black-b4afbba1fce0be2535c05de7a9efde1c.png b/public/assets/MMCCicon_remove_from_map_black-b4afbba1fce0be2535c05de7a9efde1c.png
deleted file mode 100644
index 9ddc204f..00000000
Binary files a/public/assets/MMCCicon_remove_from_map_black-b4afbba1fce0be2535c05de7a9efde1c.png and /dev/null differ
diff --git a/public/assets/MMCCicon_remove_from_map_black.png b/public/assets/MMCCicon_remove_from_map_black.png
deleted file mode 100644
index 9ddc204f..00000000
Binary files a/public/assets/MMCCicon_remove_from_map_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_remove_from_map_grey-5219f9314ed14579f8cd553d9e09db87.png b/public/assets/MMCCicon_remove_from_map_grey-5219f9314ed14579f8cd553d9e09db87.png
deleted file mode 100644
index 0e863158..00000000
Binary files a/public/assets/MMCCicon_remove_from_map_grey-5219f9314ed14579f8cd553d9e09db87.png and /dev/null differ
diff --git a/public/assets/MMCCicon_remove_from_map_grey.png b/public/assets/MMCCicon_remove_from_map_grey.png
deleted file mode 100644
index 0e863158..00000000
Binary files a/public/assets/MMCCicon_remove_from_map_grey.png and /dev/null differ
diff --git a/public/assets/MMCCicon_save_layout-c04a236e34eb85fced16fd4f3e05ed86.png b/public/assets/MMCCicon_save_layout-c04a236e34eb85fced16fd4f3e05ed86.png
deleted file mode 100644
index d163dfb5..00000000
Binary files a/public/assets/MMCCicon_save_layout-c04a236e34eb85fced16fd4f3e05ed86.png and /dev/null differ
diff --git a/public/assets/MMCCicon_save_layout.png b/public/assets/MMCCicon_save_layout.png
deleted file mode 100644
index d163dfb5..00000000
Binary files a/public/assets/MMCCicon_save_layout.png and /dev/null differ
diff --git a/public/assets/MMCCicon_save_new_map-bacfc82d1c0dc4b5799c3e1fcbc71a61.png b/public/assets/MMCCicon_save_new_map-bacfc82d1c0dc4b5799c3e1fcbc71a61.png
deleted file mode 100644
index 9138e632..00000000
Binary files a/public/assets/MMCCicon_save_new_map-bacfc82d1c0dc4b5799c3e1fcbc71a61.png and /dev/null differ
diff --git a/public/assets/MMCCicon_save_new_map.png b/public/assets/MMCCicon_save_new_map.png
deleted file mode 100644
index 9138e632..00000000
Binary files a/public/assets/MMCCicon_save_new_map.png and /dev/null differ
diff --git a/public/assets/MMCCicon_settings-b80201e3f081378771338f2a37afc64b.png b/public/assets/MMCCicon_settings-b80201e3f081378771338f2a37afc64b.png
deleted file mode 100644
index ae56c5a9..00000000
Binary files a/public/assets/MMCCicon_settings-b80201e3f081378771338f2a37afc64b.png and /dev/null differ
diff --git a/public/assets/MMCCicon_settings.png b/public/assets/MMCCicon_settings.png
deleted file mode 100644
index ae56c5a9..00000000
Binary files a/public/assets/MMCCicon_settings.png and /dev/null differ
diff --git a/public/assets/MMCCicon_synapse-ddb1ae0d586aa9b787244b3648bde538.png b/public/assets/MMCCicon_synapse-ddb1ae0d586aa9b787244b3648bde538.png
deleted file mode 100644
index 9fea87f0..00000000
Binary files a/public/assets/MMCCicon_synapse-ddb1ae0d586aa9b787244b3648bde538.png and /dev/null differ
diff --git a/public/assets/MMCCicon_synapse.png b/public/assets/MMCCicon_synapse.png
deleted file mode 100644
index 9fea87f0..00000000
Binary files a/public/assets/MMCCicon_synapse.png and /dev/null differ
diff --git a/public/assets/MMCCicon_synapse_black-e1435858238dd7fa7d47ab313beb5e19.png b/public/assets/MMCCicon_synapse_black-e1435858238dd7fa7d47ab313beb5e19.png
deleted file mode 100644
index 1f96a7e9..00000000
Binary files a/public/assets/MMCCicon_synapse_black-e1435858238dd7fa7d47ab313beb5e19.png and /dev/null differ
diff --git a/public/assets/MMCCicon_synapse_black.png b/public/assets/MMCCicon_synapse_black.png
deleted file mode 100644
index 1f96a7e9..00000000
Binary files a/public/assets/MMCCicon_synapse_black.png and /dev/null differ
diff --git a/public/assets/MMCCicon_topic-f3343e0b8ed9c74cd084e65a9a2ae9a8.png b/public/assets/MMCCicon_topic-f3343e0b8ed9c74cd084e65a9a2ae9a8.png
deleted file mode 100644
index 90457c0b..00000000
Binary files a/public/assets/MMCCicon_topic-f3343e0b8ed9c74cd084e65a9a2ae9a8.png and /dev/null differ
diff --git a/public/assets/MMCCicon_topic.png b/public/assets/MMCCicon_topic.png
deleted file mode 100644
index 90457c0b..00000000
Binary files a/public/assets/MMCCicon_topic.png and /dev/null differ
diff --git a/public/assets/MMCCicon_wand-2881f819fcbe04f787bf5d781f302cbc.png b/public/assets/MMCCicon_wand-2881f819fcbe04f787bf5d781f302cbc.png
deleted file mode 100644
index 409d1948..00000000
Binary files a/public/assets/MMCCicon_wand-2881f819fcbe04f787bf5d781f302cbc.png and /dev/null differ
diff --git a/public/assets/MMCCicon_wand.png b/public/assets/MMCCicon_wand.png
deleted file mode 100644
index 409d1948..00000000
Binary files a/public/assets/MMCCicon_wand.png and /dev/null differ
diff --git a/public/assets/WebSocketMain-0de980edb45e36785bf9d862baa032bb.swf b/public/assets/WebSocketMain-0de980edb45e36785bf9d862baa032bb.swf
deleted file mode 100644
index 20a451f5..00000000
Binary files a/public/assets/WebSocketMain-0de980edb45e36785bf9d862baa032bb.swf and /dev/null differ
diff --git a/public/assets/WebSocketMain.swf b/public/assets/WebSocketMain.swf
deleted file mode 100644
index 20a451f5..00000000
Binary files a/public/assets/WebSocketMain.swf and /dev/null differ
diff --git a/public/assets/WebSocketMainInsecure-c4377647e57e58cacc692c8a51afc9f8.swf b/public/assets/WebSocketMainInsecure-c4377647e57e58cacc692c8a51afc9f8.swf
deleted file mode 100644
index 5949ff3d..00000000
Binary files a/public/assets/WebSocketMainInsecure-c4377647e57e58cacc692c8a51afc9f8.swf and /dev/null differ
diff --git a/public/assets/WebSocketMainInsecure.swf b/public/assets/WebSocketMainInsecure.swf
deleted file mode 100644
index 5949ff3d..00000000
Binary files a/public/assets/WebSocketMainInsecure.swf and /dev/null differ
diff --git a/public/assets/action-abd8f2e892ebe608b9112249167fb64e.png b/public/assets/action-abd8f2e892ebe608b9112249167fb64e.png
deleted file mode 100644
index 1903ba8d..00000000
Binary files a/public/assets/action-abd8f2e892ebe608b9112249167fb64e.png and /dev/null differ
diff --git a/public/assets/action.png b/public/assets/action.png
deleted file mode 100644
index 1903ba8d..00000000
Binary files a/public/assets/action.png and /dev/null differ
diff --git a/public/assets/activity-d115f352e27307a6f15b34bde2c23a5e.png b/public/assets/activity-d115f352e27307a6f15b34bde2c23a5e.png
deleted file mode 100644
index a76c3b3e..00000000
Binary files a/public/assets/activity-d115f352e27307a6f15b34bde2c23a5e.png and /dev/null differ
diff --git a/public/assets/activity.png b/public/assets/activity.png
deleted file mode 100644
index a76c3b3e..00000000
Binary files a/public/assets/activity.png and /dev/null differ
diff --git a/public/assets/application-1e86b001d3bcaabff0c76f1492b0dc1e.js b/public/assets/application-1e86b001d3bcaabff0c76f1492b0dc1e.js
deleted file mode 100644
index 83f19673..00000000
--- a/public/assets/application-1e86b001d3bcaabff0c76f1492b0dc1e.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/*!
- * jQuery JavaScript Library v1.8.1
- * http://jquery.com/
- *
- * Includes Sizzle.js
- * http://sizzlejs.com/
- *
- * Copyright 2012 jQuery Foundation and other contributors
- * Released under the MIT license
- * http://jquery.org/license
- *
- * Date: Thu Aug 30 2012 17:17:22 GMT-0400 (Eastern Daylight Time)
- */
-function BestInPlaceEditor(e){this.element=e,this.initOptions(),this.bindForm(),this.initNil(),jQuery(this.activator).bind("click",{editor:this},this.clickHandler)}function switchVisible(e,t){categoryVisible[e]==1?hideCategory(e,t):categoryVisible[e]==0&&showCategory(e,t)}function hideCategory(e,t){t==null&&(t=500),Mconsole.graph.eachNode(function(t){t.getData("metacode")==e&&(t.setData("alpha",.4,"end"),t.eachAdjacency(function(e){e.setData("alpha",.4,"end")}))}),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:t})}function showCategory(e,t){t==null&&(t=500),Mconsole.graph.eachNode(function(t){t.getData("metacode")==e&&(t.setData("alpha",1,"end"),t.eachAdjacency(function(e){e.setData("alpha",1,"end")}))}),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:t})}function hideAll(e){e==null&&(e=500),Mconsole.graph.eachNode(function(e){e.setData("alpha",.4,"end"),e.eachAdjacency(function(e){e.setData("alpha",.2,"end")})}),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:e})}function showAll(e){e==null&&(e=500),Mconsole.graph.eachNode(function(e){e.setData("alpha",1,"end"),e.eachAdjacency(function(e){e.setData("alpha",.4,"end")})}),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:e})}function filterTopicsByMap(e){Mconsole.graph.eachNode(function(t){t.getData("inmaps").indexOf(parseInt(e))!==-1?t.setData("alpha",1,"end"):t.setData("alpha",.4,"end"),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:500})})}function filterTopicsByMapper(e){Mconsole.graph.eachNode(function(t){t.getData("userid").toString()==e?t.setData("alpha",1,"end"):t.setData("alpha",.4,"end"),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:500})})}function filterTopicsByName(e){Mconsole.graph.eachNode(function(t){nodeName=t.name.toLowerCase(),nodeName.indexOf(e)!==-1&&e!=""?t.setData("alpha",1,"end"):t.setData("alpha",.4,"end"),Mconsole.fx.animate({modes:["node-property:alpha","edge-property:alpha"],duration:500})})}function clearCanvas(){Mconsole.graph.eachNode(function(e){Mconsole.graph.removeNode(e.id)}),Mconsole.plot()}function clearCanvasExceptRoot(){var e=new Array;Mconsole.graph.eachNode(function(t){e.push(t.id)});var t=Mconsole.graph.nodes[Mconsole.root];e.forEach(function(e,n){e!=t.id&&Mconsole.graph.removeNode(e)}),fetchRelatives(t)}function selectEdgeOnClickHandler(e,t){if(Mconsole.busy)return;if(synapseWasDoubleClicked()){synapseDoubleClickHandler(e,t);return}var n=MetamapsModel.selectedEdges.indexOf(e);n==-1?n=!1:n!=-1&&(n=!0),n&&t.shiftKey?deselectEdge(e):!n&&t.shiftKey?selectEdge(e):n&&!t.shiftKey?deselectAllEdges():!n&&!t.shiftKey&&(deselectAllEdges(),selectEdge(e)),Mconsole.plot()}function synapseDoubleClickHandler(e,t){editEdge(e,t)}function synapseWasDoubleClicked(){var e=MetamapsModel.lastSynapseClick,t=Date.now();return MetamapsModel.lastSynapseClick=t,t-eDelete'),mapid&&userid!=null&&(r+='
Remove from Map
'),r+='
Hide until refresh
',mapid||(r+='
Center This Topic
'),r+='
Open In New Tab
',r+="",n.innerHTML=r,$(n).css({left:t.clientX,top:t.clientY}),$("#center-container").append(n),$(".rc-delete").click(function(){$(".rightclickmenu").remove();var e=MetamapsModel.selectedNodes.length,t=MetamapsModel.selectedEdges.length,n=e==1?"1 topic":e+" topics",r=t==1?"1 synapse":t+" synapses",i="You have "+n+" and "+r+" selected. ",s=confirm(i+"Are you sure you want to permanently delete them all? This will remove them from all maps they appear on.");s==1&&(deleteSelectedEdges(),deleteSelectedNodes())}),$(".rc-remove").click(function(){$(".rightclickmenu").remove(),hideSelectedEdges(),hideSelectedNodes()}),$(".rc-hide").click(function(){$(".rightclickmenu").remove(),hideSelectedEdges(),hideSelectedNodes()}),$(".rc-center").click(function(){$(".rightclickmenu").remove(),centerOn(e.id)}),$(".rc-popout").click(function(){$(".rightclickmenu").remove();var t=window.open("/topics/"+e.id,"_blank");t.focus()})}function canvasDoubleClickHandler(e,t){var n=MetamapsModel.lastCanvasClick,r=Date.now();MetamapsModel.lastCanvasClick=r,r-n=Mconsole.canvas.scaleOffsetX*d&&Mconsole.canvas.scaleOffsetX*d>=1&&Mconsole.canvas.scale(d,d),Mconsole.canvas.scaleOffsetX<.5?Mconsole.canvas.viz.labels.hideLabels(!0):Mconsole.canvas.scaleOffsetX>.5&&Mconsole.canvas.viz.labels.hideLabels(!1),lastDist=p}}function graphSettings(e,t){var n={injectInto:"infovis",Navigation:{enable:!0,panning:"avoid nodes",zooming:28},Node:{overridable:!0,color:"#2D6A5D",type:"customNode",dim:25},Edge:{overridable:!0,color:"#222222",type:"customEdge",lineWidth:2,alpha:.4},Label:{type:"Native",size:20,family:"arial",textBaseline:"hanging",color:"#DDD"},Tips:{enable:!1,onShow:function(e,t){}},Events:{enable:!0,enableForEdges:!0,onMouseMove:function(e,t,n){onMouseMoveHandler(e,t,n)},onDragMove:function(e,t,n){onDragMoveTopicHandler(e,t,n)},onDragEnd:function(e,t,n){onDragEndTopicHandler(e,t,n,!1)},onDragCancel:function(e,t,n){onDragCancelHandler(e,t,n,!1)},onTouchStart:function(e,t,n){Mconsole.events.touched=!0,touchPos=t.getPos();var r=Mconsole.canvas,i=r.translateOffsetX;oy=r.translateOffsetY,sx=r.scaleOffsetX,sy=r.scaleOffsetY,touchPos.x*=sx,touchPos.y*=sy,touchPos.x+=i,touchPos.y+=oy,touchDragNode=e},onTouchMove:function(e,t,n){touchDragNode?onDragMoveTopicHandler(touchDragNode,t,n):(touchPanZoomHandler(t,n),Mconsole.labels.hideLabel(Mconsole.graph.getNode(MetamapsModel.showcardInUse)))},onTouchEnd:function(e,t,n){},onTouchCancel:function(e,t,n){},onClick:function(e,t,n){if(MetamapsModel.boxStartCoordinates){Mconsole.busy=!1,MetamapsModel.boxEndCoordinates=t.getPos(),selectNodesWithBox();return}if(n.target.id!="infovis-canvas")return!1;e.nodeFrom?selectEdgeOnClickHandler(e,n):e&&!e.nodeFrom?selectNodeOnClickHandler(e,n):(MetamapsModel.didPan||hideCards(),canvasDoubleClickHandler(t.getPos(),n))},onRightClick:function(e,t,n){n.preventDefault(),n.stopPropagation(),e&&!e.nodeFrom?selectNodeOnRightClickHandler(e,n):e&&e.nodeFrom}},iterations:200,levelDistance:200};return t&&(n.Edge.type="customEdgeEmbed"),e=="centered"&&(n.background={CanvasStyles:{strokeStyle:"#333",lineWidth:1.5}},n.levelDistance=400,n.Events.enableForEdges=!0,n.Events.onDragEnd=function(e,t,n){onDragEndTopicHandler(e,t,n,!1)},n.Events.onDragCancel=function(e,t,n){onDragCancelHandler(e,t,n,!0)}),n}function hideCards(){$("#edit_synapse").hide(),MetamapsModel.edgecardInUse=null,hideCurrentCard(),$(".rightclickmenu").remove()}function drawSelectBox(e,t){Mconsole.plot();var n=Mconsole.canvas.getCtx(),r=MetamapsModel.boxStartCoordinates.x,i=MetamapsModel.boxStartCoordinates.y,s=e.getPos().x,o=e.getPos().y;Mconsole.plot(),n.beginPath(),n.moveTo(r,i),n.lineTo(r,o),n.lineTo(s,o),n.lineTo(s,i),n.lineTo(r,i),n.strokeStyle="black",n.stroke()}function selectNodesWithBox(){var e=MetamapsModel.boxStartCoordinates.x,t=MetamapsModel.boxStartCoordinates.y,n=MetamapsModel.boxEndCoordinates.x,r=MetamapsModel.boxEndCoordinates.y;Mconsole.graph.eachNode(function(i){var s=gType=="centered"?i.pos.toComplex().x:i.pos.x,o=gType=="centered"?i.pos.toComplex().y:i.pos.y;if(es&&s>n&&t>o&&o>r||e>s&&s>n&&to&&o>r){var u=MetamapsModel.selectedNodes.indexOf(i);u==-1?selectNode(i):u!=-1&&deselectNode(i)}}),MetamapsModel.boxStartCoordinates=!1,MetamapsModel.boxEndCoordinates=!1,Mconsole.plot()}function onMouseMoveHandler(e,t,n){if(Mconsole.busy)return;var e=t.getNode(),r=t.getEdge();if(e!=0){MetamapsModel.edgeHoveringOver&&onMouseLeave(MetamapsModel.edgeHoveringOver);return}r==0&&MetamapsModel.edgeHoveringOver!=0?onMouseLeave(MetamapsModel.edgeHoveringOver):r!=0&&MetamapsModel.edgeHoveringOver==0?onMouseEnter(r):r!=0&&MetamapsModel.edgeHoveringOver!=r&&(onMouseLeave(MetamapsModel.edgeHoveringOver),onMouseEnter(r)),MetamapsModel.edgeHoveringOver=r}function onMouseEnter(e){$("canvas").css("cursor","pointer");var t=MetamapsModel.selectedEdges.indexOf(e);t==-1&&(e.setData("showDesc",!0,"current"),e.setDataset("end",{lineWidth:4,alpha:1}),Mconsole.fx.animate({modes:["edge-property:lineWidth:color:alpha"],duration:100}),Mconsole.plot())}function onMouseLeave(e){$("canvas").css("cursor","default");var t=MetamapsModel.selectedEdges.indexOf(e);t==-1&&(e.setData("showDesc",!1,"current"),e.setDataset("end",{lineWidth:2,alpha:.4}),Mconsole.fx.animate({modes:["edge-property:lineWidth:color:alpha"],duration:100})),Mconsole.plot()}function onDragEndTopicHandler(e,t,n,r){if(tempInit&&tempNode2==null)$("#topic_addSynapse").val("true"),$("#new_topic").fadeIn("fast"),$("#topic_name").focus();else if(tempInit&&tempNode2!=null)$("#topic_addSynapse").val("false"),$("#synapse_topic1id").val(tempNode.id),$("#synapse_topic2id").val(tempNode2.id),$("#new_synapse").fadeIn("fast"),$("#synapse_desc").focus(),tempNode=null,tempNode2=null,tempInit=!1;else if(dragged&&dragged!=0&&goRealtime){saveLayout(dragged);for(var i=0;i$_name_$