Re: Example of a real-world ClojureScript web application

2011-08-14 Thread pmbauer
Bit of copyright violation, that. If you want the Closure e-book, get a licensed copy. We should encourage legal means of obtaining information rather than post links to hosts that aren't authorized to distribute materials. -- You received this message because you are subscribed to the Google

Re: Example of a real-world ClojureScript web application

2011-08-14 Thread Timothy Washington
Oops, sorry 'bout that. +1 on what you said. Tim On Sun, Aug 14, 2011 at 4:31 AM, pmbauer paul.michael.ba...@gmail.comwrote: Bit of copyright violation, that. If you want the Closure e-book, get a licensed copy. We should encourage legal means of obtaining information rather than post

Re: Example of a real-world ClojureScript web application

2011-08-13 Thread Filip de Waard
On Wed, Aug 10, 2011 at 11:42 PM, Raju Bitter rajubit...@googlemail.comwrote: Thanks for sharing the code with us, Filip. I have one additional question: Which parts of ClojureScript were documented well enough for you, and where was it difficult to find enough information on how to

Re: Example of a real-world ClojureScript web application

2011-08-13 Thread Raju Bitter
Thanks for your response, Filip. That means for such a new technology the documentation is very good already. And the community can jump in and improve it until the first stable release. Good to know! Raju On Sat, Aug 13, 2011 at 9:16 AM, Filip de Waard f...@vix.io wrote: On Wed, Aug 10, 2011

Re: Example of a real-world ClojureScript web application

2011-08-13 Thread Timothy Washington
Btw, I found a PDF version online, of Closure: The Definitive Guidehttp://files.cnblogs.com/darkangle/Closure-The-Definitive-Guide.pdf . There's also the online docshttp://closure-library.googlecode.com/svn/docs/index.html, and a video

Re: Example of a real-world ClojureScript web application

2011-08-12 Thread Timothy Washington
I was able to get Jasmine tests running in the browser. You really just have to follow the pattern in Quickstarthttps://github.com/clojure/clojurescript/wiki/Quick-Start, and good.require the needed namespaces. I imagine Google Closure's testing

Re: Example of a real-world ClojureScript web application

2011-08-12 Thread Raju Bitter
Thanks for sharing the code with us, Filip. I have one additional question: Which parts of ClojureScript were documented well enough for you, and where was it difficult to find enough information on how to implemented certain features? Raju On Aug 10, 11:22 pm, Scott Jaderholm

Re: Example of a real-world ClojureScript web application

2011-08-11 Thread Filip de Waard
On Wed, Aug 10, 2011 at 11:22 PM, Scott Jaderholm jaderh...@gmail.comwrote: I haven't read the code yet but I have a few questions: Do you miss backbone.js? Are you going to use it with cljs? I'm using 100% ClojureScript, with Google Closure as the only external dependency. I don't miss

Re: Example of a real-world ClojureScript web application

2011-08-11 Thread Filip de Waard
On Thu, Aug 11, 2011 at 4:03 AM, Timothy Washington twash...@gmail.comwrote: Good on you. I've been looking to find a reliable way to have Javascript unit testing run in a v8 (or any JS) shell. I've tried Jasmine and am now trying Google Closure's unit testing framework, but have so far come

Re: Example of a real-world ClojureScript web application

2011-08-11 Thread Linus Ericsson
You get Selenium running by using the clj-webdriver [1], thanks to Semperos for that one! [1] https://github.com/semperos/clj-webdriver /Linus 2011/8/11 Filip de Waard f...@vix.io On Thu, Aug 11, 2011 at 4:03 AM, Timothy Washington twash...@gmail.comwrote: Good on you. I've been looking to

Re: Example of a real-world ClojureScript web application

2011-08-10 Thread Scott Jaderholm
I haven't read the code yet but I have a few questions: Do you miss backbone.js? Are you going to use it with cljs? Have you shared any code between the frontend and backend? As in run the same functions on both sides. If so, are you duplicating the code in both .clj and .cljs or doing something

Re: Example of a real-world ClojureScript web application

2011-08-10 Thread Timothy Washington
Good on you. I've been looking to find a reliable way to have Javascript unit testing run in a v8 (or any JS) shell. I've tried Jasmine and am now trying Google Closure's unit testing framework, but have so far come up short. Have you come up with anything that works? For now, i'm just having

Example of a real-world ClojureScript web application

2011-08-09 Thread Filip de Waard
I'm working on Vix, which is a document repository and content management system written in Clojure with a CouchDB backend. After the announcement on July 23 I immediately got excited about ClojureScript and the Google Closure toolkit, so I dropped the existing Backbone.js and jQuery code and

Re: Example of a real-world ClojureScript web application

2011-08-09 Thread David Jagoe
Thank you for making this available! On 10 August 2011 02:53, Filip de Waard f...@vix.io wrote: I'm working on Vix, which is a document repository and content management system written in Clojure with a CouchDB backend. After the announcement on July 23 I immediately got excited about