Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-07 Thread Carlos Manuel Lopez
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-07 Thread Carlos Manuel Lopez
The proposal to merge lp:~zorba-coders/zorba/bug_867198 into 
lp:zorba/data-converters-module has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-07 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug_867198-2011-12-07T16-45-50.256Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-07 Thread Zorba Build Bot
Validation queue job bug_867198-2011-12-07T16-45-50.256Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-07 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug_867198 into 
lp:zorba/data-converters-module has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


[Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-06 Thread Sorin Marian Nasoi
Sorin Marian Nasoi has proposed merging lp:~zorba-coders/zorba/bug_867198 into 
lp:zorba/data-converters-module.

Requested reviews:
  Sorin Marian Nasoi (sorin.marian.nasoi)
  Carlos Manuel Lopez (charlie-lobo)
Related bugs:
  Bug #867198 in Zorba: JSON converter module not proccesing strings with ''
  https://bugs.launchpad.net/zorba/+bug/867198

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617

Fixed bug #867198. Also added 2 tests.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.
=== modified file 'src/com/zorba-xquery/www/modules/converters/json.xq.src/jansson_wrapper.cpp'
--- src/com/zorba-xquery/www/modules/converters/json.xq.src/jansson_wrapper.cpp	2011-10-06 07:40:17 +
+++ src/com/zorba-xquery/www/modules/converters/json.xq.src/jansson_wrapper.cpp	2011-12-06 14:25:25 +
@@ -68,14 +68,16 @@
 void replace_special_chars(
  std::string aValue)
 {
-  replace_all(aValue, \, \\\);  //quotation mark
-  replace_all(aValue, \\, );  //reverse solidus
-  replace_all(aValue, /, \\/);//solidus
-  replace_all(aValue, \b, \\b );  //backspace
-  replace_all(aValue, \f, \\f );  //formfeed
-  replace_all(aValue, \n, \\n );  //new line
-  replace_all(aValue, \r, \\r );  //carriage return
-  replace_all(aValue, \t, \\t );  //horizontal tab
+  replace_all(aValue, \, \\\  );  //quotation mark
+  replace_all(aValue, \\,   );  //reverse solidus
+  replace_all(aValue, / , \\/   );  //solidus
+  replace_all(aValue, \b, \\b   );  //backspace
+  replace_all(aValue, \f, \\f   );  //formfeed
+  replace_all(aValue, \n, \\n   );  //new line
+  replace_all(aValue, \r, \\r   );  //carriage return
+  replace_all(aValue, \t, \\t   );  //horizontal tab
+  replace_all(aValue,  , lt;  );  // 
+  replace_all(aValue,  , gt;  );  // 
 }
 
 static void parse_Json_value(
@@ -557,7 +559,7 @@
 }
 default:
 {
-  zorba::String lType, lValue;
+  std::string lType, lValue;
   if(json_is_string(aValue))
   {
 lType  = string;
@@ -591,6 +593,7 @@
   else if(lParent.compare(object) == 0)
   {
 aSs lName  =;
+replace_special_chars(lValue);
 if(lType.compare(string) == 0)
   aSs  \  lValue  \;
 else

=== added file 'test_json/ExpQueryResults/converters/jansson/parse_json_12.xml.res'
--- test_json/ExpQueryResults/converters/jansson/parse_json_12.xml.res	1970-01-01 00:00:00 +
+++ test_json/ExpQueryResults/converters/jansson/parse_json_12.xml.res	2011-12-06 14:25:25 +
@@ -0,0 +1,1 @@
+{html: lt;bgt;boldlt;\/bgt;}

=== added file 'test_json/ExpQueryResults/converters/jansson/parse_json_ml_06.xml.res'
--- test_json/ExpQueryResults/converters/jansson/parse_json_ml_06.xml.res	1970-01-01 00:00:00 +
+++ test_json/ExpQueryResults/converters/jansson/parse_json_ml_06.xml.res	2011-12-06 14:25:25 +
@@ -0,0 +1,1 @@
+htmlbbold/b/html

=== added file 'test_json/Queries/converters/jansson/parse_json_12.xq'
--- test_json/Queries/converters/jansson/parse_json_12.xq	1970-01-01 00:00:00 +
+++ test_json/Queries/converters/jansson/parse_json_12.xq	2011-12-06 14:25:25 +
@@ -0,0 +1,4 @@
+import module namespace json=http://www.zorba-xquery.com/modules/converters/json;;
+declare variable $json-value := '{html:bbold/b}';
+
+json:serialize(json:parse($json-value))

=== added file 'test_json/Queries/converters/jansson/parse_json_ml_06.xq'
--- test_json/Queries/converters/jansson/parse_json_ml_06.xq	1970-01-01 00:00:00 +
+++ test_json/Queries/converters/jansson/parse_json_ml_06.xq	2011-12-06 14:25:25 +
@@ -0,0 +1,7 @@
+import module namespace json = http://www.zorba-xquery.com/modules/converters/json;;
+import schema namespace html-options=http://www.zorba-xquery.com/modules/converters/json-options;;
+
+json:parse('[html ,bbold/b]',options xmlns=http://www.zorba-xquery.com/modules/converters/json-options; 
+ xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
+  json-param name=mapping value=json-ml type=array/
+/options)

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug_867198 into lp:zorba/data-converters-module

2011-12-06 Thread Sorin Marian Nasoi
Review: Approve

Approved.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug_867198/+merge/84617
Your team Zorba Coders is subscribed to branch lp:zorba/data-converters-module.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp