[Zorba-coders] [Merge] lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba

2013-01-10 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging 
lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba.

Commit message:
fixed performance regression due to unconditional schema creation

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685

fixed performance regression due to unconditional schema creation
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/runtime/core/sequencetypes.cpp'
--- src/runtime/core/sequencetypes.cpp	2012-12-29 06:48:09 +
+++ src/runtime/core/sequencetypes.cpp	2013-01-10 13:18:51 +
@@ -230,7 +230,7 @@
   const UserDefinedXQType* udt;
   store::SchemaTypeCode targetType;
 
-  const TypeManager* tm = theSctx-get_typemanager();
+  TypeManager* tm = theSctx-get_typemanager();
 
   CastIteratorState* state;
   DEFAULT_STACK_INIT(CastIteratorState, state, planState);
@@ -336,7 +336,7 @@
   bool res;
   store::Item_t item;
 
-  const TypeManager* tm = theSctx-get_typemanager();
+  TypeManager* tm = theSctx-get_typemanager();
 
   PlanIteratorState* state;
   DEFAULT_STACK_INIT(PlanIteratorState, state, planState);

=== modified file 'src/runtime/numerics/format_integer_impl.cpp'
--- src/runtime/numerics/format_integer_impl.cpp	2012-09-19 21:16:15 +
+++ src/runtime/numerics/format_integer_impl.cpp	2013-01-10 13:18:51 +
@@ -762,7 +762,7 @@
   utf8_stringzstring  utf8_picture(pictureString);
   xs_integer valueInteger;
   bool  is_neg = false;
-  const TypeManager* tm = theSctx-get_typemanager();
+  TypeManager* tm = theSctx-get_typemanager();
   const RootTypeManager rtm = GENV_TYPESYSTEM;
 
   PlanIteratorState* state;
@@ -788,10 +788,11 @@
 {
   consumeNext(language_item, theChildren[2].getp(), planState);
   languageString = language_item-getStringValue();
+
   if(!GenericCast::isCastable(languageString, *rtm.LANGUAGE_TYPE_ONE, tm))
   {
-throw XQUERY_EXCEPTION(err::FOFI0001, ERROR_PARAMS( languageString ), ERROR_LOC( loc )
-);
+throw XQUERY_EXCEPTION(err::FOFI0001,
+ERROR_PARAMS(languageString), ERROR_LOC(loc));
   }
 }
 

=== modified file 'src/types/casting.cpp'
--- src/types/casting.cpp	2013-01-08 11:07:41 +
+++ src/types/casting.cpp	2013-01-10 13:18:51 +
@@ -2043,7 +2043,7 @@
 const xqtref_t targetType,
 const namespace_context* nsCtx,
 std::vectorstore::Item_t resultList,
-const TypeManager* tm,
+TypeManager* tm,
 const QueryLoc loc)
 {
   const TypeManager* ttm = targetType-get_manager();
@@ -2075,6 +2075,9 @@
   {
 ZORBA_ASSERT(targetType-type_kind() == XQType::USER_DEFINED_KIND);
 
+#ifndef ZORBA_NO_XMLSCHEMA
+tm-initializeSchema();
+
 Schema* schema = tm-getSchema();
 
 const UserDefinedXQType* udt =
@@ -2129,6 +2132,7 @@
   RAISE_ERROR(err::FORG0001, loc,
   ERROR_PARAMS(item-getStringValue(), ZED(NoCastTo_34o), udt-toSchemaString()));
 } // union
+#endif // ZORBA_NO_XMLSCHEMA
   } // list or union
 }
 
@@ -2692,7 +2696,7 @@
 bool GenericCast::isCastable(
 const store::Item_t aItem,
 const XQType* targetType,
-const TypeManager* tm)
+TypeManager* tm)
 {
 #ifndef ZORBA_NO_XMLSCHEMA
   if (targetType-type_kind() == XQType::USER_DEFINED_KIND )
@@ -2700,6 +2704,8 @@
 const UserDefinedXQType* udt = static_castconst UserDefinedXQType*(targetType);
 if (!udt-isComplex())
 {
+  tm-initializeSchema();
+
   return tm-getSchema()-
  isCastableUserSimpleTypes(aItem-getStringValue(), targetType);
 }
@@ -2746,7 +2752,7 @@
 bool GenericCast::isCastable(
 const zstring str,
 const XQType* aTargetType,
-const TypeManager* tm)
+TypeManager* tm)
 {
 #ifndef ZORBA_NO_XMLSCHEMA
   if (aTargetType-type_kind() == XQType::USER_DEFINED_KIND )
@@ -2754,6 +2760,8 @@
 const UserDefinedXQType* udt = static_castconst UserDefinedXQType*(aTargetType);
 if (!udt-isComplex())
 {
+  tm-initializeSchema();
+
   return tm-getSchema()-
  isCastableUserSimpleTypes(str,
udt-getBaseType().getp());

=== modified file 'src/types/casting.h'
--- src/types/casting.h	2012-12-28 11:53:57 +
+++ src/types/casting.h	2013-01-10 13:18:51 +
@@ -89,7 +89,7 @@
 const xqtref_t targetType,
 const namespace_context* nsCtx,
 std::vectorstore::Item_t resultList,
-const TypeManager* tm,
+TypeManager* tm,
 const QueryLoc loc);
 
   static bool castStringToAtomic(
@@ -138,12 +138,12 @@
   static bool isCastable(
   const store::Item_t item,
   const XQType* targetType,
-  const TypeManager* tm); 
+  TypeManager* tm); 
 
   static bool isCastable(
   const zstring stringValue,
   const XQType* targetType,
-  const TypeManager* tm);
+  TypeManager* tm);
 };
 
 } /* 

Re: [Zorba-coders] [Merge] lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba

2013-01-10 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
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/cast-to-simple-type into lp:zorba

2013-01-10 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
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/cast-to-simple-type into lp:zorba

2013-01-10 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/cast-to-simple-type-2013-01-10T13-29-48.847Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
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/cast-to-simple-type into lp:zorba

2013-01-10 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
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/cast-to-simple-type into lp:zorba

2013-01-10 Thread Zorba Build Bot
Validation queue job cast-to-simple-type-2013-01-10T13-29-48.847Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/142685
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/cast-to-simple-type into lp:zorba

2012-12-29 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-29 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/cast-to-simple-type-2012-12-29T09-34-47.585Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-29 Thread Zorba Build Bot
Validation queue job cast-to-simple-type-2012-12-29T09-34-47.585Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-29 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/cast-to-simple-type-2012-12-28T11-12-10.15Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:275 
(message):
  Validation queue job cast-to-simple-type-2012-12-28T11-12-10.15Z 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/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/cast-to-simple-type-2012-12-28T12-03-01.896Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
Validation queue job cast-to-simple-type-2012-12-28T12-03-01.896Z is finished. 
The final status was:

All tests succeeded!
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread noreply
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Approved = Merged

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141029
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
Markos Zaharioudakis has proposed merging 
lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba.

Commit message:
fixed bug #107640

Requested reviews:
  Markos Zaharioudakis (markos-za)

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449

fixed bug #107640
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/diagnostics/diagnostic_en.xml'
--- src/diagnostics/diagnostic_en.xml	2012-12-21 22:05:39 +
+++ src/diagnostics/diagnostic_en.xml	2012-12-29 06:49:22 +
@@ -265,6 +265,10 @@
 valueCannot cast node to xs:QName/value
   /entry
 
+  entry key=NotationParam_23
+value$2 can not be promoted to parameter type xs:NOTATION of function $3()/value
+  /entry
+
 /diagnostic
 
 diagnostic code=XQTY0024

=== modified file 'src/diagnostics/pregenerated/dict_en.cpp'
--- src/diagnostics/pregenerated/dict_en.cpp	2012-12-21 22:05:39 +
+++ src/diagnostics/pregenerated/dict_en.cpp	2012-12-29 06:49:22 +
@@ -895,6 +895,7 @@
   { ~XPTY0004_NoTreatAs_23, $2 can not be treated as type $3 },
   { ~XPTY0004_NoTypePromote_23, $2 can not be promoted to type $3 },
   { ~XPTY0117_NodeCast, Cannot cast node to xs:QName },
+  { ~XPTY0117_NotationParam_23, $2 can not be promoted to parameter type xs:NOTATION of function $3() },
   { ~XQST0106_CONFLICTING, conflicting },
   { ~XQST0106_THE_SAME, the same },
   { ~XUDY0021_AttributeName, \$3\: attribute with the same name already exists },

=== modified file 'src/diagnostics/pregenerated/dict_zed_keys.h'
--- src/diagnostics/pregenerated/dict_zed_keys.h	2012-12-21 22:05:39 +
+++ src/diagnostics/pregenerated/dict_zed_keys.h	2012-12-29 06:49:22 +
@@ -42,6 +42,7 @@
 #define ZED_XPTY0004_JSONIQ_SELECTOR ~XPTY0004_JSONIQ_SELECTOR
 #define ZED_XPTY0004_MultiValuedGroupingKey ~XPTY0004_MultiValuedGroupingKey
 #define ZED_XPTY0117_NodeCast ~XPTY0117_NodeCast
+#define ZED_XPTY0117_NotationParam_23 ~XPTY0117_NotationParam_23
 #define ZED_XQST0106_THE_SAME ~XQST0106_THE_SAME
 #define ZED_XQST0106_CONFLICTING ~XQST0106_CONFLICTING
 #define ZED_FTST0009_BadStopWordsLang ~FTST0009_BadStopWordsLang

=== modified file 'src/runtime/core/sequencetypes.cpp'
--- src/runtime/core/sequencetypes.cpp	2012-12-28 11:53:57 +
+++ src/runtime/core/sequencetypes.cpp	2012-12-29 06:49:22 +
@@ -493,6 +493,16 @@
   {
 assert(theQName != NULL);
 
+if (TypeOps::is_equal(theSctx-get_typemanager(),
+  *thePromoteType,
+  *GENV_TYPESYSTEM.NOTATION_TYPE_ONE,
+  loc))
+{
+  RAISE_ERROR(err::XPTY0117, loc,
+  ERROR_PARAMS(ZED(XPTY0117_NotationParam_23),
+   valueType, theQName-getStringValue()));
+}
+
 RAISE_ERROR(err::XPTY0004, loc, 
 ERROR_PARAMS(ZED(XPTY0004_NoParamTypePromote_234),
  valueType, targetType, theQName-getStringValue()));

=== modified file 'src/types/casting.cpp'
--- src/types/casting.cpp	2012-12-28 11:53:57 +
+++ src/types/casting.cpp	2012-12-29 06:49:22 +
@@ -2896,9 +2896,14 @@
 return result != NULL;
   }
 
-  if (TypeOps::is_subtype(itemType, store::XS_UNTYPED_ATOMIC) 
-  ! TypeOps::is_subtype(targetType, store::XS_QNAME))
+  if (TypeOps::is_subtype(itemType, store::XS_UNTYPED_ATOMIC))
   {
+if (TypeOps::is_subtype(targetType, store::XS_QNAME) ||
+TypeOps::is_subtype(targetType, store::XS_NOTATION))
+{
+  return false;
+}
+
 // untyped -- target type
 castToBuiltinAtomic(result, item, targetType, NULL, loc);
 return true;

=== modified file 'src/types/typeimpl.cpp'
--- src/types/typeimpl.cpp	2012-12-28 10:24:59 +
+++ src/types/typeimpl.cpp	2012-12-29 06:49:22 +
@@ -106,7 +106,7 @@
   xs:ID,
   xs:IDREF,
   xs:ENTITY,
-  UNTYPED_ATOMIC,
+  xs:untypedAtomic,
   xs:dateTime,
   xs:date,
   xs:time,

-- 
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
Review: Approve


-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Markos Zaharioudakis
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Needs review = Approved

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
Validation queue starting for merge proposal.
Log at: 
http://zorbatest.lambda.nu:8080/remotequeue/cast-to-simple-type-2012-12-29T06-54-47.404Z/log.html
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
The attempt to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
failed. Below is the output from the failed tests.


CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:275 
(message):
  Validation queue job cast-to-simple-type-2012-12-29T06-54-47.404Z 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/cast-to-simple-type/+merge/141449
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/cast-to-simple-type into lp:zorba

2012-12-28 Thread Zorba Build Bot
The proposal to merge lp:~zorba-coders/zorba/cast-to-simple-type into lp:zorba 
has been updated.

Status: Approved = Needs review

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
-- 
https://code.launchpad.net/~zorba-coders/zorba/cast-to-simple-type/+merge/141449
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