Ringobot log - RingoJS IRC channel: #ringojs on irc.freenode.net

2010-08-14:

[11:25] <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
[13:02] <gtoast> robi42: heh. I ended up doing it the (not so) hard way by turning http://xmljs.sourceforge.net/index.html into a module
[15:51] <robi42_> gtoast: nice, did you put that xmljs wrapping module up on github/bitbucket already?
[15:52] <gtoast> robi42_: not yet. I have to admit. I'm a little intimidated by git and github.
[15:53] <gtoast> robi42_: I'll figure it out tho
[15:53] <robi42_> keep us updated on that, please; sounds interesting
[15:54] <robi42_> btw, if you run into any troubles concerning git most probably earl can help you out :)
[15:56] * earl ducks
[15:56] <robi42_> hehe
[16:07] <gtoast> robi42_: will do.
[17:58] <rhyolight> people! :)
[17:58] <rhyolight> anyone body around want to help out a ringo newb?
[18:12] <rhyolight> how does the config.js in my application match up with the RingoConfiguration class?
[18:13] <rhyolight> I need to set this to true: http://www.mozilla.org/rhino/apidocs/org/mozilla/javascript/Context.html#FEATURE_PARENT_PROTO_PROPERTIES
[18:13] <rhyolight> And I can see the right Java method: http://github.com/ringo/ringojs/blob/master/src/org/ringojs/tools/RingoConfiguration.java#L362
[18:13] <rhyolight> But I can't figure out how I can set that value from the JavaScript in my application.
[20:30] <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
[20:31] <rhyolight> YES Thank you!
[20:32] <robi42_> you're welcome. simply pass that to `ringo` runner shell script
[20:32] <rhyolight> exactly what I needed.
[20:32] <robi42_> np