├── .gitignore ├── .gitmodules ├── .travis.yml ├── Apps ├── .gitignore ├── 4Me │ ├── app.js │ ├── manifest.app │ └── ui │ │ └── index.html ├── BackMeUp │ ├── backmeup.app │ └── bmu.js ├── BloodPressureTracker │ ├── TODO │ ├── bloodpressuretracker.app │ ├── bptracker.js │ ├── html │ │ ├── index.html │ │ └── pickJournal.html │ └── js │ │ ├── base64.js │ │ ├── canvas2image.js │ │ ├── canvastext.js │ │ ├── excanvas.js │ │ ├── flotr-0.2.0-alpha.js │ │ ├── flotr.debug-0.2.0-alpha.js │ │ └── prototype.js ├── DevDocs │ ├── md2html.js │ ├── package.json │ └── static │ │ ├── chat.html │ │ ├── css │ │ ├── common.css │ │ └── pre.css │ │ ├── explorer.html │ │ ├── index.html │ │ ├── js │ │ ├── common.js │ │ ├── explorer.js │ │ ├── ga.js │ │ └── jquery.cookie.js │ │ ├── package.html │ │ ├── package.md │ │ ├── prettify │ │ ├── lang-apollo.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-n.js │ │ ├── lang-proto.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.css │ │ └── prettify.js │ │ ├── pure_min.js │ │ └── resources.json ├── FitBitBatteryNotifier │ ├── app.js │ ├── fitbitbatterynotifier.app │ └── package.json ├── FoursquareMayors │ ├── README.md │ ├── foursquaremayors-server.js │ ├── foursquaremayors.app │ └── static │ │ ├── css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ └── foursquaremayors-client.js ├── FoursquareStats │ ├── README.md │ ├── foursquarestats-server.js │ ├── foursquarestats.app │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ ├── smoothness │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.16.custom.css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ ├── foursquarestats-client.js │ │ └── jquery-ui-1.8.16.custom.min.js ├── HashTags │ ├── HashTags.app │ ├── hashtags.js │ ├── index.html │ └── js │ │ └── prototype.js ├── HelloLinks │ ├── README.md │ ├── hellolinks.app │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ └── hellolinks-client.js ├── HelloPHP │ ├── hello.php │ └── hellophp.app ├── HelloPhotos │ ├── README.md │ ├── hellophotos.app │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ └── hellophotos-client.js ├── HelloPlaces │ ├── README.md │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ └── style.css │ │ ├── img │ │ ├── foursquare-marker.png │ │ ├── foursquare.png │ │ ├── glatitude-marker.png │ │ ├── glatitude.png │ │ ├── instagram-marker.png │ │ ├── instagram.png │ │ ├── places-frame.png │ │ ├── twitter-marker.png │ │ └── twitter.png │ │ ├── index.html │ │ └── js │ │ ├── helloplaces.js │ │ ├── jquery.infinitescroll.min.js │ │ └── moment.min.js ├── HelloRuby │ ├── Gemfile │ ├── README.md │ ├── helloruby.app │ ├── helloruby.rb │ └── sinatra-locker.rb ├── LinkaLatte │ ├── .gitignore │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ ├── global.css │ │ ├── notready.css │ │ ├── reset.css │ │ └── style.css │ │ ├── img │ │ ├── 1x1-pixel.png │ │ ├── ajax-loader.gif │ │ ├── facebook.png │ │ ├── flickr.png │ │ ├── foursquare-logo.png │ │ ├── github.png │ │ ├── linked-in.png │ │ ├── mail.png │ │ ├── screenshot.png │ │ ├── twitter.png │ │ └── viewer-icon.png │ │ ├── index.html │ │ ├── js │ │ ├── allAlone.js │ │ ├── config.js.example │ │ ├── date.js │ │ ├── pure_min.js │ │ └── string.js │ │ └── notready.html ├── LongCal │ ├── app.js │ ├── manifest.app │ └── static │ │ ├── calendar.css │ │ ├── calendar.js │ │ ├── colorbrewer.css │ │ ├── d3.csv.js │ │ ├── d3.js │ │ ├── d3.time.js │ │ ├── index.html │ │ └── render.js ├── MergedContacts │ ├── .gitignore │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ └── style.css │ │ ├── img │ │ ├── silhouette.png │ │ └── social-icons │ │ │ ├── 16px │ │ │ ├── 500px.png │ │ │ ├── aboutme.png │ │ │ ├── addthis.png │ │ │ ├── amazon.png │ │ │ ├── aol.png │ │ │ ├── app-store-2.png │ │ │ ├── app-store.png │ │ │ ├── apple.png │ │ │ ├── bebo.png │ │ │ ├── bing.png │ │ │ ├── blip.png │ │ │ ├── blogger.png │ │ │ ├── button-blue.png │ │ │ ├── button-green.png │ │ │ ├── button-light-blue.png │ │ │ ├── button-orange.png │ │ │ ├── button-red.png │ │ │ ├── button-white.png │ │ │ ├── button-yellow.png │ │ │ ├── coroflot.png │ │ │ ├── daytum.png │ │ │ ├── delicious.png │ │ │ ├── design-bump.png │ │ │ ├── digg.png │ │ │ ├── dopplr.png │ │ │ ├── dribbble.png │ │ │ ├── drupal.png │ │ │ ├── ebay.png │ │ │ ├── ember.png │ │ │ ├── etsy.png │ │ │ ├── facebook.png │ │ │ ├── feedburner.png │ │ │ ├── flickr.png │ │ │ ├── foodspotting.png │ │ │ ├── forrst.png │ │ │ ├── foursquare.png │ │ │ ├── friendfeed.png │ │ │ ├── friendster.png │ │ │ ├── gcontacts.png │ │ │ ├── gdgt.png │ │ │ ├── github.png │ │ │ ├── google-buzz.png │ │ │ ├── google-plus-black.png │ │ │ ├── google-plus.png │ │ │ ├── google-talk.png │ │ │ ├── google.png │ │ │ ├── gowalla-2.png │ │ │ ├── gowalla.png │ │ │ ├── grooveshark.png │ │ │ ├── heart.png │ │ │ ├── hyves.png │ │ │ ├── icondock.png │ │ │ ├── icq.png │ │ │ ├── identi.png │ │ │ ├── imessage.png │ │ │ ├── instagram.png │ │ │ ├── itune.png │ │ │ ├── lastfm.png │ │ │ ├── linkedin.png │ │ │ ├── meetup.png │ │ │ ├── metacafe.png │ │ │ ├── microsoft.png │ │ │ ├── mister-wong.png │ │ │ ├── mixx.png │ │ │ ├── mobileme.png │ │ │ ├── msn.png │ │ │ ├── myspace.png │ │ │ ├── netvibes.png │ │ │ ├── newsvine.png │ │ │ ├── paypal.png │ │ │ ├── photobucket.png │ │ │ ├── picasa.png │ │ │ ├── pinterest.png │ │ │ ├── podcast.png │ │ │ ├── posterous.png │ │ │ ├── qik.png │ │ │ ├── quora.png │ │ │ ├── reddit.png │ │ │ ├── retweet.png │ │ │ ├── scribd.png │ │ │ ├── sharethis.png │ │ │ ├── skype.png │ │ │ ├── slashdot.png │ │ │ ├── slideshare.png │ │ │ ├── smugmug.png │ │ │ ├── social-behence.png │ │ │ ├── social-designfloat.png │ │ │ ├── social-email.png │ │ │ ├── social-rss.png │ │ │ ├── social-sharethis.png │ │ │ ├── soundcloud.png │ │ │ ├── spotify.png │ │ │ ├── squidoo.png │ │ │ ├── stackoverflow.png │ │ │ ├── star.png │ │ │ ├── stumbleupon.png │ │ │ ├── technorati.png │ │ │ ├── tumblr.png │ │ │ ├── twitter-2.png │ │ │ ├── twitter.png │ │ │ ├── viddler.png │ │ │ ├── vimeo.png │ │ │ ├── virb.png │ │ │ ├── w3.png │ │ │ ├── wikepedia.png │ │ │ ├── wordpress-2.png │ │ │ ├── wordpress.png │ │ │ ├── xing.png │ │ │ ├── yahoo-buzz.png │ │ │ ├── yahoo.png │ │ │ ├── yelp.png │ │ │ └── youtube.png │ │ │ ├── 24px │ │ │ ├── 500px.png │ │ │ ├── aboutme.png │ │ │ ├── add-this.png │ │ │ ├── amazon.png │ │ │ ├── aol.png │ │ │ ├── app-store-2.png │ │ │ ├── app-store.png │ │ │ ├── apple.png │ │ │ ├── bebo.png │ │ │ ├── behance.png │ │ │ ├── bing.png │ │ │ ├── blip.png │ │ │ ├── blogger.png │ │ │ ├── button-blue.png │ │ │ ├── button-green.png │ │ │ ├── button-light-blue.png │ │ │ ├── button-orange.png │ │ │ ├── button-red.png │ │ │ ├── button-white.png │ │ │ ├── button-yellow.png │ │ │ ├── coroflot.png │ │ │ ├── daytum.png │ │ │ ├── delicious.png │ │ │ ├── design-bump.png │ │ │ ├── designfloat.png │ │ │ ├── deviant-art.png │ │ │ ├── digg.png │ │ │ ├── dribbble.png │ │ │ ├── dropplr.png │ │ │ ├── drupal.png │ │ │ ├── ebay.png │ │ │ ├── email.png │ │ │ ├── ember.png │ │ │ ├── etsy.png │ │ │ ├── facebook.png │ │ │ ├── feedburner.png │ │ │ ├── flickr.png │ │ │ ├── foodspotting.png │ │ │ ├── forrst.png │ │ │ ├── foursquare.png │ │ │ ├── friendfeed.png │ │ │ ├── friendster.png │ │ │ ├── gcontacts.png │ │ │ ├── gdgt.png │ │ │ ├── github.png │ │ │ ├── google-buzz.png │ │ │ ├── google-plus-black.png │ │ │ ├── google-plus.png │ │ │ ├── google-talk.png │ │ │ ├── google.png │ │ │ ├── gowalla-2.png │ │ │ ├── gowalla.png │ │ │ ├── grooveshark.png │ │ │ ├── heart.png │ │ │ ├── hyves.png │ │ │ ├── icondock.png │ │ │ ├── icq.png │ │ │ ├── identi.png │ │ │ ├── imessage.png │ │ │ ├── instagram.png │ │ │ ├── itune.png │ │ │ ├── lastfm.png │ │ │ ├── linkedin.png │ │ │ ├── meetup.png │ │ │ ├── metacafe.png │ │ │ ├── microsoft.png │ │ │ ├── mister-wong.png │ │ │ ├── mixx.png │ │ │ ├── mobileme.png │ │ │ ├── msn.png │ │ │ ├── myspace.png │ │ │ ├── netvibes.png │ │ │ ├── newsvine.png │ │ │ ├── paypal.png │ │ │ ├── photobucket.png │ │ │ ├── picasa.png │ │ │ ├── pinterest.png │ │ │ ├── podcast.png │ │ │ ├── posterous.png │ │ │ ├── qik.png │ │ │ ├── quora.png │ │ │ ├── reddit.png │ │ │ ├── retweet.png │ │ │ ├── rss.png │ │ │ ├── scribd.png │ │ │ ├── sharethis.png │ │ │ ├── skype.png │ │ │ ├── slashdot.png │ │ │ ├── slideshare.png │ │ │ ├── smugmug.png │ │ │ ├── soundcloud.png │ │ │ ├── spotify.png │ │ │ ├── squidoo.png │ │ │ ├── stackoverflow.png │ │ │ ├── star.png │ │ │ ├── stumbleupon.png │ │ │ ├── technorati.png │ │ │ ├── tumblr.png │ │ │ ├── twitter-2.png │ │ │ ├── twitter.png │ │ │ ├── viddler.png │ │ │ ├── vimeo.png │ │ │ ├── virb.png │ │ │ ├── w3.png │ │ │ ├── wikepedia.png │ │ │ ├── wordpress-2.png │ │ │ ├── wordpress.png │ │ │ ├── xing.png │ │ │ ├── yahoo-buzz.png │ │ │ ├── yahoo.png │ │ │ ├── yelp.png │ │ │ └── youtube.png │ │ │ ├── 32px │ │ │ ├── 500px.png │ │ │ ├── aboutme.png │ │ │ ├── add-this.png │ │ │ ├── amazon.png │ │ │ ├── aol.png │ │ │ ├── app-store-2.png │ │ │ ├── app-store.png │ │ │ ├── apple.png │ │ │ ├── bebo.png │ │ │ ├── behance.png │ │ │ ├── bing.png │ │ │ ├── blip.png │ │ │ ├── blogger.png │ │ │ ├── button-blue.png │ │ │ ├── button-green.png │ │ │ ├── button-light-blue.png │ │ │ ├── button-orange.png │ │ │ ├── button-red.png │ │ │ ├── button-white.png │ │ │ ├── button-yellow.png │ │ │ ├── coroflot.png │ │ │ ├── daytum.png │ │ │ ├── delicious.png │ │ │ ├── design-bump.png │ │ │ ├── designfloat.png │ │ │ ├── deviant-art.png │ │ │ ├── digg.png │ │ │ ├── dribbble.png │ │ │ ├── dropplr.png │ │ │ ├── drupal.png │ │ │ ├── ebay.png │ │ │ ├── email.png │ │ │ ├── ember.png │ │ │ ├── etsy.png │ │ │ ├── facebook.png │ │ │ ├── feedburner.png │ │ │ ├── flickr.png │ │ │ ├── foodspotting.png │ │ │ ├── forrst.png │ │ │ ├── foursquare.png │ │ │ ├── friendfeed.png │ │ │ ├── friendster.png │ │ │ ├── gcontacts.png │ │ │ ├── gdgt.png │ │ │ ├── github.png │ │ │ ├── google-buzz.png │ │ │ ├── google-plus-black.png │ │ │ ├── google-plus.png │ │ │ ├── google-talk.png │ │ │ ├── google.png │ │ │ ├── gowalla-2.png │ │ │ ├── gowalla.png │ │ │ ├── grooveshark.png │ │ │ ├── heart.png │ │ │ ├── hyves.png │ │ │ ├── icondock.png │ │ │ ├── icq.png │ │ │ ├── identi.png │ │ │ ├── imessage.png │ │ │ ├── instagram.png │ │ │ ├── itune.png │ │ │ ├── lastfm.png │ │ │ ├── linkedin.png │ │ │ ├── meetup.png │ │ │ ├── metacafe.png │ │ │ ├── microsoft.png │ │ │ ├── mister-wong.png │ │ │ ├── mixx.png │ │ │ ├── mobileme.png │ │ │ ├── msn.png │ │ │ ├── myspace.png │ │ │ ├── netvibes.png │ │ │ ├── newsvine.png │ │ │ ├── paypal.png │ │ │ ├── photobucket.png │ │ │ ├── picasa.png │ │ │ ├── pinterest.png │ │ │ ├── podcast.png │ │ │ ├── posterous.png │ │ │ ├── qik.png │ │ │ ├── quora.png │ │ │ ├── reddit.png │ │ │ ├── retweet.png │ │ │ ├── rss.png │ │ │ ├── scribd.png │ │ │ ├── sharethis.png │ │ │ ├── skype.png │ │ │ ├── slashdot.png │ │ │ ├── slideshare.png │ │ │ ├── smugmug.png │ │ │ ├── soundcloud.png │ │ │ ├── spotify.png │ │ │ ├── squidoo.png │ │ │ ├── stackoverflow.png │ │ │ ├── star.png │ │ │ ├── stumbleupon.png │ │ │ ├── technorati.png │ │ │ ├── tumblr.png │ │ │ ├── twitter-2.png │ │ │ ├── twitter.png │ │ │ ├── viddler.png │ │ │ ├── vimeo.png │ │ │ ├── virb.png │ │ │ ├── w3.png │ │ │ ├── wikepedia.png │ │ │ ├── wordpress-2.png │ │ │ ├── wordpress.png │ │ │ ├── xing.png │ │ │ ├── yahoo-buzz.png │ │ │ ├── yahoo.png │ │ │ ├── yelp.png │ │ │ └── youtube.png │ │ │ └── info.txt │ │ ├── index.html │ │ └── js │ │ ├── backbone-0.3.3.min.js │ │ ├── client.js │ │ ├── config.js.example │ │ ├── modernizr-1.7.min.js │ │ └── underscore-1.1.6.min.js ├── PhotosViewer │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── screenshot.png │ └── static │ │ ├── css │ │ ├── notready.css │ │ └── style.css │ │ ├── img │ │ ├── screenshot.png │ │ └── viewer-icon.png │ │ ├── index.html │ │ ├── js │ │ ├── config.js.example │ │ ├── jquery.masonry.min.js │ │ ├── modernizr-1.7.min.js │ │ ├── photos-client.js │ │ └── plugins.js │ │ └── notready.html ├── PicPipe │ ├── picpipe.app │ ├── picpipe.js │ └── ui │ │ └── index.html ├── README.md ├── Reminisce │ ├── app.js │ ├── manifest.app │ └── ui │ │ └── index.html ├── Search │ └── package.json ├── Wakemate │ ├── README.md │ ├── static │ │ ├── css │ │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ │ └── wakemate-client.js │ ├── wakemate-server.js │ └── wakemate.app ├── dashboardv3 │ ├── ChangeLog │ ├── dashboard-client.js │ ├── dashboard.js │ ├── dashboardv3.app │ ├── migrations │ │ └── 1325636562997_delete_registry_json.js │ ├── node_modules │ │ └── dust │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── benchmark │ │ │ ├── index.html │ │ │ ├── server.js │ │ │ ├── suites │ │ │ │ ├── dust_suite.js │ │ │ │ ├── handlebars_suite.js │ │ │ │ ├── jquery_suite.js │ │ │ │ └── mustache_suite.js │ │ │ └── uubench.js │ │ │ ├── dist │ │ │ ├── dust-core-0.3.0.js │ │ │ ├── dust-core-0.3.0.min.js │ │ │ ├── dust-full-0.3.0.js │ │ │ └── dust-full-0.3.0.min.js │ │ │ ├── docs │ │ │ ├── about.md │ │ │ ├── api.md │ │ │ ├── build.js │ │ │ ├── index.css │ │ │ ├── index.dust.html │ │ │ ├── index.js │ │ │ ├── select.dust.html │ │ │ └── syntax.md │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── compiler.js │ │ │ ├── dust.js │ │ │ ├── parser.js │ │ │ └── server.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── build.js │ │ │ └── dust.pegjs │ │ │ ├── test │ │ │ ├── core.js │ │ │ ├── examples.js │ │ │ ├── server.js │ │ │ └── uutest.js │ │ │ └── vendor │ │ │ ├── beautify.js │ │ │ ├── ecma.js │ │ │ ├── hijs.js │ │ │ ├── jquery.min.js │ │ │ ├── jsdump.js │ │ │ └── showdown.js │ ├── package.json │ ├── screenshot.png │ ├── static │ │ ├── css │ │ │ ├── allApps.css │ │ │ ├── apiExplorer.css │ │ │ ├── appList.css │ │ │ ├── connect.css │ │ │ ├── develop.css │ │ │ ├── settings-account.css │ │ │ ├── settings-api.css │ │ │ └── style.less │ │ ├── img │ │ │ ├── batman.jpg │ │ │ ├── default-profile.png │ │ │ ├── icons-old │ │ │ │ ├── facebook.png │ │ │ │ ├── flickr.png │ │ │ │ ├── foursquare.png │ │ │ │ ├── gcontacts.png │ │ │ │ ├── github.png │ │ │ │ ├── gplus.png │ │ │ │ ├── instagram.png │ │ │ │ ├── tumblr.png │ │ │ │ └── twitter.png │ │ │ ├── icons │ │ │ │ ├── 16px │ │ │ │ │ ├── add-this.png │ │ │ │ │ ├── addthis.png │ │ │ │ │ ├── amazon.png │ │ │ │ │ ├── aol.png │ │ │ │ │ ├── app-store-2.png │ │ │ │ │ ├── app-store.png │ │ │ │ │ ├── apple.png │ │ │ │ │ ├── bebo.png │ │ │ │ │ ├── behance.png │ │ │ │ │ ├── bing.png │ │ │ │ │ ├── blip.png │ │ │ │ │ ├── blogger.png │ │ │ │ │ ├── button-blue.png │ │ │ │ │ ├── button-green.png │ │ │ │ │ ├── button-light-blue.png │ │ │ │ │ ├── button-orange.png │ │ │ │ │ ├── button-red.png │ │ │ │ │ ├── button-white.png │ │ │ │ │ ├── button-yellow.png │ │ │ │ │ ├── chromehistory.png │ │ │ │ │ ├── coroflot.png │ │ │ │ │ ├── daytum.png │ │ │ │ │ ├── delicious.png │ │ │ │ │ ├── design-bump.png │ │ │ │ │ ├── designfloat.png │ │ │ │ │ ├── deviant-art.png │ │ │ │ │ ├── digg.png │ │ │ │ │ ├── dopplr.png │ │ │ │ │ ├── dribbble.png │ │ │ │ │ ├── dropplr.png │ │ │ │ │ ├── drupal.png │ │ │ │ │ ├── ebay.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── ember.png │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── feedburner.png │ │ │ │ │ ├── fitbit.png │ │ │ │ │ ├── flickr.png │ │ │ │ │ ├── forrst.png │ │ │ │ │ ├── foursquare.png │ │ │ │ │ ├── friendfeed.png │ │ │ │ │ ├── friendster.png │ │ │ │ │ ├── gcontacts.png │ │ │ │ │ ├── gdgt.png │ │ │ │ │ ├── github.png │ │ │ │ │ ├── glatitude.png │ │ │ │ │ ├── google-buzz.png │ │ │ │ │ ├── google-talk.png │ │ │ │ │ ├── google.png │ │ │ │ │ ├── gowalla-2.png │ │ │ │ │ ├── gowalla.png │ │ │ │ │ ├── gplus.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── hyves.png │ │ │ │ │ ├── icondock.png │ │ │ │ │ ├── icq.png │ │ │ │ │ ├── identi.png │ │ │ │ │ ├── instagram.png │ │ │ │ │ ├── itune.png │ │ │ │ │ ├── lastfm.png │ │ │ │ │ ├── latitude.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ ├── meetup.png │ │ │ │ │ ├── metacafe.png │ │ │ │ │ ├── microsoft.png │ │ │ │ │ ├── mister-wong.png │ │ │ │ │ ├── mixx.png │ │ │ │ │ ├── mobileme.png │ │ │ │ │ ├── msn.png │ │ │ │ │ ├── myspace.png │ │ │ │ │ ├── netflix.png │ │ │ │ │ ├── netvibes.png │ │ │ │ │ ├── newsvine.png │ │ │ │ │ ├── pandora.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── photobucket.png │ │ │ │ │ ├── picasa.png │ │ │ │ │ ├── podcast.png │ │ │ │ │ ├── posterous.png │ │ │ │ │ ├── qik.png │ │ │ │ │ ├── rdio.png │ │ │ │ │ ├── reddit.png │ │ │ │ │ ├── retweet.png │ │ │ │ │ ├── rss.png │ │ │ │ │ ├── scribd.png │ │ │ │ │ ├── sharethis.png │ │ │ │ │ ├── skype.png │ │ │ │ │ ├── slashdot.png │ │ │ │ │ ├── slideshare.png │ │ │ │ │ ├── smugmug.png │ │ │ │ │ ├── social-behence.png │ │ │ │ │ ├── social-designfloat.png │ │ │ │ │ ├── social-email.png │ │ │ │ │ ├── social-rss.png │ │ │ │ │ ├── social-sharethis.png │ │ │ │ │ ├── soundcloud.png │ │ │ │ │ ├── spotify.png │ │ │ │ │ ├── squidoo.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── strava.png │ │ │ │ │ ├── stumbleupon.png │ │ │ │ │ ├── technorati.png │ │ │ │ │ ├── tumblr.png │ │ │ │ │ ├── twitter-2.png │ │ │ │ │ ├── twitter.png │ │ │ │ │ ├── viddler.png │ │ │ │ │ ├── vimeo.png │ │ │ │ │ ├── virb.png │ │ │ │ │ ├── w3.png │ │ │ │ │ ├── wikepedia.png │ │ │ │ │ ├── withings.png │ │ │ │ │ ├── wordpress-2.png │ │ │ │ │ ├── wordpress.png │ │ │ │ │ ├── xing.png │ │ │ │ │ ├── yahoo-buzz.png │ │ │ │ │ ├── yahoo.png │ │ │ │ │ ├── yelp.png │ │ │ │ │ ├── youtube.png │ │ │ │ │ └── zeo.png │ │ │ │ ├── 24px │ │ │ │ │ ├── add-this.png │ │ │ │ │ ├── amazon.png │ │ │ │ │ ├── aol.png │ │ │ │ │ ├── app-store-2.png │ │ │ │ │ ├── app-store.png │ │ │ │ │ ├── apple.png │ │ │ │ │ ├── bebo.png │ │ │ │ │ ├── behance.png │ │ │ │ │ ├── bing.png │ │ │ │ │ ├── blip.png │ │ │ │ │ ├── blogger.png │ │ │ │ │ ├── button-blue.png │ │ │ │ │ ├── button-green.png │ │ │ │ │ ├── button-light-blue.png │ │ │ │ │ ├── button-orange.png │ │ │ │ │ ├── button-red.png │ │ │ │ │ ├── button-white.png │ │ │ │ │ ├── button-yellow.png │ │ │ │ │ ├── chromehistory.png │ │ │ │ │ ├── coroflot.png │ │ │ │ │ ├── daytum.png │ │ │ │ │ ├── delicious.png │ │ │ │ │ ├── design-bump.png │ │ │ │ │ ├── designfloat.png │ │ │ │ │ ├── deviant-art.png │ │ │ │ │ ├── digg.png │ │ │ │ │ ├── dribbble.png │ │ │ │ │ ├── dropplr.png │ │ │ │ │ ├── drupal.png │ │ │ │ │ ├── ebay.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── ember.png │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── feedburner.png │ │ │ │ │ ├── fitbit.png │ │ │ │ │ ├── flickr.png │ │ │ │ │ ├── forrst.png │ │ │ │ │ ├── foursquare.png │ │ │ │ │ ├── friendfeed.png │ │ │ │ │ ├── friendster.png │ │ │ │ │ ├── gcontacts.png │ │ │ │ │ ├── gdgt.png │ │ │ │ │ ├── github.png │ │ │ │ │ ├── glatitude.png │ │ │ │ │ ├── google-buzz.png │ │ │ │ │ ├── google-talk.png │ │ │ │ │ ├── google.png │ │ │ │ │ ├── gowalla-2.png │ │ │ │ │ ├── gowalla.png │ │ │ │ │ ├── gplus.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── hyves.png │ │ │ │ │ ├── icondock.png │ │ │ │ │ ├── icq.png │ │ │ │ │ ├── identi.png │ │ │ │ │ ├── instagram.png │ │ │ │ │ ├── itune.png │ │ │ │ │ ├── lastfm.png │ │ │ │ │ ├── latitude.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ ├── meetup.png │ │ │ │ │ ├── metacafe.png │ │ │ │ │ ├── microsoft.png │ │ │ │ │ ├── mister-wong.png │ │ │ │ │ ├── mixx.png │ │ │ │ │ ├── mobileme.png │ │ │ │ │ ├── msn.png │ │ │ │ │ ├── myspace.png │ │ │ │ │ ├── netflix.png │ │ │ │ │ ├── netvibes.png │ │ │ │ │ ├── newsvine.png │ │ │ │ │ ├── pandora.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── photobucket.png │ │ │ │ │ ├── picasa.png │ │ │ │ │ ├── podcast.png │ │ │ │ │ ├── posterous.png │ │ │ │ │ ├── qik.png │ │ │ │ │ ├── rdio.png │ │ │ │ │ ├── reddit.png │ │ │ │ │ ├── retweet.png │ │ │ │ │ ├── rss.png │ │ │ │ │ ├── scribd.png │ │ │ │ │ ├── sharethis.png │ │ │ │ │ ├── skype.png │ │ │ │ │ ├── slashdot.png │ │ │ │ │ ├── slideshare.png │ │ │ │ │ ├── smugmug.png │ │ │ │ │ ├── soundcloud.png │ │ │ │ │ ├── spotify.png │ │ │ │ │ ├── squidoo.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── strava.png │ │ │ │ │ ├── stumbleupon.png │ │ │ │ │ ├── technorati.png │ │ │ │ │ ├── tumblr.png │ │ │ │ │ ├── twitter-2.png │ │ │ │ │ ├── twitter.png │ │ │ │ │ ├── viddler.png │ │ │ │ │ ├── vimeo.png │ │ │ │ │ ├── virb.png │ │ │ │ │ ├── w3.png │ │ │ │ │ ├── wikepedia.png │ │ │ │ │ ├── withings.png │ │ │ │ │ ├── wordpress-2.png │ │ │ │ │ ├── wordpress.png │ │ │ │ │ ├── xing.png │ │ │ │ │ ├── yahoo-buzz.png │ │ │ │ │ ├── yahoo.png │ │ │ │ │ ├── yelp.png │ │ │ │ │ ├── youtube.png │ │ │ │ │ └── zeo.png │ │ │ │ └── 32px │ │ │ │ │ ├── add-this.png │ │ │ │ │ ├── amazon.png │ │ │ │ │ ├── aol.png │ │ │ │ │ ├── app-store-2.png │ │ │ │ │ ├── app-store.png │ │ │ │ │ ├── apple.png │ │ │ │ │ ├── bebo.png │ │ │ │ │ ├── behance.png │ │ │ │ │ ├── bing.png │ │ │ │ │ ├── blip.png │ │ │ │ │ ├── blogger.png │ │ │ │ │ ├── button-blue.png │ │ │ │ │ ├── button-green.png │ │ │ │ │ ├── button-light-blue.png │ │ │ │ │ ├── button-orange.png │ │ │ │ │ ├── button-red.png │ │ │ │ │ ├── button-white.png │ │ │ │ │ ├── button-yellow.png │ │ │ │ │ ├── chromehistory.png │ │ │ │ │ ├── coroflot.png │ │ │ │ │ ├── daytum.png │ │ │ │ │ ├── delicious.png │ │ │ │ │ ├── design-bump.png │ │ │ │ │ ├── designfloat.png │ │ │ │ │ ├── deviant-art.png │ │ │ │ │ ├── digg.png │ │ │ │ │ ├── dribbble.png │ │ │ │ │ ├── dropplr.png │ │ │ │ │ ├── drupal.png │ │ │ │ │ ├── ebay.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── ember.png │ │ │ │ │ ├── facebook.png │ │ │ │ │ ├── feedburner.png │ │ │ │ │ ├── fitbit.png │ │ │ │ │ ├── flickr.png │ │ │ │ │ ├── forrst.png │ │ │ │ │ ├── foursquare.png │ │ │ │ │ ├── friendfeed.png │ │ │ │ │ ├── friendster.png │ │ │ │ │ ├── gcontacts.png │ │ │ │ │ ├── gdgt.png │ │ │ │ │ ├── github.png │ │ │ │ │ ├── glatitude.png │ │ │ │ │ ├── google-buzz.png │ │ │ │ │ ├── google-talk.png │ │ │ │ │ ├── google.png │ │ │ │ │ ├── gowalla-2.png │ │ │ │ │ ├── gowalla.png │ │ │ │ │ ├── gplus.png │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── hyves.png │ │ │ │ │ ├── icondock.png │ │ │ │ │ ├── icq.png │ │ │ │ │ ├── identi.png │ │ │ │ │ ├── instagram.png │ │ │ │ │ ├── itune.png │ │ │ │ │ ├── lastfm.png │ │ │ │ │ ├── latitude.png │ │ │ │ │ ├── linkedin.png │ │ │ │ │ ├── meetup.png │ │ │ │ │ ├── metacafe.png │ │ │ │ │ ├── microsoft.png │ │ │ │ │ ├── mister-wong.png │ │ │ │ │ ├── mixx.png │ │ │ │ │ ├── mobileme.png │ │ │ │ │ ├── msn.png │ │ │ │ │ ├── myspace.png │ │ │ │ │ ├── netflix.png │ │ │ │ │ ├── netvibes.png │ │ │ │ │ ├── newsvine.png │ │ │ │ │ ├── pandora.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── photobucket.png │ │ │ │ │ ├── picasa.png │ │ │ │ │ ├── podcast.png │ │ │ │ │ ├── posterous.png │ │ │ │ │ ├── qik.png │ │ │ │ │ ├── rdio.png │ │ │ │ │ ├── reddit.png │ │ │ │ │ ├── retweet.png │ │ │ │ │ ├── rss.png │ │ │ │ │ ├── scribd.png │ │ │ │ │ ├── sharethis.png │ │ │ │ │ ├── skype.png │ │ │ │ │ ├── slashdot.png │ │ │ │ │ ├── slideshare.png │ │ │ │ │ ├── smugmug.png │ │ │ │ │ ├── soundcloud.png │ │ │ │ │ ├── spotify.png │ │ │ │ │ ├── squidoo.png │ │ │ │ │ ├── star.png │ │ │ │ │ ├── strava.png │ │ │ │ │ ├── stumbleupon.png │ │ │ │ │ ├── technorati.png │ │ │ │ │ ├── tumblr.png │ │ │ │ │ ├── twitter-2.png │ │ │ │ │ ├── twitter.png │ │ │ │ │ ├── viddler.png │ │ │ │ │ ├── vimeo.png │ │ │ │ │ ├── virb.png │ │ │ │ │ ├── w3.png │ │ │ │ │ ├── wikepedia.png │ │ │ │ │ ├── withings.png │ │ │ │ │ ├── wordpress-2.png │ │ │ │ │ ├── wordpress.png │ │ │ │ │ ├── xing.png │ │ │ │ │ ├── yahoo-buzz.png │ │ │ │ │ ├── yahoo.png │ │ │ │ │ ├── yelp.png │ │ │ │ │ ├── youtube.png │ │ │ │ │ └── zeo.png │ │ │ ├── loading6.gif │ │ │ ├── templates-icons.png │ │ │ ├── uparrow.png │ │ │ └── www.addictedtocoffee.de │ │ │ │ ├── AUTHOR.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── facebook.png │ │ │ │ ├── facebook_hover.png │ │ │ │ ├── flickr.png │ │ │ │ ├── foursquare.png │ │ │ │ ├── github.png │ │ │ │ ├── social-github-black-g.png │ │ │ │ ├── social-github-black-octocat.png │ │ │ │ ├── social-github-blue-g.png │ │ │ │ ├── social-github-blue-octocat.png │ │ │ │ ├── social_linked-in.png │ │ │ │ ├── tumblr.webloc │ │ │ │ └── twitter.png │ │ ├── js │ │ │ ├── apiexplorer.js │ │ │ ├── appList.js │ │ │ ├── connect.js │ │ │ ├── dashboard.js │ │ │ ├── develop-buildapp.js │ │ │ ├── develop.js │ │ │ ├── ga.js │ │ │ ├── hosted.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.simplemodal.js │ │ │ ├── jquery.timeago.js │ │ │ ├── locker.js │ │ │ ├── settings.js │ │ │ └── vendor │ │ │ │ └── jquery.cookie.js │ │ ├── pure_min.js │ │ ├── resources.json │ │ └── templates │ │ │ └── connectors.html │ ├── uistate.js │ └── views │ │ ├── appGallery.ejs │ │ ├── explore-connect.ejs │ │ ├── explore.ejs │ │ ├── header_partial.ejs │ │ ├── iframe │ │ ├── appsList.ejs │ │ ├── connect.ejs │ │ ├── develop-apiexplorer.ejs │ │ ├── develop-buildapp.ejs │ │ ├── develop-chat.ejs │ │ ├── develop-exampleapps.ejs │ │ ├── develop-publishing.ejs │ │ ├── develop-templatesicons.ejs │ │ ├── developnav_partial.ejs │ │ ├── publish.ejs │ │ ├── settings-account.ejs │ │ ├── settings-api.ejs │ │ └── settings-connectors.ejs │ │ ├── layout.ejs │ │ ├── settings.ejs │ │ └── sidenav.ejs ├── photosv0.9 │ ├── .gitignore │ ├── package.json │ ├── photosv0.9.app │ ├── screenshot.png │ └── static │ │ ├── css │ │ ├── notready.css │ │ ├── reset.css │ │ └── style.css │ │ ├── img │ │ ├── button-bg.png │ │ ├── loading.png │ │ ├── pmicon.png │ │ ├── screenshot.png │ │ └── viewer-icon.png │ │ ├── index.html │ │ ├── js │ │ ├── config.js.example │ │ ├── galleria-1.2.5.min.js │ │ ├── script.js │ │ └── themes │ │ │ └── classic │ │ │ ├── classic-demo.html │ │ │ ├── classic-loader.gif │ │ │ ├── classic-map.png │ │ │ ├── galleria.classic.css │ │ │ ├── galleria.classic.js │ │ │ └── galleria.classic.min.js │ │ └── notready.html └── skeleton │ ├── app.js │ ├── skeleton.app │ └── static │ ├── css │ └── style.css │ ├── index.html │ └── js │ └── skeleton.js ├── ChangeLog ├── Collections ├── Contacts │ ├── .gitignore │ ├── api.js │ ├── contacts.js │ ├── dataMap.js │ ├── dataStore.js │ ├── inserters.js │ ├── package.json │ └── sync.js ├── Links │ ├── README.md │ ├── api.js │ ├── attic │ │ ├── testrsax.js │ │ ├── testsearch.js │ │ └── testurls.js │ ├── dataIn.js │ ├── dataStore.js │ ├── links.js │ ├── longus.js │ ├── longus_test.js │ ├── oembed.js │ ├── oembed_test.js │ ├── package.json │ ├── testutil.js │ └── util.js ├── Photos │ ├── README.md │ ├── api.js │ ├── dataIn.js │ ├── dataStore.js │ ├── package.json │ ├── photos.js │ └── sync.js ├── Places │ ├── api.js │ ├── dataIn.js │ ├── dataStore.js │ ├── package.json │ ├── places.js │ └── sync.js ├── README.md └── Search │ ├── api.js │ ├── index.js │ ├── indextest.js │ ├── package.json │ ├── search.js │ └── sync.js ├── Common ├── README.md ├── node │ ├── app │ │ └── static.js │ ├── collectionDataStore.js │ ├── connector │ │ ├── api.js │ │ ├── client.js │ │ ├── dataStore.js │ │ ├── oauth2.js │ │ └── utils.js │ ├── deepCompare.js │ ├── ijod.js │ ├── instrument.js │ ├── lconfig.js │ ├── lcrypto.js │ ├── ldatastore.js │ ├── levents.js │ ├── lfs.js │ ├── lmongo.js │ ├── lmongoclient.js │ ├── lmongoutil.js │ ├── locker.js │ ├── logger.js │ ├── lpquery.js │ ├── lpushmanager.js │ ├── lscheduler.js │ ├── lservicemanager.js │ ├── lstate.js │ ├── lsyncmanager.js │ ├── ltest.js │ ├── lutil.js │ ├── sort.js │ └── synclet │ │ ├── client.js │ │ └── dataaccess.js ├── php │ └── httpserver │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── cgistream.php │ │ ├── examples │ │ ├── example_server.php │ │ └── example_www │ │ │ ├── admin.gif │ │ │ ├── brew_coffee.php │ │ │ ├── index.php │ │ │ ├── phpinfo.php │ │ │ └── slow.php │ │ ├── httprequest.php │ │ ├── httpresponse.php │ │ └── httpserver.php └── python │ ├── lockerfs.py │ └── synclet │ └── client.py ├── Config ├── apikeys.json.example ├── config.json.example └── keys │ └── jer.pub ├── Connectors ├── BodyMedia │ ├── auth.js │ ├── burn_day.js │ ├── burn_year.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── sleep_day.js │ ├── sleep_year.js │ ├── steps_hour.js │ ├── synclets.json │ └── test.js ├── Facebook │ ├── auth.js │ ├── friends.js │ ├── home.js │ ├── home_update.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── photos.js │ ├── restlib.js │ ├── self.js │ ├── synclets.json │ └── testlib.js ├── FitBit │ ├── README.md │ ├── activity.js │ ├── auth.js │ ├── device.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── profile.js │ ├── synclets.json │ └── test.js ├── Flickr │ ├── .gitignore │ ├── auth.js │ ├── contacts.js │ ├── icon.png │ ├── lib │ │ └── paging.js │ ├── package.json │ ├── photos.js │ └── synclets.json ├── GitHub │ ├── auth.js │ ├── events.js │ ├── icon.png │ ├── issue.js │ ├── package.json │ ├── profile.js │ ├── repos.js │ ├── synclets.json │ ├── test.js │ ├── userEvents.js │ └── users.js ├── GoogleContacts │ ├── .gitignore │ ├── auth.js │ ├── contacts.js │ ├── icon.png │ ├── package.json │ └── synclets.json ├── GoogleDocuments │ ├── .gitignore │ ├── auth.js │ ├── changes.js │ ├── client.py │ ├── icon.png │ ├── package.json │ └── synclets.json ├── GoogleLatitude │ ├── auth.js │ ├── icon.png │ ├── locations.py │ ├── package.json │ └── synclets.json ├── GooglePlus │ ├── activities.js │ ├── auth.js │ ├── fixtures │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ └── 4.json │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── synclets.json │ └── testlib.js ├── Gowalla │ ├── auth.js │ ├── checkins.js │ ├── friends.js │ ├── gowalla.synclet │ ├── lib.js │ ├── pins.js │ ├── profile.js │ └── testlib.js ├── Instagram │ ├── auth.js │ ├── feed.js │ ├── follows.js │ ├── icon.png │ ├── lib.js │ ├── media.js │ ├── package.json │ ├── self.js │ ├── synclets.json │ ├── testlib.js │ └── updated.js ├── LastFM │ ├── auth.js │ ├── banned.js │ ├── friends.js │ ├── icon.png │ ├── info.js │ ├── lib.js │ ├── library.js │ ├── loved.js │ ├── package.json │ ├── scrobbles.js │ ├── shouts.js │ └── synclets.json ├── LinkedIn │ ├── auth.js │ ├── connections.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── profile.js │ ├── synclets.json │ └── test.js ├── Netflix │ ├── README.md │ ├── auth.js │ ├── history.js │ ├── lib.js │ ├── package.json │ ├── synclets.json │ └── test.js ├── Pandora │ ├── README.md │ ├── auth.js │ ├── icon.png │ ├── lib.js │ ├── likes.js │ ├── package.json │ ├── synclets.json │ └── test.js ├── README.md ├── Rdio │ ├── activity.js │ ├── auth.js │ ├── collection.js │ ├── following.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── self.js │ └── synclets.json ├── SMTP │ ├── auth.html │ ├── icon.png │ ├── package.json │ └── smtp.js ├── SoundCloud │ ├── auth.js │ ├── comments.js │ ├── favorites.js │ ├── followings.js │ ├── groups.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── playlists.js │ ├── synclets.json │ └── tracks.js ├── Tumblr │ ├── auth.js │ ├── contacts.js │ ├── dashboard.js │ ├── icon.png │ ├── lib.js │ ├── package.json │ ├── posts.js │ ├── synclets.json │ ├── testlib.js │ └── tumblr_client.js ├── Twitter │ ├── README.md │ ├── auth.js │ ├── friends.js │ ├── icon.png │ ├── lib.js │ ├── mentions.js │ ├── package.json │ ├── related.js │ ├── self.js │ ├── synclets.json │ ├── testlib.js │ ├── timeline.js │ ├── tweet.js │ ├── tweets.js │ └── twitter_client.js ├── Withings │ ├── auth.js │ ├── lib.js │ ├── package.json │ ├── pressure.js │ ├── scale.js │ ├── synclets.json │ └── test.js ├── WorkInProgress │ ├── AmazonHistory │ │ └── server.js │ ├── AmazonS3 │ │ ├── s3.connector │ │ ├── s3.js │ │ └── ui │ │ │ ├── index.html │ │ │ └── init.html │ ├── Dropbox │ │ ├── dropbox.connector │ │ ├── dropbox.js │ │ └── ui │ │ │ ├── index.html │ │ │ └── init.html │ ├── FirefoxHistory │ │ ├── .gitignore │ │ ├── README.rd │ │ ├── client.js │ │ └── firefoxHistory.connector │ ├── GoodReads │ │ ├── README.md │ │ ├── client.js │ │ └── goodReads.connector │ ├── IMAP │ │ ├── IMAP.connector │ │ ├── auth.js │ │ ├── imap.js │ │ ├── init.js │ │ ├── migrations │ │ │ ├── 1308690468483.js │ │ │ └── 1309052268000.js │ │ ├── sync-api.js │ │ └── sync.js │ ├── Pinterest │ │ ├── auth.js │ │ ├── package.json │ │ └── synclets.json │ ├── RunKeeper │ │ └── README.md │ ├── SafariHistory │ │ ├── extract.js │ │ └── extract.py │ ├── SimpleJournal │ │ ├── TODO │ │ ├── simplejournal.connector │ │ └── simplejournal.js │ ├── Twitpic │ │ ├── twitpic.connector │ │ ├── twitpic.js │ │ └── ui │ │ │ ├── index.html │ │ │ └── init.html │ ├── TwitterSearch │ │ ├── sync.js │ │ ├── tsearch.connector │ │ ├── tsearch.js │ │ └── ui │ │ │ └── index.html │ ├── Wakemate │ │ ├── .gitignore │ │ ├── README.TXT │ │ ├── auth.js │ │ ├── fetch_all.rb │ │ ├── init.js │ │ ├── migrations │ │ │ └── 1309052824000.js │ │ ├── sync-api.js │ │ ├── sync.js │ │ └── wakemate.connector │ ├── WordPress │ │ ├── WordPress.connector │ │ ├── client.py │ │ ├── service.py │ │ ├── templates │ │ │ ├── baseLayout.html │ │ │ └── setupAuth.html │ │ ├── util.py │ │ └── webservice.py │ ├── XMPP │ │ ├── XMPP.connector │ │ ├── client.py │ │ ├── service.py │ │ ├── templates │ │ │ ├── baseLayout.html │ │ │ └── setupAuth.html │ │ ├── util.py │ │ └── webservice.py │ ├── YouTube │ │ ├── .gitignore │ │ ├── auth.js │ │ └── vids.js │ ├── osxAddressBook │ │ ├── .gitignore │ │ └── addressBook.py │ └── thunderbird │ │ └── contacts2json.py ├── Zeo │ ├── auth.js │ ├── lib.js │ ├── package.json │ ├── sleep.js │ ├── synclets.json │ └── test.js └── foursquare │ ├── .gitignore │ ├── auth.js │ ├── badges.js │ ├── checkins.js │ ├── friends.js │ ├── icon.png │ ├── package.json │ ├── recent.js │ └── synclets.json ├── Docs ├── README.md ├── ServiceTypeDefinitions │ ├── README.md │ ├── contacts.md │ └── links.md ├── index.html ├── notes.txt └── query.jison ├── LICENSE ├── Logs └── .gitignore ├── Makefile ├── Ops ├── README.md ├── TeleHash │ ├── switch.js │ └── telehash.js ├── me2me.js ├── mymap.js ├── publish.js ├── registry.js ├── static │ ├── favicon.ico │ └── static │ │ ├── README.md │ │ ├── css │ │ ├── global.css │ │ ├── jquery.mobile-1.0b2.css │ │ ├── jquery.mobile-1.0b2.min.css │ │ └── reset.css │ │ ├── img │ │ ├── jqm │ │ │ ├── ajax-loader.png │ │ │ ├── icon-search-black.png │ │ │ ├── icons-18-black.png │ │ │ ├── icons-18-white.png │ │ │ ├── icons-36-black.png │ │ │ └── icons-36-white.png │ │ ├── numbers.gif │ │ └── silhouette.png │ │ ├── js │ │ ├── backbone-0.3.3.min.js │ │ ├── boilerplate │ │ │ ├── libs │ │ │ │ ├── dd_belatedpng.js │ │ │ │ └── modernizr-1.7.min.js │ │ │ └── plugins.js │ │ ├── date.js │ │ ├── extensions │ │ │ ├── date.js │ │ │ └── string.js │ │ ├── jq.odoticker.min.js │ │ ├── jquery-1.6.2.min.js │ │ ├── jquery.mobile-1.0b2.js │ │ ├── jquery.mobile-1.0b2.min.js │ │ ├── jquery.odoticker.js │ │ ├── raphael.js │ │ ├── underscore-1.1.6.min.js │ │ └── viewer.js │ │ └── test.html ├── thservice.js ├── upsert.js ├── webservice-push.js └── webservice.js ├── README.md ├── locker ├── lockerd.js ├── migrations ├── 0000000000004.js ├── 0000000000005.js ├── 0000000000006.js └── 0000000000007.js ├── package.json ├── scripts ├── build-tarball ├── install-deps ├── test-tarball └── use-deps.sh ├── sm-TODO.md ├── test ├── common │ └── lutil.test.js └── fixtures │ └── common │ ├── avatar.png │ ├── grimace.jpg │ └── profiles.json └── tests ├── .gitignore ├── Apps ├── Collections ├── Common ├── Config ├── apikeys.json ├── config.json └── config.json.all ├── Connectors ├── Data.tests ├── .npm │ ├── contacts │ │ ├── .cache.json │ │ └── 0.0.2 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── contacts.js │ │ │ ├── dataStore.js │ │ │ ├── package.json │ │ │ └── sync.js │ ├── facebook │ │ ├── .cache.json │ │ └── 0.0.6 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── auth.js │ │ │ ├── friends.js │ │ │ ├── home.js │ │ │ ├── home_update.js │ │ │ ├── icon.png │ │ │ ├── lib.js │ │ │ ├── package.json │ │ │ ├── photos.js │ │ │ ├── restlib.js │ │ │ ├── synclets.json │ │ │ └── testlib.js │ ├── flickr │ │ ├── .cache.json │ │ └── 0.0.5 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── auth.js │ │ │ ├── contacts.js │ │ │ ├── icon.png │ │ │ ├── lib │ │ │ └── paging.js │ │ │ ├── package.json │ │ │ ├── photos.js │ │ │ └── synclets.json │ ├── gcontacts │ │ ├── .cache.json │ │ └── 0.0.6 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── .gitignore │ │ │ ├── auth.js │ │ │ ├── contacts.js │ │ │ ├── icon.png │ │ │ ├── package.json │ │ │ └── synclets.json │ ├── instagram │ │ ├── .cache.json │ │ └── 0.0.4 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── auth.js │ │ │ ├── client.js │ │ │ ├── feed.js │ │ │ ├── follows.js │ │ │ ├── icon.png │ │ │ ├── lib.js │ │ │ ├── media.js │ │ │ ├── package.json │ │ │ ├── self.js │ │ │ ├── synclets.json │ │ │ ├── testlib.js │ │ │ └── updated.js │ ├── links │ │ ├── .cache.json │ │ └── 0.0.4 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── README.md │ │ │ ├── attic │ │ │ ├── testrsax.js │ │ │ ├── testsearch.js │ │ │ └── testurls.js │ │ │ ├── dataIn.js │ │ │ ├── dataStore.js │ │ │ ├── links.js │ │ │ ├── longus.js │ │ │ ├── longus_test.js │ │ │ ├── oembed.js │ │ │ ├── oembed_test.js │ │ │ ├── package.json │ │ │ ├── testutil.js │ │ │ └── util.js │ ├── photos │ │ ├── .cache.json │ │ └── 0.0.2 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── README.md │ │ │ ├── dataStore.js │ │ │ ├── package.json │ │ │ ├── photos.js │ │ │ └── sync.js │ ├── places │ │ ├── .cache.json │ │ └── 0.0.2 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── dataStore.js │ │ │ ├── package.json │ │ │ ├── places.js │ │ │ └── sync.js │ ├── search │ │ ├── .cache.json │ │ └── 0.0.2 │ │ │ ├── .cache.json │ │ │ ├── package.tgz │ │ │ └── package │ │ │ ├── index.js │ │ │ ├── indextest.js │ │ │ ├── package.json │ │ │ ├── search.js │ │ │ └── sync.js │ └── soundcloud │ │ ├── .cache.json │ │ └── 0.0.1 │ │ ├── .cache.json │ │ ├── package.tgz │ │ └── package │ │ ├── auth.js │ │ ├── comments.js │ │ ├── favorites.js │ │ ├── followings.js │ │ ├── groups.js │ │ ├── icon.png │ │ ├── lib.js │ │ ├── package.json │ │ ├── playlists.js │ │ ├── synclets.json │ │ └── tracks.js ├── contacts │ └── me.json ├── disabledtest │ └── me.json ├── disabletest │ └── me.json ├── echo-config │ └── me.json ├── event-collector │ └── me.json ├── facebook-1 │ └── me.json ├── facebook-test │ ├── allKnownIDs.json │ ├── current.db │ ├── friends │ │ ├── friends.db │ │ ├── friends.index │ │ └── friends.json │ ├── me.json │ └── profile.json ├── facebook │ └── me.json ├── flickr-event-collector │ ├── client.js │ └── me.json ├── flickr │ └── me.json ├── foursquare │ └── me.json ├── gcontacts │ └── me.json ├── github-1 │ └── me.json ├── github │ └── me.json ├── google-contacts-test │ ├── auth.json │ ├── current.json │ └── me.json ├── instagram │ └── me.json ├── links │ └── me.json ├── migration-test │ └── me.json ├── migration-test2 │ └── me.json ├── mongo-client │ └── me.json ├── node_modules │ ├── facebook │ │ ├── .gitignore │ │ ├── auth.js │ │ ├── friends.js │ │ ├── home.js │ │ ├── home_update.js │ │ ├── icon.png │ │ ├── lib.js │ │ ├── package.json │ │ ├── photos.js │ │ ├── restlib.js │ │ ├── synclets.json │ │ └── testlib.js │ ├── gcontacts │ │ ├── .gitignore │ │ ├── auth.js │ │ ├── contacts.js │ │ ├── gcontacts.pyc │ │ ├── icon.png │ │ ├── package.json │ │ ├── synclets.json │ │ └── webservice.pyc │ ├── instagram │ │ ├── auth.js │ │ ├── client.js │ │ ├── feed.js │ │ ├── follows.js │ │ ├── icon.png │ │ ├── lib.js │ │ ├── media.js │ │ ├── package.json │ │ ├── self.js │ │ ├── synclets.json │ │ ├── testlib.js │ │ └── updated.js │ ├── links │ │ ├── README.md │ │ ├── attic │ │ │ ├── testrsax.js │ │ │ ├── testsearch.js │ │ │ └── testurls.js │ │ ├── dataIn.js │ │ ├── dataStore.js │ │ ├── links.js │ │ ├── longus.js │ │ ├── longus_test.js │ │ ├── oembed.js │ │ ├── oembed_test.js │ │ ├── package.json │ │ ├── testutil.js │ │ └── util.js │ ├── photos │ │ ├── README.md │ │ ├── dataStore.js │ │ ├── package.json │ │ ├── photos.js │ │ └── sync.js │ ├── places │ │ ├── dataStore.js │ │ ├── package.json │ │ ├── places.js │ │ └── sync.js │ ├── search │ │ ├── index.js │ │ ├── indextest.js │ │ ├── package.json │ │ ├── search.js │ │ └── sync.js │ └── soundcloud │ │ ├── auth.js │ │ ├── comments.js │ │ ├── favorites.js │ │ ├── followings.js │ │ ├── groups.js │ │ ├── icon.png │ │ ├── lib.js │ │ ├── package.json │ │ ├── playlists.js │ │ ├── synclets.json │ │ └── tracks.js ├── photos │ └── me.json ├── places │ ├── me.json │ ├── me.json.bkp │ └── state.json ├── proxy-redirect-test │ ├── client.js │ └── me.json ├── scheduler-tester │ └── me.json ├── search │ └── me.json ├── slowStarter │ ├── client.js │ └── me.json ├── soundcloud │ └── me.json ├── spawn-valid │ └── me.json ├── state.json ├── testCookies │ ├── client.js │ └── me.json ├── testProviders │ └── me.json ├── testProviders2 │ └── me.json ├── testSynclet │ └── me.json ├── testURLCallback │ ├── client.js │ └── me.json ├── testUnicode │ ├── client.js │ └── me.json ├── twitter-1 │ └── me.json ├── wordpress-test │ ├── blogs.json │ ├── categories.json │ ├── comments.json │ ├── me.json │ ├── pingbacks.json │ ├── posts.json │ ├── secrets.json │ ├── trackbacks.json │ └── user_info.json └── xmpp-test │ ├── me.json │ ├── messages.json │ ├── secrets.json │ └── statuses.json ├── Logs └── .gitignore ├── Me ├── key ├── key.pub └── symKey ├── README.md ├── Tests ├── disabletest │ ├── disabletest.connector │ └── disabletest.js ├── echo-config │ ├── echo-config.connector │ └── echo-config.js ├── event-collector │ ├── event-collector.connector │ └── event-collector.js ├── migration-test │ ├── migration-test.connector │ ├── migration-test.js │ ├── migration-test.synclet │ └── migrations │ │ └── 1308079085972.js ├── mongo-client │ ├── mongo-client.connector │ └── mongo-client.js ├── scheduler-tester │ ├── scheduler-tester.connector │ └── scheduler-tester.js ├── spawn-valid │ ├── spawn-valid.connector │ └── spawn-valid.js └── testSynclet │ ├── auth.js │ ├── testSynclet.js │ └── testSynclet.synclet ├── collection-contacts-test.js ├── collection-links-test.js ├── collection-photos-test.js ├── collection-places-test.js ├── collection-search-test.js ├── connector-IMAP-test.js ├── deepCompare-test.js ├── fixtures ├── contacts │ ├── facebook_friends.json │ ├── foursquare_friends.json │ ├── twitter_followers.json │ └── twitter_friends.json ├── events │ ├── contacts │ │ ├── contacts_collection_contact_1.json │ │ ├── contacts_collection_contact_1_updated.json │ │ ├── contacts_collection_contact_2.json │ │ ├── foursquare_contact_1.json │ │ ├── foursquare_contact_2.json │ │ ├── foursquare_contact_3.json │ │ ├── github_contact_1.json │ │ └── github_contact_2.json │ ├── links │ │ ├── facebook_event_1.json │ │ ├── twitter_event_1.json │ │ └── twitter_event_2.json │ ├── photos │ │ ├── facebook.json │ │ └── foursquare.json │ ├── places │ │ ├── foursquare.json │ │ ├── instagram.json │ │ ├── twitter.json │ │ └── twitterplaceonly.json │ └── timeline_twitter │ │ └── twitter_tweet_1.json ├── facebook │ ├── 1234.jpg │ ├── 1234.json │ ├── albums.js │ ├── feed.json │ ├── friends.json │ ├── friends2.json │ ├── home.json │ ├── ids.json │ ├── me.json │ ├── newsfeed-2.json │ ├── none.json │ ├── photo.gif │ └── photos.js ├── flickr │ ├── bad.json │ ├── contacts_1.json │ ├── img.png │ └── photos_1.json ├── foursquare │ ├── EU5F5YNRMM04QJR0YDMWEHPJ1DYUSTYXOET2BK0YJNFSHSKE.jpg │ ├── checkins_1.json │ ├── checkins_2.json │ ├── ctide.png │ ├── final_users.json │ ├── friends.json │ ├── me.json │ ├── one_friend.json │ ├── recents.json │ ├── updated_users.json │ └── users.json ├── github │ ├── WoWCombatLogParser_watchers.json │ ├── arenarecapslibrary_tree.json │ ├── arenarecapslibrary_watchers-1.json │ ├── arenarecapslibrary_watchers.json │ ├── ctide.json │ ├── followers.json │ ├── following.json │ ├── fourk.json │ ├── less_followers.json │ ├── less_repos.json │ ├── repos.json │ ├── smurthas.json │ └── wmw.json ├── googleContacts │ ├── contacts.json │ ├── contacts2.json │ └── status.json ├── imap │ └── mailboxes.json ├── instagram │ ├── feed.json │ ├── follows.json │ ├── media.json │ └── self.json ├── lconfig │ ├── config-1.json │ ├── config-2.json │ ├── config-3.json │ └── config-4.json ├── links │ ├── facebook_newsfeed.json │ ├── facebook_wall.json │ └── twitter_home_timeline.json ├── photos │ └── allPhotos.json ├── registry │ ├── linkvid.json │ ├── linkvid.tgz │ ├── linkvid001.json │ └── sync.json ├── soundcloud │ ├── favorites.json │ ├── followings.json │ └── tracks.json └── twitter │ ├── 1054551.js │ ├── 1054551.png │ ├── friends.js │ ├── home_timeline.js │ ├── mentions.js │ ├── user_timeline.js │ └── verify_credentials.js ├── ijod-test-local.js ├── integration ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Rakefile └── spec │ ├── integration │ └── dashboard_spec.rb │ └── spec_helper.rb ├── lconfig-test-local.js ├── lcrypto-test-local.js ├── locker-client-test.js ├── locker-core-api-test.js ├── locker-issues-test.js ├── lpquery-test-local.js ├── lpushmanager-test-local.js ├── lscheduler-test-local.js ├── lservicemanager-test-local.js ├── lsyncmanager-test-local.js ├── lutil-test-local.js ├── migrations └── 1315435666981_test.js ├── mongo-test.js ├── registry-test-local.js ├── runTests.js ├── setup-travis.sh ├── synclet-local-facebook.js ├── synclet-local-flickr.js ├── synclet-local-foursquare.js ├── synclet-local-github.js ├── synclet-local-googleContacts.js ├── synclet-local-instagram.js ├── synclet-local-soundcloud.js ├── synclet-local-twitter.js ├── test-logger.js └── test-utils.js /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Apps/dashboardv3/static/common"] 2 | path = Apps/dashboardv3/static/common 3 | url = https://github.com/LockerProject/shared-ui.git 4 | -------------------------------------------------------------------------------- /Apps/.gitignore: -------------------------------------------------------------------------------- 1 | Fizz/ -------------------------------------------------------------------------------- /Apps/4Me/manifest.app: -------------------------------------------------------------------------------- 1 | { 2 | "title":"4Me", 3 | "desc":"Show a map of my foursquare checkins in a given area", 4 | "status":"unstable", 5 | "handle":"4me", 6 | "run":"node app.js" 7 | } -------------------------------------------------------------------------------- /Apps/BackMeUp/backmeup.app: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Back Me Up", 3 | "desc":"make a backup copy of my locker data", 4 | "status":"unstable", 5 | "run":"node bmu.js", 6 | "handle":"bmu" 7 | } -------------------------------------------------------------------------------- /Apps/BloodPressureTracker/js/canvastext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/BloodPressureTracker/js/canvastext.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-apollo.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-go.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-lua.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-ml.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-scala.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-sql.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-tex.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-vb.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /Apps/DevDocs/static/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/DevDocs/static/prettify/lang-wiki.js -------------------------------------------------------------------------------- /Apps/FitBitBatteryNotifier/package.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Apps/FoursquareStats/README.md: -------------------------------------------------------------------------------- 1 | # This is an example locker app for displaying Foursquare check-ins. # 2 | 3 | It uses your Foursquare history to map everywhere you have ever checked in. 4 | 5 | -------------------------------------------------------------------------------- /Apps/FoursquareStats/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/FoursquareStats/screenshot.png -------------------------------------------------------------------------------- /Apps/HelloLinks/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloLinks/screenshot.png -------------------------------------------------------------------------------- /Apps/HelloLinks/static/css/style.css: -------------------------------------------------------------------------------- 1 | /* Get stylin here */ 2 | 3 | #main ul li { 4 | margin-bottom: 10px; 5 | } 6 | -------------------------------------------------------------------------------- /Apps/HelloPHP/hellophp.app: -------------------------------------------------------------------------------- 1 | { 2 | "title":"PHP Hello World", 3 | "action":"not much", 4 | "desc":"just sayin hi and all", 5 | "status":"unstable", 6 | "run":"php hello.php", 7 | "handle":"hellophp" 8 | } -------------------------------------------------------------------------------- /Apps/HelloPhotos/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPhotos/screenshot.png -------------------------------------------------------------------------------- /Apps/HelloPhotos/static/css/style.css: -------------------------------------------------------------------------------- 1 | /* Get stylin here */ 2 | 3 | #main ul li { 4 | margin-bottom: 10px; 5 | } 6 | -------------------------------------------------------------------------------- /Apps/HelloPlaces/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/screenshot.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/foursquare-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/foursquare-marker.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/foursquare.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/glatitude-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/glatitude-marker.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/glatitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/glatitude.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/instagram-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/instagram-marker.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/instagram.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/places-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/places-frame.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/twitter-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/twitter-marker.png -------------------------------------------------------------------------------- /Apps/HelloPlaces/static/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/HelloPlaces/static/img/twitter.png -------------------------------------------------------------------------------- /Apps/HelloRuby/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | gem 'sinatra', :git => 'https://github.com/sinatra/sinatra.git' 4 | gem 'json' 5 | -------------------------------------------------------------------------------- /Apps/HelloRuby/helloruby.rb: -------------------------------------------------------------------------------- 1 | # coding: UTF-8 2 | require 'rubygems' 3 | require 'bundler/setup' 4 | require 'sinatra-locker' 5 | 6 | get '/' do 7 | "Hello, Ruby! ☺" 8 | end 9 | -------------------------------------------------------------------------------- /Apps/LinkaLatte/.gitignore: -------------------------------------------------------------------------------- 1 | static/js/config.js 2 | -------------------------------------------------------------------------------- /Apps/LinkaLatte/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/screenshot.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/1x1-pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/1x1-pixel.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/facebook.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/flickr.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/foursquare-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/foursquare-logo.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/github.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/linked-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/linked-in.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/mail.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/screenshot.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/twitter.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/img/viewer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/LinkaLatte/static/img/viewer-icon.png -------------------------------------------------------------------------------- /Apps/LinkaLatte/static/js/config.js.example: -------------------------------------------------------------------------------- 1 | var baseUrl = 'https://api.spdev.east.singly.com:8443/'; 2 | -------------------------------------------------------------------------------- /Apps/MergedContacts/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | static/js/config.js 3 | -------------------------------------------------------------------------------- /Apps/MergedContacts/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/screenshot.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/silhouette.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/500px.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/aboutme.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/addthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/addthis.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/amazon.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/aol.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/apple.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/bebo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/bing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/blip.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/blogger.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/daytum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/daytum.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/digg.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/dopplr.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/drupal.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/ebay.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/ember.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/etsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/etsy.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/flickr.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/forrst.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/gdgt.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/github.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/google.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/gowalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/gowalla.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/heart.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/hyves.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/icq.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/identi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/identi.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/itune.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/lastfm.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/meetup.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/mixx.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/msn.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/myspace.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/paypal.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/picasa.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/podcast.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/qik.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/quora.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/reddit.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/retweet.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/scribd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/scribd.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/skype.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/smugmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/smugmug.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/spotify.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/squidoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/squidoo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/star.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/tumblr.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/twitter.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/viddler.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/vimeo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/virb.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/w3.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/xing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/yahoo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/yelp.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/16px/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/16px/youtube.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/500px.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/aboutme.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/amazon.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/aol.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/apple.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/bebo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/behance.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/bing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/blip.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/blogger.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/daytum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/daytum.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/digg.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/dropplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/dropplr.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/drupal.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/ebay.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/email.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/ember.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/etsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/etsy.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/flickr.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/forrst.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/gdgt.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/github.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/google.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/gowalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/gowalla.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/heart.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/hyves.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/icq.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/identi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/identi.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/itune.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/lastfm.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/meetup.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/mixx.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/msn.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/qik.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/quora.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/rss.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/skype.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/star.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/vimeo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/virb.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/w3.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/xing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/yahoo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/24px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/24px/yelp.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/500px.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/aol.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/apple.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/bebo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/bing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/blip.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/digg.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/ebay.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/email.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/ember.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/etsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/etsy.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/gdgt.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/heart.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/hyves.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/icq.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/itune.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/mixx.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/msn.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/qik.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/quora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/quora.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/rss.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/skype.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/star.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/vimeo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/virb.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/w3.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/xing.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/yahoo.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/img/social-icons/32px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/MergedContacts/static/img/social-icons/32px/yelp.png -------------------------------------------------------------------------------- /Apps/MergedContacts/static/js/config.js.example: -------------------------------------------------------------------------------- 1 | var baseUrl = 'https://api.spdev.east.singly.com:8443/'; 2 | -------------------------------------------------------------------------------- /Apps/PhotosViewer/.gitignore: -------------------------------------------------------------------------------- 1 | static/js/config.js 2 | -------------------------------------------------------------------------------- /Apps/PhotosViewer/README.md: -------------------------------------------------------------------------------- 1 | Let us know if you do something cool based on this! 2 | -> #lockerproject on irc.freenode.net 3 | -------------------------------------------------------------------------------- /Apps/PhotosViewer/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/PhotosViewer/screenshot.png -------------------------------------------------------------------------------- /Apps/PhotosViewer/static/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/PhotosViewer/static/img/screenshot.png -------------------------------------------------------------------------------- /Apps/PhotosViewer/static/img/viewer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/PhotosViewer/static/img/viewer-icon.png -------------------------------------------------------------------------------- /Apps/PhotosViewer/static/js/config.js.example: -------------------------------------------------------------------------------- 1 | var baseUrl = 'https://api.spdev.east.singly.com:8443/'; 2 | -------------------------------------------------------------------------------- /Apps/PicPipe/ui/index.html: -------------------------------------------------------------------------------- 1 |

First load your photos (flickr only right now, make sure you have it installed/connected and sync'd your photos) 2 | -------------------------------------------------------------------------------- /Apps/Wakemate/static/css/style.css: -------------------------------------------------------------------------------- 1 | /* Get stylin here */ 2 | 3 | #main ul li { 4 | margin-bottom: 10px; 5 | } 6 | -------------------------------------------------------------------------------- /Apps/dashboardv3/node_modules/dust/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject -------------------------------------------------------------------------------- /Apps/dashboardv3/node_modules/dust/TODO: -------------------------------------------------------------------------------- 1 | - Optimize static strings 2 | - Improve interface to compile options (formatting, etc.) 3 | - Refactor compiler -------------------------------------------------------------------------------- /Apps/dashboardv3/node_modules/dust/docs/select.dust.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Apps/dashboardv3/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/screenshot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/batman.jpg -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/default-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/default-profile.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/facebook.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/flickr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/foursquare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/gcontacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/gcontacts.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/github.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/gplus.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/instagram.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/tumblr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons-old/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons-old/twitter.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/add-this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/add-this.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/addthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/addthis.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/amazon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/aol.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/app-store-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/app-store-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/app-store.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/apple.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/bebo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/behance.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/bing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/blip.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/blogger.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-blue.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-green.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-orange.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-red.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-white.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/button-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/button-yellow.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/chromehistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/chromehistory.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/coroflot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/coroflot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/daytum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/daytum.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/delicious.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/design-bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/design-bump.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/designfloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/designfloat.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/deviant-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/deviant-art.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/digg.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/dopplr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/dribbble.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/dropplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/dropplr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/drupal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/ebay.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/email.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/ember.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/facebook.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/feedburner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/feedburner.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/fitbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/fitbit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/flickr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/forrst.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/foursquare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/friendfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/friendfeed.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/friendster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/friendster.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/gcontacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/gcontacts.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/gdgt.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/github.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/glatitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/glatitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/google-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/google-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/google-talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/google-talk.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/google.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/gowalla-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/gowalla-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/gowalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/gowalla.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/gplus.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/heart.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/hyves.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/icondock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/icondock.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/icq.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/identi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/identi.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/instagram.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/itune.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/lastfm.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/latitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/latitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/linkedin.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/meetup.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/metacafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/metacafe.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/microsoft.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/mister-wong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/mister-wong.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/mixx.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/mobileme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/mobileme.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/msn.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/myspace.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/netflix.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/netvibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/netvibes.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/newsvine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/newsvine.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/pandora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/pandora.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/paypal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/photobucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/photobucket.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/picasa.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/podcast.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/posterous.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/qik.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/rdio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/rdio.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/reddit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/retweet.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/rss.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/scribd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/scribd.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/sharethis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/sharethis.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/skype.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/slashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/slashdot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/slideshare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/smugmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/smugmug.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/social-behence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/social-behence.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/social-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/social-email.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/social-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/social-rss.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/soundcloud.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/spotify.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/squidoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/squidoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/star.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/strava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/strava.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/stumbleupon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/technorati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/technorati.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/tumblr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/twitter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/twitter-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/twitter.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/viddler.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/vimeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/virb.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/w3.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/wikepedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/wikepedia.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/withings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/withings.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/wordpress-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/wordpress-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/wordpress.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/xing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/yahoo-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/yahoo-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/yahoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/yelp.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/youtube.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/16px/zeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/16px/zeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/add-this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/add-this.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/amazon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/aol.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/app-store-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/app-store-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/app-store.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/apple.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/bebo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/behance.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/bing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/blip.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/blogger.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-blue.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-green.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-orange.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-red.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-white.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/button-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/button-yellow.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/chromehistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/chromehistory.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/coroflot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/coroflot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/daytum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/daytum.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/delicious.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/design-bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/design-bump.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/designfloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/designfloat.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/deviant-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/deviant-art.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/digg.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/dribbble.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/dropplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/dropplr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/drupal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/ebay.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/email.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/ember.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/facebook.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/feedburner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/feedburner.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/fitbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/fitbit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/flickr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/forrst.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/foursquare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/friendfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/friendfeed.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/friendster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/friendster.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/gcontacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/gcontacts.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/gdgt.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/github.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/glatitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/glatitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/google-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/google-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/google-talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/google-talk.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/google.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/gowalla-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/gowalla-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/gowalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/gowalla.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/gplus.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/heart.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/hyves.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/icondock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/icondock.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/icq.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/identi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/identi.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/instagram.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/itune.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/lastfm.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/latitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/latitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/linkedin.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/meetup.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/metacafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/metacafe.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/microsoft.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/mister-wong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/mister-wong.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/mixx.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/mobileme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/mobileme.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/msn.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/myspace.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/netflix.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/netvibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/netvibes.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/newsvine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/newsvine.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/pandora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/pandora.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/paypal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/photobucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/photobucket.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/picasa.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/podcast.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/posterous.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/qik.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/rdio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/rdio.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/reddit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/retweet.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/rss.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/scribd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/scribd.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/sharethis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/sharethis.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/skype.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/slashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/slashdot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/slideshare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/smugmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/smugmug.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/soundcloud.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/spotify.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/squidoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/squidoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/star.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/strava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/strava.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/stumbleupon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/technorati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/technorati.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/tumblr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/twitter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/twitter-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/twitter.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/viddler.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/vimeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/virb.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/w3.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/wikepedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/wikepedia.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/withings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/withings.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/wordpress-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/wordpress-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/wordpress.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/xing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/yahoo-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/yahoo-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/yahoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/yelp.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/youtube.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/24px/zeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/24px/zeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/add-this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/add-this.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/amazon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/aol.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/app-store-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/app-store-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/app-store.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/apple.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/bebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/bebo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/behance.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/bing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/blip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/blip.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/blogger.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-blue.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-green.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-orange.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-red.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-white.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/button-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/button-yellow.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/chromehistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/chromehistory.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/coroflot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/coroflot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/daytum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/daytum.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/delicious.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/design-bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/design-bump.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/designfloat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/designfloat.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/deviant-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/deviant-art.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/digg.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/dribbble.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/dropplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/dropplr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/drupal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/ebay.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/email.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/ember.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/facebook.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/feedburner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/feedburner.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/fitbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/fitbit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/flickr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/forrst.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/foursquare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/friendfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/friendfeed.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/friendster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/friendster.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/gcontacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/gcontacts.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/gdgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/gdgt.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/github.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/glatitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/glatitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/google-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/google-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/google-talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/google-talk.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/google.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/gowalla-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/gowalla-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/gowalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/gowalla.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/gplus.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/heart.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/hyves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/hyves.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/icondock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/icondock.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/icq.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/identi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/identi.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/instagram.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/itune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/itune.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/lastfm.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/latitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/latitude.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/linkedin.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/meetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/meetup.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/metacafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/metacafe.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/microsoft.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/mister-wong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/mister-wong.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/mixx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/mixx.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/mobileme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/mobileme.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/msn.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/myspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/myspace.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/netflix.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/netvibes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/netvibes.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/newsvine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/newsvine.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/pandora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/pandora.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/paypal.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/photobucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/photobucket.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/picasa.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/podcast.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/posterous.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/qik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/qik.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/rdio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/rdio.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/reddit.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/retweet.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/rss.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/scribd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/scribd.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/sharethis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/sharethis.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/skype.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/slashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/slashdot.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/slideshare.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/smugmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/smugmug.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/soundcloud.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/spotify.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/squidoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/squidoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/star.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/strava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/strava.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/stumbleupon.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/technorati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/technorati.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/tumblr.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/twitter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/twitter-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/twitter.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/viddler.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/vimeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/virb.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/w3.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/wikepedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/wikepedia.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/withings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/withings.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/wordpress-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/wordpress-2.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/wordpress.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/xing.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/yahoo-buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/yahoo-buzz.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/yahoo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/yelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/yelp.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/youtube.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/icons/32px/zeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/icons/32px/zeo.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/loading6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/loading6.gif -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/templates-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/templates-icons.png -------------------------------------------------------------------------------- /Apps/dashboardv3/static/img/uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/dashboardv3/static/img/uparrow.png -------------------------------------------------------------------------------- /Apps/dashboardv3/views/appGallery.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('sidenav') %> 2 | -------------------------------------------------------------------------------- /Apps/dashboardv3/views/explore.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('sidenav') %> 2 | -------------------------------------------------------------------------------- /Apps/photosv0.9/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | static/js/config.js 3 | -------------------------------------------------------------------------------- /Apps/photosv0.9/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/screenshot.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/img/button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/img/button-bg.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/img/loading.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/img/pmicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/img/pmicon.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/img/screenshot.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/img/viewer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/img/viewer-icon.png -------------------------------------------------------------------------------- /Apps/photosv0.9/static/js/config.js.example: -------------------------------------------------------------------------------- 1 | var baseUrl = 'https://api.spdev.east.singly.com:8443/'; 2 | -------------------------------------------------------------------------------- /Apps/photosv0.9/static/js/themes/classic/classic-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/photosv0.9/static/js/themes/classic/classic-map.png -------------------------------------------------------------------------------- /Apps/skeleton/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Apps/skeleton/static/css/style.css -------------------------------------------------------------------------------- /Collections/Contacts/.gitignore: -------------------------------------------------------------------------------- 1 | my 2 | .DS_Store? 3 | ehthumbs.db 4 | Icon? 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /Collections/Photos/README.md: -------------------------------------------------------------------------------- 1 | This is a stub for a collection that would contain images and photos 2 | 3 | Possibly required connectors: 4 | * Facebook 5 | * Flickr 6 | * Instagram 7 | * Path 8 | -------------------------------------------------------------------------------- /Common/README.md: -------------------------------------------------------------------------------- 1 | Shared code bits used by many things. Aren't I helpful? :) -------------------------------------------------------------------------------- /Common/php/httpserver/examples/example_www/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Common/php/httpserver/examples/example_www/admin.gif -------------------------------------------------------------------------------- /Common/php/httpserver/examples/example_www/brew_coffee.php: -------------------------------------------------------------------------------- 1 | short and stout"; -------------------------------------------------------------------------------- /Common/php/httpserver/examples/example_www/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 |

S3 is connected :)

3 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/Dropbox/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 |

Dropbox is connected :)

3 |

info check 4 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/FirefoxHistory/.gitignore: -------------------------------------------------------------------------------- 1 | my/* 2 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/FirefoxHistory/README.rd: -------------------------------------------------------------------------------- 1 | https://github.com/orlandov/node-sqlite/ -------------------------------------------------------------------------------- /Connectors/WorkInProgress/GoodReads/README.md: -------------------------------------------------------------------------------- 1 | Goodreads is the largest social network for readers in the world. They have an API (http://www.goodreads.com/api). 2 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/SimpleJournal/TODO: -------------------------------------------------------------------------------- 1 | - Edit entry 2 | - Delete entry 3 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/Twitpic/ui/index.html: -------------------------------------------------------------------------------- 1 | 2 |

Sync your twitpics

3 |

test 4 |

... 5 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/Wakemate/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/WordPress/util.py: -------------------------------------------------------------------------------- 1 | import os 2 | import logging 3 | 4 | def die(reason): 5 | logging.error("Dying because of: %s" % reason) 6 | os.kill(os.getpid(), 9) 7 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/XMPP/util.py: -------------------------------------------------------------------------------- 1 | import os 2 | import logging 3 | 4 | def die(reason): 5 | logging.error("Dying because of: %s" % reason) 6 | os.kill(os.getpid(), 9) 7 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/YouTube/.gitignore: -------------------------------------------------------------------------------- 1 | auth.token 2 | -------------------------------------------------------------------------------- /Connectors/WorkInProgress/osxAddressBook/.gitignore: -------------------------------------------------------------------------------- 1 | my 2 | .DS_Store 3 | \.*.swp 4 | -------------------------------------------------------------------------------- /Connectors/Zeo/synclets.json: -------------------------------------------------------------------------------- 1 | { 2 | "synclets": [ 3 | { "name": "sleep", "frequency": 86400, "threshold": 0 } 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /Connectors/foursquare/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | access.token 3 | -------------------------------------------------------------------------------- /Connectors/foursquare/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Connectors/foursquare/icon.png -------------------------------------------------------------------------------- /Docs/ServiceTypeDefinitions/README.md: -------------------------------------------------------------------------------- 1 | These are descriptions of services based on type. Generally this is a set of REST URIs made available by a type. 2 | -------------------------------------------------------------------------------- /Logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Logs/.gitignore -------------------------------------------------------------------------------- /Ops/README.md: -------------------------------------------------------------------------------- 1 | There is stuff in here for lack of a better place to put it for now, may eventually go away as things get organized better! 2 | -------------------------------------------------------------------------------- /Ops/static/favicon.ico: -------------------------------------------------------------------------------- 1 | ../../Config/favicon.ico -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/ajax-loader.png -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/icon-search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/icon-search-black.png -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/icons-18-black.png -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/icons-18-white.png -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/icons-36-black.png -------------------------------------------------------------------------------- /Ops/static/static/img/jqm/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/jqm/icons-36-white.png -------------------------------------------------------------------------------- /Ops/static/static/img/numbers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/numbers.gif -------------------------------------------------------------------------------- /Ops/static/static/img/silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/Ops/static/static/img/silhouette.png -------------------------------------------------------------------------------- /Ops/static/static/js/viewer.js: -------------------------------------------------------------------------------- 1 | // this is a bit of a placeholder for viewer utilities to interact with the locker they're in 2 | baseUrl = ""; 3 | 4 | -------------------------------------------------------------------------------- /Ops/static/static/test.html: -------------------------------------------------------------------------------- 1 | hello! -------------------------------------------------------------------------------- /scripts/use-deps.sh: -------------------------------------------------------------------------------- 1 | # Find locally installed dependencies 2 | if [ -f deps/environment.sh ]; then 3 | . deps/environment.sh 4 | fi 5 | -------------------------------------------------------------------------------- /test/fixtures/common/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/test/fixtures/common/avatar.png -------------------------------------------------------------------------------- /test/fixtures/common/grimace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/test/fixtures/common/grimace.jpg -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | locker.log 2 | scheduler.json 3 | Config/gitrev.json 4 | Logs/* 5 | build.json 6 | -------------------------------------------------------------------------------- /tests/Apps: -------------------------------------------------------------------------------- 1 | ../Apps -------------------------------------------------------------------------------- /tests/Collections: -------------------------------------------------------------------------------- 1 | ../Collections -------------------------------------------------------------------------------- /tests/Common: -------------------------------------------------------------------------------- 1 | ../Common/ -------------------------------------------------------------------------------- /tests/Connectors: -------------------------------------------------------------------------------- 1 | ../Connectors -------------------------------------------------------------------------------- /tests/Data.tests/.npm/contacts/0.0.2/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/contacts/0.0.2/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/contacts/0.0.2/package/.gitignore: -------------------------------------------------------------------------------- 1 | my 2 | .DS_Store? 3 | ehthumbs.db 4 | Icon? 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /tests/Data.tests/.npm/facebook/0.0.6/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/facebook/0.0.6/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/facebook/0.0.6/package/.gitignore: -------------------------------------------------------------------------------- 1 | access.token 2 | my/* 3 | -------------------------------------------------------------------------------- /tests/Data.tests/.npm/facebook/0.0.6/package/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/facebook/0.0.6/package/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/.npm/flickr/0.0.5/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/flickr/0.0.5/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/flickr/0.0.5/package/.gitignore: -------------------------------------------------------------------------------- 1 | my/* 2 | -------------------------------------------------------------------------------- /tests/Data.tests/.npm/flickr/0.0.5/package/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/flickr/0.0.5/package/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/.npm/gcontacts/0.0.6/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/gcontacts/0.0.6/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/gcontacts/0.0.6/package/.gitignore: -------------------------------------------------------------------------------- 1 | my 2 | .DS_Store? 3 | ehthumbs.db 4 | Icon? 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /tests/Data.tests/.npm/gcontacts/0.0.6/package/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/gcontacts/0.0.6/package/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/.npm/gcontacts/0.0.6/package/synclets.json: -------------------------------------------------------------------------------- 1 | { 2 | "provides":["contact/gcontacts"], 3 | "synclets":[{"name": "contacts", "frequency": 600}] 4 | } 5 | -------------------------------------------------------------------------------- /tests/Data.tests/.npm/instagram/0.0.4/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/instagram/0.0.4/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/instagram/0.0.4/package/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/instagram/0.0.4/package/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/.npm/links/0.0.4/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/links/0.0.4/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/photos/0.0.2/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/photos/0.0.2/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/places/0.0.2/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/places/0.0.2/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/search/0.0.2/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/search/0.0.2/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/soundcloud/0.0.1/package.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/soundcloud/0.0.1/package.tgz -------------------------------------------------------------------------------- /tests/Data.tests/.npm/soundcloud/0.0.1/package/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/.npm/soundcloud/0.0.1/package/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/facebook-test/allKnownIDs.json: -------------------------------------------------------------------------------- 1 | {"103135":1,"604699113":1,"684655824":1,"1199908083":1,"1575983201":1} -------------------------------------------------------------------------------- /tests/Data.tests/facebook-test/current.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/facebook-test/current.db -------------------------------------------------------------------------------- /tests/Data.tests/facebook-test/friends/friends.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/facebook-test/friends/friends.db -------------------------------------------------------------------------------- /tests/Data.tests/facebook-test/friends/friends.index: -------------------------------------------------------------------------------- 1 | 256 2 | 536 3 | 798 4 | 1054 5 | 1312 6 | -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/facebook/.gitignore: -------------------------------------------------------------------------------- 1 | access.token 2 | my/* 3 | -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/facebook/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/facebook/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/gcontacts/.gitignore: -------------------------------------------------------------------------------- 1 | my 2 | .DS_Store? 3 | ehthumbs.db 4 | Icon? 5 | Thumbs.db 6 | -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/gcontacts/gcontacts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/gcontacts/gcontacts.pyc -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/gcontacts/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/gcontacts/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/gcontacts/synclets.json: -------------------------------------------------------------------------------- 1 | { 2 | "provides":["contact/gcontacts"], 3 | "synclets":[{"name": "contacts", "frequency": 600}] 4 | } 5 | -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/gcontacts/webservice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/gcontacts/webservice.pyc -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/instagram/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/instagram/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/node_modules/soundcloud/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Data.tests/node_modules/soundcloud/icon.png -------------------------------------------------------------------------------- /tests/Data.tests/places/state.json: -------------------------------------------------------------------------------- 1 | {"updated":1326430506144} -------------------------------------------------------------------------------- /tests/Data.tests/proxy-redirect-test/me.json: -------------------------------------------------------------------------------- 1 | {"run":"node client.js","is":"app","id":"proxy-redirect-test","srcdir":"Data/proxy-redirect-test","title":"Test Proxy Redirects"} -------------------------------------------------------------------------------- /tests/Data.tests/state.json: -------------------------------------------------------------------------------- 1 | { "version" : "1" } 2 | -------------------------------------------------------------------------------- /tests/Data.tests/testCookies/me.json: -------------------------------------------------------------------------------- 1 | {"run":"node client.js","is":"app","id":"testCookies","srcdir":"Data/testCookies","title":"Test Proxy Cookie Stuff"} -------------------------------------------------------------------------------- /tests/Data.tests/testProviders/me.json: -------------------------------------------------------------------------------- 1 | {"is":"connector","id":"testProviders","srcdir":"Data/testProviders","title":"Test /providers","provides":["testtype/testproviders"]} -------------------------------------------------------------------------------- /tests/Data.tests/testProviders2/me.json: -------------------------------------------------------------------------------- 1 | {"is":"connector","id":"testProviders2","srcdir":"Data/testProviders2","title":"Test /providers 2","provides":["testtype/anotherprovider"]} -------------------------------------------------------------------------------- /tests/Data.tests/testUnicode/me.json: -------------------------------------------------------------------------------- 1 | {"run":"node client.js","is":"app","id":"testUnicode","srcdir":"Data/testUnicode","title":"Test Unicode Stuff"} -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/blogs.json: -------------------------------------------------------------------------------- 1 | [{"url": "http://invalid.com/blog/", "isAdmin": true, "blogid": "1", "xmlrpc": "http://invalid.com/blog/xmlrpc.php", "blogName": "Some Test Blog"}] 2 | -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/pingbacks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/secrets.json: -------------------------------------------------------------------------------- 1 | {"url": "http://invalid.com/blog", "password": "XXXXXX", "user": "Invalid", "server_type": "wordpress"} 2 | -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/trackbacks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/Data.tests/wordpress-test/user_info.json: -------------------------------------------------------------------------------- 1 | {"url": "http://", "nickname": "Invalid", "userid": "2", "firstname": "Invalid", "lastname": "Invalid"} 2 | -------------------------------------------------------------------------------- /tests/Data.tests/xmpp-test/secrets.json: -------------------------------------------------------------------------------- 1 | {"jid":"invalid@localhost/invalid","password":"invalid","host":"localhost","port":52222} 2 | -------------------------------------------------------------------------------- /tests/Logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Logs/.gitignore -------------------------------------------------------------------------------- /tests/Me/symKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Me/symKey -------------------------------------------------------------------------------- /tests/Tests/event-collector/event-collector.connector: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Collect Twitter Events", 3 | "run":"node event-collector.js", 4 | "events":[["configuration/listener","/event"]] 5 | } -------------------------------------------------------------------------------- /tests/Tests/migration-test/migration-test.connector: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Test migrating services from one version to the next", 3 | "run":"node migration-test.js", 4 | "srcdir":"Tests/migration-test" 5 | } -------------------------------------------------------------------------------- /tests/Tests/migration-test/migration-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/Tests/migration-test/migration-test.js -------------------------------------------------------------------------------- /tests/Tests/mongo-client/mongo-client.connector: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Test MongoDB Connections", 3 | "mongoCollections" : ["thing1","thing2"], 4 | "run":"node mongo-client.js" 5 | } -------------------------------------------------------------------------------- /tests/Tests/scheduler-tester/scheduler-tester.connector: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Test Scheduler", 3 | "run":"node scheduler-tester.js" 4 | } -------------------------------------------------------------------------------- /tests/Tests/spawn-valid/spawn-valid.connector: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Test spawning valid service", 3 | "action":"Should run properly", 4 | "desc":"Nothing", 5 | "run":"node spawn-valid.js" 6 | } -------------------------------------------------------------------------------- /tests/Tests/testSynclet/auth.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /tests/fixtures/events/contacts/foursquare_contact_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "action": "delete", 3 | "idr": "contact://foursquare/#2715557" 4 | } 5 | -------------------------------------------------------------------------------- /tests/fixtures/events/contacts/github_contact_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/events/contacts/github_contact_1.json -------------------------------------------------------------------------------- /tests/fixtures/events/contacts/github_contact_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/events/contacts/github_contact_2.json -------------------------------------------------------------------------------- /tests/fixtures/facebook/1234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/facebook/1234.jpg -------------------------------------------------------------------------------- /tests/fixtures/facebook/friends2.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "name": "Foo You", 5 | "id": "1234" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /tests/fixtures/facebook/none.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /tests/fixtures/facebook/photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/facebook/photo.gif -------------------------------------------------------------------------------- /tests/fixtures/flickr/bad.json: -------------------------------------------------------------------------------- 1 | {"stat":"fail","code":"97","message":"Missing signature"} 2 | -------------------------------------------------------------------------------- /tests/fixtures/flickr/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/flickr/img.png -------------------------------------------------------------------------------- /tests/fixtures/foursquare/ctide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/foursquare/ctide.png -------------------------------------------------------------------------------- /tests/fixtures/github/WoWCombatLogParser_watchers.json: -------------------------------------------------------------------------------- 1 | {"watchers":["ctide"]} -------------------------------------------------------------------------------- /tests/fixtures/github/arenarecapslibrary_watchers-1.json: -------------------------------------------------------------------------------- 1 | {"watchers":["ctide"]} -------------------------------------------------------------------------------- /tests/fixtures/github/arenarecapslibrary_watchers.json: -------------------------------------------------------------------------------- 1 | {"watchers":["ctide", "smurthas"]} -------------------------------------------------------------------------------- /tests/fixtures/github/followers.json: -------------------------------------------------------------------------------- 1 | {"users":["fourk","smurthas"]} -------------------------------------------------------------------------------- /tests/fixtures/github/following.json: -------------------------------------------------------------------------------- 1 | {"users":["wmw"]} -------------------------------------------------------------------------------- /tests/fixtures/github/less_followers.json: -------------------------------------------------------------------------------- 1 | {"users":["fourk"]} -------------------------------------------------------------------------------- /tests/fixtures/googleContacts/status.json: -------------------------------------------------------------------------------- 1 | {"contacts":{"lastUpdate":1},"groups":{"lastUpdate":1}} -------------------------------------------------------------------------------- /tests/fixtures/lconfig/config-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "externalHost" : "example.com", 3 | "externalPort" : 443 4 | } -------------------------------------------------------------------------------- /tests/fixtures/lconfig/config-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockerPort" : 8043, 3 | "externalHost" : "example.com", 4 | "externalPort" : 443, 5 | "externalSecure" : false 6 | } -------------------------------------------------------------------------------- /tests/fixtures/lconfig/config-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "externalHost" : "example.com", 3 | "externalPort" : 8443, 4 | "externalSecure" : true 5 | } -------------------------------------------------------------------------------- /tests/fixtures/registry/linkvid.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/registry/linkvid.tgz -------------------------------------------------------------------------------- /tests/fixtures/twitter/1054551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LockerProject/Locker/cf0c12e25e2a7fd33c7274a5d8bc144de3b65fbb/tests/fixtures/twitter/1054551.png -------------------------------------------------------------------------------- /tests/fixtures/twitter/friends.js: -------------------------------------------------------------------------------- 1 | {"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0","ids":[1054551],"next_cursor":0} 2 | -------------------------------------------------------------------------------- /tests/integration/.gitignore: -------------------------------------------------------------------------------- 1 | chromedriver.log 2 | spec/reports 3 | --------------------------------------------------------------------------------