Logs for the RingoJS IRC channel, as logged by ringostarr.

2010-08-14

[02:30] <gtoast> does anyone know of a commonjs rss module?

[14:20] <robi42_> gtoast: re: rss module, there's rss/atom support in ringolog utilizing rome java lib, see: http://github.com/robi42/ringolog/blob/hibernate/app/feed.js

[15:56] <gtoast> robi42: heh. I ended up doing it the (not so) hard way by turning http://xmljs.sourceforge.net/index.html into a module

[18:46] <robi42_> gtoast: nice, did you put that xmljs wrapping module up on github/bitbucket already?

[18:46] <gtoast> robi42_: not yet. I have to admit. I'm a little intimidated by git and github.

[18:47] <gtoast> robi42_: I'll figure it out tho

[18:47] <robi42_> keep us updated on that, please; sounds interesting

[18:48] <robi42_> btw, if you run into any troubles concerning git most probably earl can help you out :)

[18:51] * earl ducks

[18:51] <robi42_> hehe

[19:02] <gtoast> robi42_: will do.

[20:52] <rhyolight> people! :)

[20:52] <rhyolight> anyone body around want to help out a ringo newb?

[21:06] <rhyolight> how does the config.js in my application match up with the RingoConfiguration class?

[21:07] <rhyolight> I need to set this to true: http://www.mozilla.org/rhino/apidocs/org/mozilla/javascript/Context.html#FEATURE_PARENT_PROTO_PROPERTIES

[21:07] <rhyolight> And I can see the right Java method: http://github.com/ringo/ringojs/blob/master/src/org/ringojs/tools/RingoConfiguration.java#L362

[21:08] <rhyolight> But I can't figure out how I can set that value from the JavaScript in my application.

[23:24] <robi42_> rhyolight: you can set `-l` flag (so-called legacy mode) to enable __proto__, see: http://github.com/ringo/ringojs/blob/master/src/org/ringojs/tools/RingoRunner.java#L68

[23:25] <rhyolight> YES Thank you!

[23:26] <robi42_> you're welcome. simply pass that to `ringo` runner shell script

[23:27] <rhyolight> exactly what I needed.

[23:27] <robi42_> np