[Pkg-javascript-commits] [backbone] 82/211: adding basecamp mobile, instagreat, and tilemill

Jonas Smedegaard js at moszumanska.debian.org
Sat May 3 17:00:06 UTC 2014


This is an automated email from the git hooks/post-receive script.

js pushed a commit to tag 0.5.0
in repository backbone.

commit 0ca0481af403dd96696e369097dded6609e140ef
Author: Jeremy Ashkenas <jashkenas at gmail.com>
Date:   Mon Feb 14 16:48:25 2011 -0500

    adding basecamp mobile, instagreat, and tilemill
---
 docs/images/basecamp-mobile.png | Bin 0 -> 130256 bytes
 docs/images/instagreat.png      | Bin 0 -> 185408 bytes
 docs/images/tilemill.png        | Bin 0 -> 152798 bytes
 index.html                      |  82 +++++++++++++++++++++++++++++++---------
 4 files changed, 65 insertions(+), 17 deletions(-)

diff --git a/docs/images/basecamp-mobile.png b/docs/images/basecamp-mobile.png
new file mode 100644
index 0000000..0b96b69
Binary files /dev/null and b/docs/images/basecamp-mobile.png differ
diff --git a/docs/images/instagreat.png b/docs/images/instagreat.png
new file mode 100644
index 0000000..ea0fca3
Binary files /dev/null and b/docs/images/instagreat.png differ
diff --git a/docs/images/tilemill.png b/docs/images/tilemill.png
new file mode 100644
index 0000000..0047c30
Binary files /dev/null and b/docs/images/tilemill.png differ
diff --git a/index.html b/index.html
index cb59da0..02458b4 100644
--- a/index.html
+++ b/index.html
@@ -1813,19 +1813,67 @@ var DocumentView = Backbone.View.extend({
         <img src="docs/images/dc-workspace.png" alt="DocumentCloud Workspace" class="example_image" />
       </a>
     </div>
+    
+    <p>
+      <a href="http://37signals.com/">37Signals</a> used Backbone.js to create 
+      <a href="http://basecamphq.com/mobile">Basecamp Mobile</a>, the mobile version
+      of their popular project management software. You can access all your Basecamp
+      projects, post new messages, and comment on milestones (all represented
+      internally as Backbone.js models).
+    </p>
 
+    <div style="text-align: center;">
+      <a href="http://basecamphq.com/mobile">
+        <img src="docs/images/basecamp-mobile.png" alt="Basecamp Mobile" class="example_image" />
+      </a>
+    </div>
+    
     <p>
-      <a href="http://bennolan.com/">Ben Nolan</a> created
-      <a href="http://bennolan.com/2010/11/24/backbone-jquery-demo.html">an example "Backbone Mobile" application</a>, combining Backbone.js
-      with <a href="http://jquerymobile.com/">jQuery Mobile</a>. You can
-      <a href="http://bennolan.com/science/backbone-mobile/">try the app</a>
-      in your browser, or view the
-      <a href="https://github.com/bnolan/backbone-mobile">source code</a> on Github.
+      Our fellow 
+      <a href="http://www.newschallenge.org/">Knight Foundation News Challenge</a> 
+      winners, <a href="http://mapbox.com/">MapBox</a>, created an open-source 
+      map design studio with Backbone.js: 
+      <a href="http://mapbox.github.com/tilemill/">TileMill</a>.
+      TileMill lets you manage map layers based on shapefiles and rasters, and
+      edit their appearance directly in the browser with the 
+      <a href="https://github.com/mapbox/carto">Carto styling language</a>.
     </p>
 
     <div style="text-align: center;">
-      <a href="http://bennolan.com/science/backbone-mobile/">
-        <img src="docs/images/backbone-mobile.png" alt="Backbone Mobile" class="example_image" />
+      <a href="http://mapbox.github.com/tilemill/">
+        <img src="docs/images/tilemill.png" alt="TileMill" class="example_image" />
+      </a>
+    </div>
+    
+    <p>
+      <a href="http://twitter.com/elliottkember">Elliott Kember</a> and 
+      <a href="http://twitter.com/dizzyup">Hector Simpson</a> built 
+      <a href="http://instagre.at">Insta-great!</a> 
+      - a fun way to explore popular photos and interact with 
+      <a href="http://instagram.com/">Instagram</a> on the web. 
+      Elliott says, "Backbone.js and Coffeescript were insanely useful for 
+      writing clean, consistent UI code and keeping everything modular and 
+      readable, even through several code refactors. I'm in love."
+    </p>
+    
+    <div style="text-align: center;">
+      <a href="http://instagre.at">
+        <img src="docs/images/instagreat.png" alt="instagre.at" class="example_image" />
+      </a>
+    </div>
+    
+    <p>
+      <a href="http://www.twitter.com/jamesjyu">James Yu</a> used Backbone.js to
+      create <a href="http://www.quietwrite.com/">QuietWrite</a>, an app
+      that gives writers a clean and quiet interface to concentrate on the text itself.
+      The editor relies on Backbone to persist document data to the server. He 
+      followed up with a Backbone.js + Rails tutorial that describes how to implement 
+      <a href="http://www.jamesyu.org/2011/01/27/cloudedit-a-backbone-js-tutorial-by-example/">CloudEdit, a simple document editing app</a>.
+    </p>
+    
+    <div style="text-align: center;">
+      <a href="http://www.quietwrite.com/">
+        <img src="docs/images/quietwrite.png" alt="QuietWrite" class="example_image" />
       </a>
     </div>
     
@@ -1853,17 +1901,17 @@ var DocumentView = Backbone.View.extend({
     </div>
     
     <p>
-      <a href="http://www.twitter.com/jamesjyu">James Yu</a> used Backbone.js to
-      create <a href="http://www.quietwrite.com/">QuietWrite</a>, an app
-      that gives writers a clean and quiet interface to concentrate on the text itself.
-      The editor relies on Backbone to persist document data to the server. He 
-      followed up with a Backbone.js + Rails tutorial that describes how to implement 
-      <a href="http://www.jamesyu.org/2011/01/27/cloudedit-a-backbone-js-tutorial-by-example/">CloudEdit, a simple document editing app</a>.
+      <a href="http://bennolan.com/">Ben Nolan</a> created
+      <a href="http://bennolan.com/2010/11/24/backbone-jquery-demo.html">an example "Backbone Mobile" application</a>, combining Backbone.js
+      with <a href="http://jquerymobile.com/">jQuery Mobile</a>. You can
+      <a href="http://bennolan.com/science/backbone-mobile/">try the app</a>
+      in your browser, or view the
+      <a href="https://github.com/bnolan/backbone-mobile">source code</a> on Github.
     </p>
-    
+
     <div style="text-align: center;">
-      <a href="http://www.quietwrite.com/">
-        <img src="docs/images/quietwrite.png" alt="QuietWrite" class="example_image" />
+      <a href="http://bennolan.com/science/backbone-mobile/">
+        <img src="docs/images/backbone-mobile.png" alt="Backbone Mobile" class="example_image" />
       </a>
     </div>
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/backbone.git



More information about the Pkg-javascript-commits mailing list