Fork me on GitHub
#om
<
2016-08-23
>
iwankaramazow18:08:58

@anmonteiro In the talk you did a few months ago, you showed some quotes from Roy T. Fielding. Where these from specific papers?

anmonteiro18:08:23

@iwankaramazow it’s from his REST thesis

anmonteiro21:08:52

@dnolen

cljs.user=> (require 'om.next.tests)
nil
cljs.user=> (in-ns 'om.next.tests)
nil
om.next.tests=> (run-tests)

Testing om.next.tests
 [ 74.551s] [om.next]  #uuid "a04a6689-be74-4354-ae02-ff7b04d687be"
 [ 74.565s] [om.next] , #uuid "fe8e7bc6-3681-4ff6-a2a3-66d3a9e56915"
 [ 74.573s] [om.next] , #uuid "f10f0e24-6ea2-4e04-be54-637927d79a28"
 [ 74.579s] [om.next] , #uuid "c046fc6f-9d4d-4140-9098-af83aa97704f"
 [ 74.583s] [om.next] , #uuid "32d02f34-584c-4f77-b467-337a3000a124"
 [ 74.588s] [om.next] , #uuid "cc287d7f-dc59-4016-8575-e076c85cc1c4"
 [ 74.655s] [om.next] transacted '[(app/inc!)], #uuid "195c776c-a889-416b-84a1-ebeecbad1a3e"
 [ 74.656s] [om.next] transacted '[(this/throws)], #uuid "2d07a17e-6cdf-4249-95c3-8c5f8e98208a"
 [ 74.657s] [om.next] transacted '[(app/inc!) :app/count], #uuid "898bab51-c74f-44cb-ad37-8c33fb3e5a6b"
 [ 74.659s] [om.next] transacted '[(this/throws) :app/count], #uuid "edb9d5be-a723-4a31-8b25-506620893198"

Ran 102 tests containing 304 assertions.
0 failures, 0 errors.
nil

cljs.user=> (require '[om.dom :as dom])
nil
cljs.user=> (require '[cljsjs.react.dom.server])
nil
cljs.user=> (dom/render-to-str (dom/div nil "Hello, world."))
"<div data-reactroot=\"\" data-reactid=\"1\" data-react-checksum=\"1638601712\">Hello, world.</div>"
cljs.user=> 

anmonteiro21:08:08

this is in Planck

anmonteiro21:08:21

Submitting a PR with some (very few) changes in a moment

anmonteiro21:08:58

should be good to test one-off stuff whenever users report bugs or something

anmonteiro21:08:59

@dnolen I’m amazed at how few changes are needed for this to work https://github.com/omcljs/om/pull/752

dnolen21:08:53

@anmonteiro sweet thanks, will take a look later!