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

2012-04-19 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102747
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102747
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/serializer into lp:zorba

2012-04-18 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging lp:~zorba-coders/zorba/serializer 
into lp:zorba.

Requested reviews:
  Markos Zaharioudakis (markos-za)

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

removed forward-referencing stuff
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102459
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/zorbaserialization/archiver.cpp'
--- src/zorbaserialization/archiver.cpp	2012-04-16 20:56:43 +
+++ src/zorbaserialization/archiver.cpp	2012-04-18 08:33:27 +
@@ -21,6 +21,7 @@
 #include functions/function.h
 #include store/api/item.h
 #include diagnostics/xquery_diagnostics.h
+#include diagnostics/assert.h
 #include zorbautils/hashmap.h
 
 #include archiver.h
@@ -114,19 +115,18 @@
 /
 Archiver::Archiver(bool is_serializing_out, bool internal_archive)
   :
+  theArchiveVersion(ClassSerializer::g_zorba_classes_version),
   theSerializingOut(is_serializing_out),
-  serialize_base_class(false),
-  all_reference_list(0),
-  theArchiveVersion(ClassSerializer::g_zorba_classes_version),
+  theSerializeBaseClass(false),
+  theIsTempField(0),
+  theFieldCounter(0),
   theRootField(0),
   theCurrentCompoundField(0),
-  theSimpleFieldsMap(0),
-  hash_out_fields(0),
-  nr_ids(0),
-  current_class_version(0),
+  theCurrentLevel(0),
+  theNonClassFieldsMap(0),
+  theClassFieldsMap(0),
+  all_reference_list(0),
   read_optional(false),
-  theIsTempField(0),
-  theCurrentLevel(0),
   internal_archive(internal_archive),
   theOnlyForEval(0),
   theSerializeEverything(false),
@@ -151,15 +151,15 @@
 
 theCurrentCompoundField = theRootField;
 
-theSimpleFieldsMap = new HashMapSIMPLE_HASHOUT_FIELD, archive_field*,
+theNonClassFieldsMap = new HashMapSIMPLE_HASHOUT_FIELD, archive_field*,
 SimpleHashoutFieldCompare(1000, false);
-hash_out_fields = new hash64maparchive_field*(1, 0.6f);
+theClassFieldsMap = new hash64maparchive_field*(1, 0.6f);
   }
 
   if (!internal_archive)
   {
 Archiver* har = ClassSerializer::getInstance()-harcoded_objects_archive;
-nr_ids = har-get_nr_ids();
+theFieldCounter = har-get_num_fields();
   }
 }
 
@@ -171,15 +171,8 @@
 {
   delete theRootField;
   delete [] all_reference_list;
-  delete theSimpleFieldsMap;
-  delete hash_out_fields;
-
-  std::listfwd_ref::iterator it;
-  for (it = fwd_reference_list.begin(); it != fwd_reference_list.end(); ++it)
-  {
-if ((*it).class_name)
-  free((*it).class_name);
-  }
+  delete theNonClassFieldsMap;
+  delete theClassFieldsMap;
 
   std::vectorarchive_field*::const_iterator orphan_it;
   for (orphan_it = orphan_fields.begin(); orphan_it != orphan_fields.end(); ++orphan_it)
@@ -226,7 +219,7 @@
 
   SIMPLE_HASHOUT_FIELD f(type, ptr);
 
-  theSimpleFieldsMap-get(f, duplicate_field);
+  theNonClassFieldsMap-get(f, duplicate_field);
 
   if (!duplicate_field)
   {
@@ -252,7 +245,7 @@
 
   archive_field* duplicate_field = NULL;
 
-  hash_out_fields-get((uint64_t)ptr, duplicate_field);
+  theClassFieldsMap-get((uint64_t)ptr, duplicate_field);
 
   if (!duplicate_field)
   {
@@ -287,7 +280,6 @@
 {
   archive_field* new_field;
   archive_field* ref_field = NULL;
-  bool exch_fields = false;
 
   assert(fieldKind != ARCHIVE_FIELD_BASECLASS);
   assert(fieldKind != ARCHIVE_FIELD_REFERENCING);
@@ -312,14 +304,13 @@
 
   if (ref_field)
   {
-assert(ref_field-theKind == ARCHIVE_FIELD_PTR ||
-   ref_field-theKind == ARCHIVE_FIELD_NORMAL);
+// special case: we have registered already a pointer to the obj (before
+// the obj itself) and now we try to register the obj itself. In theory,
+// this scenario is possible, but in practice it never happens.
+ZORBA_ASSERT(fieldKind != ARCHIVE_FIELD_NORMAL);
 
-// If we are trying to register the actual obj (i.e. fieldKind == FIELD_NORMAL)
-// and there is already a field for the same obj, then the pre-existing field
-// must be a PTR or REFERENCING field.
-assert(fieldKind != ARCHIVE_FIELD_NORMAL ||
-   ref_field-theKind == ARCHIVE_FIELD_PTR);
+ZORBA_ASSERT(ref_field-theKind == ARCHIVE_FIELD_PTR ||
+ ref_field-theKind == ARCHIVE_FIELD_NORMAL);
 
 if (get_is_temp_field_one_level() 
 fieldKind == ARCHIVE_FIELD_PTR 
@@ -328,13 +319,6 @@
   theAllowDelay2 = DONT_ALLOW_DELAY;
 }
 
-if (fieldKind == ARCHIVE_FIELD_NORMAL)
-{
-  // special case: we have registered already a pointer to the obj (before
-  // the obj itself) and now we try to register the obj itself.
-  exch_fields = true;
-}
-
 fieldKind = ARCHIVE_FIELD_REFERENCING;
 value = NULL;
 ptr = NULL;
@@ -362,27 +346,20 @@
 assert(fieldKind == ARCHIVE_FIELD_NORMAL || fieldKind == ARCHIVE_FIELD_PTR);
 
 SIMPLE_HASHOUT_FIELD f(type, ptr);
-

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

2012-04-18 Thread Zorba Build Bot
Validation queue job serializer-2012-04-18T10-18-59.624Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102459
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/serializer into lp:zorba

2012-04-18 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102459
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/102459
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/serializer into lp:zorba

2012-04-13 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
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/serializer into lp:zorba

2012-04-13 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
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/serializer into lp:zorba

2012-04-13 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-13T22-01-18.056Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
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/serializer into lp:zorba

2012-04-13 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-13T22-43-01.586Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
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/serializer into lp:zorba

2012-04-13 Thread Zorba Build Bot
Validation queue job serializer-2012-04-13T22-43-01.586Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101957
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/serializer into lp:zorba

2012-04-10 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
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/serializer into lp:zorba

2012-04-10 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-10T20-24-16.316Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
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/serializer into lp:zorba

2012-04-10 Thread Zorba Build Bot
Validation queue job serializer-2012-04-10T20-24-16.316Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
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/serializer into lp:zorba

2012-04-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101441
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/serializer into lp:zorba

2012-04-08 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
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/serializer into lp:zorba

2012-04-08 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
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/serializer into lp:zorba

2012-04-08 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-08T21-04-03.414Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
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/serializer into lp:zorba

2012-04-08 Thread Zorba Build Bot
Validation queue job serializer-2012-04-08T21-04-03.414Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
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/serializer into lp:zorba

2012-04-08 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/101213
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/serializer into lp:zorba

2012-04-04 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-04T09-42-56.41Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/serializer 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 serializer-2012-04-04T09-42-56.41Z 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/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 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/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-04-04T12-50-00.103Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-04-04 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/100758
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/serializer into lp:zorba

2012-03-26 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

2012-03-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-03-26T21-12-59.324Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

2012-03-26 Thread Zorba Build Bot
Validation queue job serializer-2012-03-26T21-12-59.324Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

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

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

2012-03-25 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

2012-03-25 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-03-26T02-16-22.192Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/99243
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/serializer into lp:zorba

2012-03-25 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/serializer 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 serializer-2012-03-26T02-16-22.192Z is finished.  The
  final status was:

  

  2 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/serializer/+merge/99243
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/serializer into lp:zorba

2012-02-27 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-27 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-02-27T17-46-12.004Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-27 Thread Zorba Build Bot
Validation queue job serializer-2012-02-27T17-46-12.004Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-27 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1. 
Got: 2 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-27 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-26 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/serializer into lp:zorba has been 
updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-26 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/serializer-2012-02-26T22-07-15.412Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-26 Thread Zorba Build Bot
Validation queue job serializer-2012-02-26T22-07-15.412Z is finished. The final 
status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

2012-02-26 Thread Zorba Build Bot
Voting does not meet specified criteria. Required: Approve  1, Disapprove  1. 
Got: 2 Pending.
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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/serializer into lp:zorba

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

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
-- 
https://code.launchpad.net/~zorba-coders/zorba/serializer/+merge/94695
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