/
fluid-tech IRC Logs-2012-10-09

fluid-tech IRC Logs-2012-10-09

[15:08:41 CDT(-0500)] <yura> Bosmon: ayt?

[15:09:04 CDT(-0500)] <Bosmon> JURA!

[15:09:26 CDT(-0500)] <yura> Bosmon: when i want to transform preferences

[15:09:47 CDT(-0500)] <yura> I should be using fluid.model.transformWithRules right ?

[15:10:23 CDT(-0500)] <Bosmon> That's correct

[15:12:32 CDT(-0500)] <yura> Bosmon: reason im asking is

[15:12:40 CDT(-0500)] <yura> i have first argument that looks like this:

[15:12:57 CDT(-0500)] <yura> { . http://gpii.org/registry/display/screenEnhancement/magnification: 2

[15:12:57 CDT(-0500)] <yura> . http://gpii.org/registry/display/screenEnhancement/tracking: mouse

[15:12:57 CDT(-0500)] <yura> }

[15:13:05 CDT(-0500)] <yura> and the second one that looks like this

[15:13:19 CDT(-0500)] <yura> {}

[15:13:23 CDT(-0500)] <yura> sorry { . display.screenEnhancement.backgroundColor: http://gpii.org/registry/display/screenEnhancement/backgroundColor

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.fontFaceFontName: http://gpii.org/registry/display/screenEnhancement/fontFaceFontName

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.fontFaceGenericFontFace: http://gpii.org/registry/display/screenEnhancement/fontFaceGenericFontFace

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.fontSize: http://gpii.org/registry/display/screenEnhancement/fontSize

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.foregroundColor: http://gpii.org/registry/display/screenEnhancement/foregroundColor

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.invertImages: http://gpii.org/registry/display/screenEnhancement/invertImages

[15:13:23 CDT(-0500)] <yura> . display.screenEnhancement.magnification: http://gpii.org/registry/display/screenEnhancement/magnification

[15:13:24 CDT(-0500)] <yura> . display.screenEnhancement.tracking: http://gpii.org/registry/display/screenEnhancement/tracking

[15:13:24 CDT(-0500)] <yura> }

[15:13:37 CDT(-0500)] <yura> i get an empty object as a result

[15:16:22 CDT(-0500)] <yura> Bosmon: would you know what might be the issue ?

[15:16:29 CDT(-0500)] <Bosmon> You probably need to do the work to enable proper escaping of EL path segments which contain "."

[15:16:39 CDT(-0500)] <Bosmon> Look inside the matchmaker for an example

[15:16:48 CDT(-0500)] <Bosmon> Why on earth do those paths begin with ".", especially the URLs?

[15:17:15 CDT(-0500)] <yura> that . in the beginning of each line is not there, ignore it

[15:18:09 CDT(-0500)] <yura> {

[15:18:09 CDT(-0500)] <yura> "http://gpii.org/registry/display/screenEnhancement/magnification": 2.0,

[15:18:09 CDT(-0500)] <yura> "http://gpii.org/registry/display/screenEnhancement/tracking": "mouse"

[15:18:09 CDT(-0500)] <yura> }

[15:18:29 CDT(-0500)] <yura> and this is to be exact

[15:18:41 CDT(-0500)] <yura> {

[15:18:41 CDT(-0500)] <yura> "display.screenEnhancement.magnification": "http://gpii.org/registry/display/screenEnhancement/magnification",

[15:18:41 CDT(-0500)] <yura> "display.screenEnhancement.tracking": "http://gpii.org/registry/display/screenEnhancement/tracking"

[15:18:41 CDT(-0500)] <yura> }

[15:20:15 CDT(-0500)] <yura> Bosmon: ^

[15:21:31 CDT(-0500)] <Bosmon> yura - escaping issues?

[15:22:44 CDT(-0500)] <yura> for / or : ?

[15:22:48 CDT(-0500)] <Bosmon> for .

[15:22:51 CDT(-0500)] <yura> ohhh

[15:22:53 CDT(-0500)] <yura> duh

[15:22:57 CDT(-0500)] <yura> let me try

[15:23:07 CDT(-0500)] <yura> for some reason i assumed there were no .

[15:23:15 CDT(-0500)] <Bosmon> (smile)

[15:25:12 CDT(-0500)] <yura> thanks!