Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug-878508 into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-878508 into lp:zorba

2012-07-26 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-878508 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-878508 into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-878508-2012-07-26T07-37-01.736Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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] [Bug 1029292] [NEW] Consolidate JSON serialization code

2012-07-26 Thread Chris Hillery
Public bug reported:

Paul has recently consolidated some of the JSON module serialization
code, in particular adding a single function for escaping JSON strings
(zorba::json::serialize(ostream&, char const*)).

We should ensure we are using this code in all places that it makes
sense, most specifically in the JSONiq serialization code
(src/api/serialization/serializer.cpp, class json_emitter).

If there are other avenues for code sharing (eg., for JSON objects and
arrays), they should be taken as well.

** Affects: zorba
 Importance: Medium
 Assignee: Paul J. Lucas (paul-lucas)
 Status: New

** Changed in: zorba
   Importance: Undecided => Medium

** Changed in: zorba
 Assignee: (unassigned) => Paul J. Lucas (paul-lucas)

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029292

Title:
  Consolidate JSON serialization code

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Paul has recently consolidated some of the JSON module serialization
  code, in particular adding a single function for escaping JSON strings
  (zorba::json::serialize(ostream&, char const*)).

  We should ensure we are using this code in all places that it makes
  sense, most specifically in the JSONiq serialization code
  (src/api/serialization/serializer.cpp, class json_emitter).

  If there are other avenues for code sharing (eg., for JSON objects and
  arrays), they should be taken as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029292/+subscriptions

-- 
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-878508 into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job bug-878508-2012-07-26T07-37-01.736Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-878508 into lp:zorba

2012-07-26 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-878508 into lp:zorba has been 
updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-878508/+merge/116781
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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] [Bug 1029483] [NEW] stack overflow in file module

2012-07-26 Thread Alexander Kreutz
Public bug reported:

At least on some platforms the file:list($dir) function also returns the
"." entry (current directory).

Other functions in the file module like file:copy and file:delete call 
file:list to retrieve directory contents but do not handle the 
current directory entry "." or parent directory entry "..". This results in an 
endless recursion terminating with a stack overflow.

Either all functions in the file module must handle "." and ".."
correctly or file:list simply should not return it.

This happens on the demo appserver but not on my local computer so maybe it 
happens only with a certain library version -
but "." and ".." entries can be filtered out using XQuery.

** Affects: zorba
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029483

Title:
  stack overflow in file module

Status in Zorba - The XQuery Processor:
  New

Bug description:
  At least on some platforms the file:list($dir) function also returns
  the "." entry (current directory).

  Other functions in the file module like file:copy and file:delete call 
file:list to retrieve directory contents but do not handle the 
  current directory entry "." or parent directory entry "..". This results in 
an endless recursion terminating with a stack overflow.

  Either all functions in the file module must handle "." and ".."
  correctly or file:list simply should not return it.

  This happens on the demo appserver but not on my local computer so maybe it 
happens only with a certain library version -
  but "." and ".." entries can be filtered out using XQuery.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029483/+subscriptions

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/pjl-misc into lp:zorba.

Requested reviews:
  Paul J. Lucas (paul-lucas)

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894

1. Tweaked equals().
2. Added "const" to std_string function arguments.
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/util/string/rep_base.h'
--- src/util/string/rep_base.h	2012-07-24 08:48:48 +
+++ src/util/string/rep_base.h	2012-07-26 15:41:42 +
@@ -197,8 +197,10 @@
   }
 
   /**
-   * Checks whether this representation is shared.
+   * Checks if the given shared-count indicates whether some string's
+   * representation is shared.
*
+   * @param count The shared-count to check.
* @return Returns \c true only if it is.
*/
   static bool is_shared( count_type count ) {
@@ -206,7 +208,7 @@
   }
 
   /**
-   * Checks whether this representation is unsharable.
+   * Checks whether this representation is sharable.
*
* @return Returns \c true only if it is.
*/
@@ -215,8 +217,10 @@
   }
 
   /**
-   * Checks whether this representation is unsharable.
+   * Checks if the given shared-count indicates whether some string's
+   * representation is sharable.
*
+   * @param count The shared-count to check.
* @return Returns \c true only if it is.
*/
   static bool is_sharable( count_type count ) {

=== modified file 'src/util/string/rstring.h'
--- src/util/string/rstring.h	2012-07-24 08:48:48 +
+++ src/util/string/rstring.h	2012-07-26 15:41:42 +
@@ -2943,7 +2943,7 @@
  * @return Returns \c true only if \a s1 \c == \a s2.
  */
 inline bool equals( char const *s1, size_t s1_n, char const *s2, size_t s2_n ) {
-  return s1_n == s2_n && std::memcmp( s1, s2, s1_n ) == 0;
+  return s1_n == s2_n && (s1 == s2 || std::memcmp( s1, s2, s1_n ) == 0);
 }
 
 template inline bool
@@ -2957,12 +2957,14 @@
 }
 
 template inline bool
-operator==( rstring const &s1, typename rstring::std_string s2 ) {
+operator==( rstring const &s1,
+typename rstring::std_string const &s2 ) {
   return equals( s1.data(), s1.size(), s2.data(), s2.size() );
 }
 
 template inline bool
-operator==( typename rstring::std_string s1, rstring const &s2 ) {
+operator==( typename rstring::std_string const &s1,
+rstring const &s2 ) {
   return equals( s1.data(), s1.size(), s2.data(), s2.size() );
 }
 
@@ -2989,12 +2991,14 @@
 }
 
 template inline bool
-operator!=( rstring const &s1, typename rstring::std_string s2 ) {
+operator!=( rstring const &s1,
+typename rstring::std_string const &s2 ) {
   return !(s1 == s2);
 }
 
 template inline bool
-operator!=( typename rstring::std_string s1, rstring const &s2 ) {
+operator!=( typename rstring::std_string const &s1,
+rstring const &s2 ) {
   return !(s1 == s2);
 }
 
@@ -3019,12 +3023,14 @@
 }
 
 template inline bool
-operator<( rstring const &s1, typename rstring::std_string s2 ) {
+operator<( rstring const &s1,
+   typename rstring::std_string const &s2 ) {
   return s1.compare( s2 ) < 0;
 }
 
 template inline bool
-operator<( typename rstring::std_string s1, rstring const &s2 ) {
+operator<( typename rstring::std_string const &s1,
+   rstring const &s2 ) {
   return s2.compare( s1 ) > 0;
 }
 
@@ -3049,12 +3055,14 @@
 }
 
 template inline bool
-operator<=( rstring const &s1, typename rstring::std_string s2 ) {
+operator<=( rstring const &s1,
+typename rstring::std_string const &s2 ) {
   return s1.compare( s2 ) <= 0;
 }
 
 template inline bool
-operator<=( typename rstring::std_string s1, rstring const &s2 ) {
+operator<=( typename rstring::std_string const &s1,
+rstring const &s2 ) {
   return s2.compare( s1 ) >= 0;
 }
 
@@ -3079,12 +3087,14 @@
 }
 
 template inline bool
-operator>( rstring const &s1, typename rstring::std_string s2 ) {
+operator>( rstring const &s1,
+   typename rstring::std_string const &s2 ) {
   return s1.compare( s2 ) > 0;
 }
 
 template inline bool
-operator>( typename rstring::std_string s1, rstring const &s2 ) {
+operator>( typename rstring::std_string const &s1,
+   rstring const &s2 ) {
   return s2.compare( s1 ) < 0;
 }
 
@@ -3109,12 +3119,14 @@
 }
 
 template inline bool
-operator>=( rstring const &s1, typename rstring::std_string s2 ) {
+operator>=( rstring const &s1,
+typename rstring::std_string const &s2 ) {
   return s1.compare( s2 ) >= 0;
 }
 
 template inline bool
-operator>=( typename rstring::std_string s1, rstring const &s2 ) {
+operator>=( typename rstring::std_string const &s1,
+rstring const &s2 ) {
   return s2.compare( s1 ) <= 0;
 }
 

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
Review: Approve


-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/pjl-misc-2012-07-26T15-47-06.784Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job pjl-misc-2012-07-26T15-47-06.784Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, 
Needs Fixing < 1, Pending < 1. Got: 1 Approve.
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Commit Message changed to:

1. Tweaked equals().
2. Added "const&" to std_string function arguments.

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Description changed to:

1. Tweaked equals().
2. Added "const&" to std_string function arguments.

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Matthias Brantner
Review: Needs Information

Shouldn't the following be rewritten for performance:

return s1_n == s2_n && (s1 == s2 || std::memcmp( s1, s2, s1_n ) == 0);

=>

return s1_n == s2_n && (std::memcmp( s1, s2, s1_n ) == 0 ||s1 == s2);
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
No because || is evaluated left-to-right.  If s1 == s2, then there's no point 
in doing an expensive memcmp().
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/activate-zorba-with-json into lp:zorba

2012-07-26 Thread Ghislain Fourny
The proposal to merge lp:~zorba-coders/zorba/activate-zorba-with-json into 
lp:zorba has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
-- 
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/activate-zorba-with-json into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/activate-zorba-with-json-2012-07-26T16-39-07.76Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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] [Bug 1029483] Re: stack overflow in file module

2012-07-26 Thread Dennis Knochenwefel
*** This bug is a duplicate of bug 1023862 ***
https://bugs.launchpad.net/bugs/1023862

** This bug has been marked a duplicate of bug 1023862
   file:list($path, true()) can produce infinite loops on some filesystems

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029483

Title:
  stack overflow in file module

Status in Zorba - The XQuery Processor:
  New

Bug description:
  At least on some platforms the file:list($dir) function also returns
  the "." entry (current directory).

  Other functions in the file module like file:copy and file:delete call 
file:list to retrieve directory contents but do not handle the 
  current directory entry "." or parent directory entry "..". This results in 
an endless recursion terminating with a stack overflow.

  Either all functions in the file module must handle "." and ".."
  correctly or file:list simply should not return it.

  This happens on the demo appserver but not on my local computer so maybe it 
happens only with a certain library version -
  but "." and ".." entries can be filtered out using XQuery.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029483/+subscriptions

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Matthias Brantner
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/activate-zorba-with-json into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job activate-zorba-with-json-2012-07-26T16-39-07.76Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/activate-zorba-with-json into lp:zorba

2012-07-26 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, 
Needs Fixing < 1, Pending < 1. Got: 2 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/activate-zorba-with-json into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/activate-zorba-with-json into 
lp:zorba has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
-- 
https://code.launchpad.net/~zorba-coders/zorba/activate-zorba-with-json/+merge/116424
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/pjl-misc-2012-07-26T17-07-02.673Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job pjl-misc-2012-07-26T17-07-02.673Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread noreply
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116894
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/pjl-misc into lp:zorba.

Requested reviews:
  Paul J. Lucas (paul-lucas)

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933

s/npos/0/

This probably fixes some as-of-yet-undiscovered bug.
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.
-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/pjl-misc-2012-07-26T18-02-56.976Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job pjl-misc-2012-07-26T18-02-56.976Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, 
Needs Fixing < 1, Pending < 1. Got: 1 Pending.
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Commit Message changed to:

s/0/npos/

This probably fixes some as-of-yet-undiscovered bug.

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Description changed to:

s/0/npos/

This probably fixes some as-of-yet-undiscovered bug.

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/pjl-misc-2012-07-26T18-59-00.462Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The attempt to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba failed. Below 
is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job pjl-misc-2012-07-26T18-59-00.462Z is finished.  The
  final status was:

  

  1 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-1027142-process-leak into lp:zorba/process-module

2012-07-26 Thread Luis Rodriguez Gonzalez
Review: Approve

All seems to be alright.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
Your team Zorba Coders is subscribed to branch lp:zorba/process-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] [Bug 878508] Re: JsonML serialization not escaping characters

2012-07-26 Thread Paul J. Lucas
** Changed in: zorba
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/878508

Title:
  JsonML serialization not escaping characters

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  The module doesn't convert escaped characters as you would expect. You 
instead get a string containing the string with it's unescaped value. A 
conversion needs to be implemented, something such as:
  JSON <-> XML
  \"<-> "
  \\<-> \
  \/<-> /
  \b<-> 
  \f<-> 
  \n<-> *actual newline*
  \r<-> *actual carriage return*
  \t<-> '   '
  \u<-> &#x; or #$; with the correct hex-decimal conversion
  < <-> <
  > <-> >
  & <-> &
  ' <-> '

  This proposition might create a regresion related to bug #866757.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/878508/+subscriptions

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Paul J. Lucas
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/pjl-misc-2012-07-26T21-41-59.384Z/log.html
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-1027142-process-leak into lp:zorba/process-module

2012-07-26 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-1027142-process-leak into 
lp:zorba/process-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
Your team Zorba Coders is subscribed to branch lp:zorba/process-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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Rodolfo Ochoa
UPDATE:
from stackoverflow
>>I solve this problem.I change PHP-VC6 to PHP-VC9 to match compile potion 
>>betwwen zorba. Alse I had to change apache to activate PHP-VC9 from Apache 
>>Lounge site.And setup Runtime for VC++ 2008,2010.Finally,zolba worked. – 
>>user1345414 Jun 19 at 3:52

Still, I will update our documentation about this.

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1026192

Title:
  Ensure Windows PHP/Apache/Zorba story works

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  As discussed here:

  http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
  apis-module

  If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
  on Windows, then we should provide such an installer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The attempt to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba failed. Below 
is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job pjl-misc-2012-07-26T21-41-59.384Z is finished.  The
  final status was:

  

  1 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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:~paul-lucas/zorba/pjl-misc into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
-- 
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/116933
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-1027142-process-leak into lp:zorba/process-module

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-1027142-process-leak-2012-07-26T22-07-34.432Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
Your team Zorba Coders is subscribed to branch lp:zorba/process-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-1027142-process-leak into lp:zorba/process-module

2012-07-26 Thread Zorba Build Bot
Validation queue job bug-1027142-process-leak-2012-07-26T22-07-34.432Z is 
finished. The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
Your team Zorba Coders is subscribed to branch lp:zorba/process-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-1027142-process-leak into lp:zorba/process-module

2012-07-26 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-1027142-process-leak into 
lp:zorba/process-module has been updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-1027142-process-leak/+merge/116102
Your team Zorba Coders is subscribed to branch lp:zorba/process-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] [Bug 899364] Re: windowing: distinct variable declaration (expected XQST0103 but got result)

2012-07-26 Thread Chris Hillery
** Changed in: zorba
 Assignee: Matthias Brantner (matthias-brantner) => Markos Zaharioudakis 
(markos-za)

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/899364

Title:
  windowing: distinct variable declaration (expected XQST0103 but got
  result)

Status in Zorba - The XQuery Processor:
  New

Bug description:
  The following tests fail because they expect XQST0103 to be raised but
  give a result.

  1940 - test/rbkt/zorba/windowing/tumbling14 (Failed)
  1949 - test/rbkt/zorba/windowing/tumbling16 (Failed)
  1951 - test/rbkt/zorba/windowing/tumbling15 (Failed)
  1994 - test/rbkt/zorba/windowing/tumbling17 (Failed)
  1958 - test/rbkt/zorba/windowing/tumbling18 (Failed)
  1959 - test/rbkt/zorba/windowing/tumbling19 (Failed)
  1971 - test/rbkt/zorba/windowing/tumbling20 (Failed)
  2006 - test/rbkt/zorba/windowing/tumbling21 (Failed)

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/899364/+subscriptions

-- 
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] [Bug 866969] Re: FileAPI does not like seekable streamable strings

2012-07-26 Thread Dana Florescu
** Changed in: zorba
Milestone: 2.7 => 3.0

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/866969

Title:
  FileAPI does not like seekable streamable strings

Status in Zorba - The XQuery Processor:
  New

Bug description:
  I have disabled make_xqdoc test since it fails:

  2098: 
:116,9: Zorba 
error [zerr:XQP0012]: FxCharHeap I/O error; thrown at 
zorba\src\util\file.cpp:543 =
  2098: xqdoc2html:clear-folder#2 ( 
http://www.zorba-xquery.com/modules/xqdoc2xhtml/ )
  2098: zorba/modules/com/zorba-xquery/www/modules/xqdoc2xhtml/index.xq at line 
240 column 7
  2098: =
  2098: xqdoc2html:copy-xhtml-requisites#3 ( 
http://www.zorba-xquery.com/modules/xqdoc2xhtml/ )
  2098: zorba\doc\zorba\xqdoc\src\xqdoc-main.xq at line 9 column 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/866969/+subscriptions

-- 
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] [Bug 1029694] [NEW] Need Mac Framework

2012-07-26 Thread Chris Hillery
Public bug reported:

We need a (hopefully simple, short) process to create a MacOS Framework
for Zorba + all non-core modules, that we can put up on the website for
each release.

** Affects: zorba
 Importance: Critical
 Assignee: Paul J. Lucas (paul-lucas)
 Status: Confirmed

** Changed in: zorba
   Importance: Undecided => Critical

** Changed in: zorba
 Assignee: (unassigned) => Paul J. Lucas (paul-lucas)

** Changed in: zorba
Milestone: None => 2.7

** Changed in: zorba
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029694

Title:
  Need Mac Framework

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  We need a (hopefully simple, short) process to create a MacOS
  Framework for Zorba + all non-core modules, that we can put up on the
  website for each release.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029694/+subscriptions

-- 
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] [Bug 1029694] Re: Need Mac Framework

2012-07-26 Thread Chris Hillery
** Changed in: zorba
Milestone: 2.7 => 2.6

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029694

Title:
  Need Mac Framework

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  We need a (hopefully simple, short) process to create a MacOS
  Framework for Zorba + all non-core modules, that we can put up on the
  website for each release.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029694/+subscriptions

-- 
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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Chris Hillery
** Changed in: zorba
Milestone: 2.7 => 2.6

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1026192

Title:
  Ensure Windows PHP/Apache/Zorba story works

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  As discussed here:

  http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
  apis-module

  If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
  on Windows, then we should provide such an installer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions

-- 
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] [Bug 1014983] Re: Zorba website must publish API docs

2012-07-26 Thread Chris Hillery
** Changed in: zorba
Milestone: 2.7 => 2.6

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1014983

Title:
  Zorba website must publish API docs

Status in Zorba - The XQuery Processor:
  New

Bug description:
  Currently the Zorba documentation on http://www.zorba-xquery.com/
  mentions that C++, C, Java, XQJ, PHP, Python, and Ruby APIs exist. As
  of Zorba 2.5 we provide full API documentation for these (possibly not
  C), so we need to make it easy for website visitors to find and use
  this documentation.

  Rodolfo was primarily involved in creating the language-binding
  documentation.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1014983/+subscriptions

-- 
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] [Bug 1029701] [NEW] Enable JSONiq by default (complete JSONiq)

2012-07-26 Thread Chris Hillery
Public bug reported:

Default for ZORBA_WITH_JSON should be ON (and all tests should pass
validation queue when built as such).

** Affects: zorba
 Importance: Critical
 Assignee: Ghislain Fourny (gislenius)
 Status: Confirmed

** Changed in: zorba
   Importance: Undecided => Critical

** Changed in: zorba
Milestone: None => 2.6

** Changed in: zorba
 Assignee: (unassigned) => Ghislain Fourny (gislenius)

** Changed in: zorba
   Status: New => Confirmed

** Branch linked: lp:~zorba-coders/zorba/activate-zorba-with-json

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1029701

Title:
  Enable JSONiq by default (complete JSONiq)

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  Default for ZORBA_WITH_JSON should be ON (and all tests should pass
  validation queue when built as such).

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1029701/+subscriptions

-- 
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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Chris Hillery
We really need to verify this by actually doing it using our binary
installer, and documenting the process. In particular it wasn't clear to
me whether the stackoverflow responder had compiled Zorba himself or was
using our binary release.

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1026192

Title:
  Ensure Windows PHP/Apache/Zorba story works

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  As discussed here:

  http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
  apis-module

  If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
  on Windows, then we should provide such an installer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions

-- 
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] [Bug 1027142] Re: process:exec memory leak

2012-07-26 Thread Chris Hillery
** Changed in: zorba
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1027142

Title:
  process:exec memory leak

Status in Zorba - The XQuery Processor:
  Fix Committed

Bug description:
  Running the following query with valgrind will show some memory leak

  import module namespace process="http://www.zorba-xquery.com/modules/process";;
  process:exec("ls")

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1027142/+subscriptions

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/add-archive-module/+merge/116086
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/add-archive-module into lp:zorba 
has been updated.

Status: Needs review => Approved

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

-- 
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-898066 into lp:zorba

2012-07-26 Thread Matthias Brantner
Matthias Brantner has proposed merging lp:~zorba-coders/zorba/bug-898066 into 
lp:zorba.

Requested reviews:
  Matthias Brantner (matthias-brantner)
  Chris Hillery (ceejatec)
Related bugs:
  Bug #898066 in Zorba: "Stringstream & fn:trace"
  https://bugs.launchpad.net/zorba/+bug/898066

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988

- implicitly materialize input to fn:trace
- start sequence numbering in fn:trace with 1
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp'
--- src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp	2012-07-24 08:48:48 +
+++ src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp	2012-07-27 01:02:22 +
@@ -94,6 +94,8 @@
   TraceIteratorState *state;
   DEFAULT_STACK_INIT(TraceIteratorState, state, planState);
 
+  state->theIndex = 1; // XQuery sequences start with 1
+
   if (!consumeNext(state->theTagItem, theChildren[1], planState)) 
   {
 throw XQUERY_EXCEPTION(err::FORG0006,
@@ -119,6 +121,18 @@
 
 {
   store::Item_t lTmp = result;
+
+  // implicitly materialize non-seekable streamable strings to 
+  // avoid nasty "streamable string has already been consumed"
+  // errors during debugging
+  if (lTmp->isStreamable() && !lTmp->isSeekable() &&
+  lTmp->getTypeCode() == store::XS_STRING)
+  {
+zstring lString = lTmp->getString();
+GENV_ITEMFACTORY->createString(lTmp, lString);
+result = lTmp;
+  }
+
   store::TempSeq_t lSequence = GENV_STORE.createTempSeq(lTmp);
   store::Iterator_t seq_iter = lSequence->getIterator();
   seq_iter->open();

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/add-archive-module-2012-07-27T01-02-05.877Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/add-archive-module/+merge/116086
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Matthias Brantner
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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] [Bug 898066] Re: Stringstream & fn:trace

2012-07-26 Thread Matthias Brantner
** Changed in: zorba
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/898066

Title:
  Stringstream & fn:trace

Status in Zorba - The XQuery Processor:
  In Progress

Bug description:
  The following query:
  let $string := http:get("blub")
  return trace($string, "res")

  Returns the following error:
  [zerr:ZSTR0055]: streamable string has already been consumed

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/898066/+subscriptions

-- 
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] [Bug 898066] Re: Stringstream & fn:trace

2012-07-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~zorba-coders/zorba/bug-898066

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/898066

Title:
  Stringstream & fn:trace

Status in Zorba - The XQuery Processor:
  In Progress

Bug description:
  The following query:
  let $string := http:get("blub")
  return trace($string, "res")

  Returns the following error:
  [zerr:ZSTR0055]: streamable string has already been consumed

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/898066/+subscriptions

-- 
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-898066 into lp:zorba

2012-07-26 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/add-archive-module into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job add-archive-module-2012-07-27T01-02-05.877Z is
  finished.  The final status was:

  

  No tests were run - build or configure step must have failed.

  Not commiting changes.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/add-archive-module/+merge/116086
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/add-archive-module into lp:zorba 
has been updated.

Status: Approved => Needs review

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

-- 
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-898066 into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Needs Fixing

Need Changelog entry.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-898066-2012-07-27T01-09-02.333Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba failed. 
Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 
(message):
  Validation queue job bug-898066-2012-07-27T01-09-02.333Z is finished.  The
  final status was:

  

  1 tests did not succeed - changes not commited.


Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Matthias Brantner
> Need Changelog entry.
fixed
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
There are additional revisions which have not been approved in review. Please 
seek review and approval of these new revisions.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Matthias Brantner
The proposal to merge lp:~zorba-coders/zorba/security-module-v2 into 
lp:zorba/security-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/security-module-v2-2012-07-27T03-36-52.673Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Zorba Build Bot
Validation queue job security-module-v2-2012-07-27T03-36-52.673Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, 
Needs Fixing < 1, Pending < 1. Got: 1 Approve, 1 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/security-module-v2 into 
lp:zorba/security-module has been updated.

Status: Approved => Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/bug1026192 into lp:zorba

2012-07-26 Thread Rodolfo Ochoa
Rodolfo Ochoa has proposed merging lp:~zorba-coders/zorba/bug1026192 into 
lp:zorba.

Requested reviews:
  Chris Hillery (ceejatec)
Related bugs:
  Bug #1026192 in Zorba: "Ensure Windows PHP/Apache/Zorba story works"
  https://bugs.launchpad.net/zorba/+bug/1026192

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

Documentation fixed for Zorba binary package with PHP.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1026192/+merge/116998
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'doc/zorba/php_windows.dox'
--- doc/zorba/php_windows.dox	2012-07-24 08:48:48 +
+++ doc/zorba/php_windows.dox	2012-07-27 04:25:22 +
@@ -4,13 +4,14 @@
 
 \section apache_httpd_install Install Apache HTTP Server
 
-Download and install Apache Server from http://httpd.apache.org/download.cgi";>http://httpd.apache.org/download.cgi for VC6. For apache compiled with VC9 download it from http://apachelounge.com/";>http://apachelounge.com/.
+Download and install Apache Server from http://httpd.apache.org/download.cgi";>http://httpd.apache.org/download.cgi. 
+You can also get Apache compiled and optimized with Visual Studio VC9 and other modules (like PHP5 module) from http://apachelounge.com/";>Apache Lounge.
 
 \section php5_install Install PHP5
 
 Download and install PHP5 from http://windows.php.net/download/";>http://windows.php.net/download/. Remember to download and install according your VC version.
 
-PHP will automatically install itself in to your apache server.
+PHP will automatically install itself in to your apache server. If you got Apache from Apache Lounge you may need their PHP module version.
 
 You can verify your install by adding a file in your htdocs directory with the following code:
 
@@ -23,18 +24,21 @@
 
 \section zorba_install Install Zorba
 
-Get Zorba sources and follow \ref build.
+You can install the latest version of Zorba by downloading the most recent binaries,  additionaly you can also compile Zorba from source by following \ref build.
 
 \section compile_zorba_php Compiling the Zorba PHP Extension
 
-In order to compile the PHP Wrapper you need first to follow the steps to compile Zorba, but before compiling, you need to add three variables to the CMAKE command line:
+If you are compiling Zorba, you will need also to compile the PHP Wrapper,  to do this you besides the \ref build you need to add these three variables to your CMAKE command line:
 
 \code
--D PHP5_BINARY_DIR=...   Specify the directory where php.exe is located, i.e. "C:\php"
-
--D PHP5_INCLUDE_DIR=...  Specify the directory where the php source is located, i.e. "C:\php-5.3.5"
-
--D PHP5_LIBRARY=... Specify with normal slash the path where the php5ts.lib is located, this file is usually located in dev directory from the binary php installation, i.e. "C:/php/dev/php5ts.lib"
+-D PHP5_BINARY_DIR=[PHP INSTALL]
+[PHP INSTALL] is the directory where php.exe is located, i.e. "C:\php"
+
+-D PHP5_INCLUDE_DIR=[PHP INCLUDE DIR]
+[PHP INCLUDE DIR] is the directory where the php source is located, i.e. "C:\php-5.3.5"
+
+-D PHP5_LIBRARY=[PHP LIBRARY]
+[PHP LIBRARY] is the path where the php5ts.lib is located, this file is usually located in dev directory from the binary php installation, i.e. "C:/php/dev/php5ts.lib"
 \endcode
 
 After adding those lines CMAKE will add automatically the PHP Wrapper project and you will be able to get zorba_api.dll, which is the extension you can use in your php binary installation.
@@ -51,7 +55,11 @@
 
 \section php_enable_zorba_extension Enable Zorba extension in PHP
 
-Copy Zorba extension zorba_api.dll file into your php extensions directory, i.e.
+Copy Zorba extension zorba_api.dll file into your php extensions directory, this extension is located on:
+Zorba compiled from sources: [ZORBA BUILD DIRECTORY]\swig\php\[DEBUG/RELEASE IF VISUAL STUDIO]
+Zorba installed binaries: [ZORBA INSTALL DIRECTORY]\share\php\
+
+this file must be copied to your extensions directory that may be:
 \code
 C:\php\ext\
 \endcode
@@ -62,9 +70,10 @@
 
 php.ini
 extension=zorba_api.dll
-In your Zorba directory, locate the file zorba_api_wrapper.php and copy it to an include directory from where php can find it from your setting include_path, i.e.
 
 
+In your Zorba directory, locate the files zorba_api_wrapper.php and XQueryProcessor.php, copy them it to your include directory from where php can find it, this location is set on your php.ini file with the name include_path, i.e.
+
 php.ini
 ; Windows: "\path1;\path2"
 include_path = ".;C:\php\include"
@@ -109,7 +118,6 @@
 
 \endcode
 
-
 Point your browser to http://localhost/test.php and see the result.
 
 \section further_reading Further reading

-- 
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/bug1026192 into lp:zorba

2012-07-26 Thread Rodolfo Ochoa
The proposal to merge lp:~zorba-coders/zorba/bug1026192 into lp:zorba has been 
updated.

Commit Message changed to:

Documentation fixed for Zorba binary package with PHP.

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1026192/+merge/116998
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1026192/+merge/116998
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Launchpad Bug Tracker
** Branch linked: lp:~zorba-coders/zorba/bug1026192

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1026192

Title:
  Ensure Windows PHP/Apache/Zorba story works

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  As discussed here:

  http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
  apis-module

  If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
  on Windows, then we should provide such an installer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions

-- 
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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Rodolfo Ochoa
I have tested both, and changed documentation.

-- 
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/1026192

Title:
  Ensure Windows PHP/Apache/Zorba story works

Status in Zorba - The XQuery Processor:
  Confirmed

Bug description:
  As discussed here:

  http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
  apis-module

  If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
  on Windows, then we should provide such an installer.

To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions

-- 
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] [Bug 1026192] Re: Ensure Windows PHP/Apache/Zorba story works

2012-07-26 Thread Cezar Andrei
And ...? Hopefully it works.

Cezar

On Thu, Jul 26, 2012 at 11:22 PM, Rodolfo Ochoa
<1026...@bugs.launchpad.net>wrote:

> I have tested both, and changed documentation.
>
> --
> You received this bug notification because you are a member of Zorba
> Coders, which is the registrant for Zorba.
> https://bugs.launchpad.net/bugs/1026192
>
> Title:
>   Ensure Windows PHP/Apache/Zorba story works
>
> Status in Zorba - The XQuery Processor:
>   Confirmed
>
> Bug description:
>   As discussed here:
>
>   http://stackoverflow.com/questions/10990912/php-cant-initialize-zorba-
>   apis-module
>
>   If a Zorba binary compiled with VC6 is the only way to use PHP/Zorba
>   on Windows, then we should provide such an installer.
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/zorba/+bug/1026192/+subscriptions
>
> --
> 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
>
-- 
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-898066 into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/bug-898066-2012-07-27T06-15-22.107Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Chris Hillery
The proposal to merge lp:~zorba-coders/zorba/security-module-v2 into 
lp:zorba/security-module has been updated.

Status: Needs review => Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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


Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/bug1026192 into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1026192/+merge/116998
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/add-archive-module into lp:zorba

2012-07-26 Thread Chris Hillery
Review: Needs Fixing

Changelog refers to old archive module URI.
-- 
https://code.launchpad.net/~zorba-coders/zorba/add-archive-module/+merge/116086
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread Zorba Build Bot
Validation queue job bug-898066-2012-07-27T06-15-22.107Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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-898066 into lp:zorba

2012-07-26 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/bug-898066 into lp:zorba has been 
updated.

Status: Approved => Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-898066/+merge/116988
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
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/security-module-v2 into lp:zorba/security-module

2012-07-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/security-module-v2-2012-07-27T06-41-24.798Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/security-module-v2/+merge/115881
Your team Zorba Coders is subscribed to branch lp:zorba/security-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


  1   2   >