[ClojureScript] Re: [ANN] Clojure 1.7.0-RC1 now available

2015-05-23 Thread Alan Moore
I've started porting a library to use Reader Conditionals - I haven't seen 
any issues with it yet but my troubles are more related to the library and 
re-organizing the code than to RC specifically. I'll report back when I'm 
done...

Alan


On Friday, May 22, 2015 at 2:09:28 PM UTC-7, Daniel Compton wrote:
>
> One of the most significant features of 1.7 are Reader Conditionals. I'm 
> pretty confident after all the discussion that has gone on that we have a 
> good design. However I haven't seen many or any libraries which have gone 
> through the porting process to use Reader Conditionals. 
>
> I've worked on porting a few libraries and everything has gone mostly 
> smoothly. However I'd feel more confident that we've got the right design 
> if we had more people trying to port their libraries/projects to cljc and 
> reporting their experiences.
>
> Is this a reasonable concern, or am I missing something and this isn't 
> necessary?
> On Fri, 22 May 2015 at 7:35 pm Jason Wolfe > 
> wrote:
>
>> We haven't shipped it to production yet, but I just verified that our 
>> full test suite at Prismatic passes on RC1 after fixing a few tests that 
>> were erroneously depending on hash ordering.   Thanks everyone for all the 
>> hard work on this release!  
>>
>> On Thursday, May 21, 2015 at 9:31:08 AM UTC-7, Alex Miller wrote:
>>>
>>> Clojure 1.7.0-RC1 is now available.
>>>
>>> Try it via
>>> - Download: 
>>> https://repo1.maven.org/maven2/org/clojure/clojure/1.7.0-RC1/
>>> - Leiningen: [org.clojure/clojure "1.7.0-RC1"]
>>>
>>> The only change since 1.7.0-beta3 is CLJ-1706, which makes reader 
>>> conditional splicing an error at the top level (previously it would 
>>> silently drop all but the first spliced element).
>>>
>>> For a full list of changes since 1.6.0, see:
>>> https://github.com/clojure/clojure/blob/master/changes.md
>>>
>>> Please give it a try and let us know if things are working (or not). The 
>>> more and quicker feedback we get, the sooner we can release 1.7.0 final!
>>>
>>> - Alex
>>>
>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Clojure Dev" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to clojure-dev...@googlegroups.com .
>> To post to this group, send email to cloju...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/clojure-dev.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] progressive loading

2015-05-23 Thread David Nolen
What I would suggest is just writing script tags. The module definition is
pure data so you could use this to produce the right scripts tags on your
pages in dependency order.

It maybe possible to use the async loading stuff provided by Closure but I
don't know much about it myself. If someone can me point to an example that
combines Closure code splitting with async loading I'd be happy to take a
look and consider it.

David

On Sat, May 23, 2015 at 10:09 AM, Matthew Phillips <
matt...@matthewphillips.info> wrote:

>  Thanks! That answers the splitting part, glad to see that's incorporated
> into cljs directly. What about the loading part?
>
>
> On Sat, May 23, 2015, at 10:03 AM, Oliver George wrote:
>
> http://swannodette.github.io/2015/02/23/hello-google-closure-modules/
> On 23 May 2015 11:40 pm, "Matthew Phillips" 
> wrote:
>
> Has anyone tried to set up progressive loading? On a large site you
> might not want to load all of your javascript right away, but delay
> loading page 2 until the user clicks to go to that page.  Closure's
> ModuleManager is probably the way to do this, just wondering if anyone
> has done it before:
>
> https://code.google.com/p/closure-library/source/browse/closure/goog/module/modulemanager.js?r=aaa0492e49498ab5ceb6c83ffdaa68115c43748c
>
> --
> Note that posts from new members are moderated - please be patient with
> your first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojurescript+unsubscr...@googlegroups.com.
> To post to this group, send email to clojurescript@googlegroups.com.
> Visit this group at http://groups.google.com/group/clojurescript.
>
>
>
> --
> Note that posts from new members are moderated - please be patient with
> your first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojurescript+unsubscr...@googlegroups.com.
> To post to this group, send email to clojurescript@googlegroups.com.
> Visit this group at http://groups.google.com/group/clojurescript.
>

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] progressive loading

2015-05-23 Thread Matthew Phillips
Thanks! That answers the splitting part, glad to see that's incorporated
into cljs directly. What about the loading part?


On Sat, May 23, 2015, at 10:03 AM, Oliver George wrote:
> http://swannodette.github.io/2015/02/23/hello-google-closure-modules/


> On 23 May 2015 11:40 pm, "Matthew Phillips"
>  wrote:
>> Has anyone tried to set up progressive loading? On a large site you
>>
might not want to load all of your javascript right away, but delay
>>
loading page 2 until the user clicks to go to that page. Closure's
>>
ModuleManager is probably the way to do this, just wondering if anyone
>>
has done it before:
>> https://code.google.com/p/closure-library/source/browse/closure/goog/module/modulemanager.js?r=aaa0492e49498ab5ceb6c83ffdaa68115c43748c
>>
>>
--
>>
Note that posts from new members are moderated - please be patient with
your first post.
>>
---
>>
You received this message because you are subscribed to the Google
Groups "ClojureScript" group.
>>
To unsubscribe from this group and stop receiving emails from it, send
an email to clojurescript+unsubscr...@googlegroups.com[1].
>>
To post to this group, send email to clojurescript@googlegroups.com.
>>
Visit this group at http://groups.google.com/group/clojurescript.



Links:

  1. mailto:clojurescript%2bunsubscr...@googlegroups.com

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


[ClojureScript] progressive loading

2015-05-23 Thread Matthew Phillips
Has anyone tried to set up progressive loading? On a large site you
might not want to load all of your javascript right away, but delay
loading page 2 until the user clicks to go to that page.  Closure's
ModuleManager is probably the way to do this, just wondering if anyone
has done it before:
https://code.google.com/p/closure-library/source/browse/closure/goog/module/modulemanager.js?r=aaa0492e49498ab5ceb6c83ffdaa68115c43748c

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.