What version of ORBit is required?
----------------------------------
-You need the CVS version of ORBit to use Satellite!
+You need a CVS version of ORBit to use Satellite!
This does NOT work with ORBit 0.5.3 or earlier.
+The latest version of ORBit in CVS requires glib-2.0 and has not been tested.
+Because of this we checkout a CVS version from a know safe date.
How to install ORBit from CVS
-----------------------------
CVS root: :pserver:anonymous@anoncvs.gnome.org:/cvs/gnome
Password: Empty string
- Directory: ORBit
+ Directory: ORBit
+ Safe date: 2000-09-02 (yyyy-mm-dd)
More about GNOME:s CVS on http://www.gnome.org/start/source.html
+ Sample session at command line to checkout:
+
+ $ export CVSROOT=":pserver:anonymous@anoncvs.gnome.org:/cvs/gnome"
+
+ $ cvs login
+ (Logging in to anonymous@anoncvs.gnome.org)
+ CVS password:
+
+ $ cvs checkout -D "2000-09-02" ORBit
+ cvs server: Updating ORBit
+ .
+ .
+ .
+
(2) Set the environment variable CERTIFIED_GNOMIE to whatever you like.
(3) Run ./autogen.sh, gmake och gmake install
+How to install ORBit from snapshot
+----------------------------------
+
+(1) Download snapshot from one of these addresses:
+
+ http://download.2good.nu/satellite/ORBit-20000902.tgz
+ http://www.2good.com/satellite/ORBit-20000902.tgz
+
+(2) Run ./configure, gmake and gmake install
+
}
else
{
- zend_error(E_ERROR, "(Satellite) This class has no constructor");\
+ zend_error(E_WARNING, "(Satellite) This class has no constructor");\
}
}
else
* this means that the constructor has failed earlier!
* -- or should NULL be allowed here?
*/
- php_error(E_ERROR, "(Satellite) Class has no data!");
+ php_error(E_WARNING, "(Satellite) Class has no data!");
RETVAL_NULL();
goto orbit_class_function_call_exit;
}
}
else
{
- zend_error(E_ERROR, "(Satellite) Can't call functions in this class");\
+ zend_error(E_WARNING, "(Satellite) Can't call functions in this class");\
}
}
}\
else\
{\
- zend_error(E_ERROR, "(Satellite) Can't set members in class");\
+ zend_error(E_WARNING, "(Satellite) Can't set members in class");\
}\
return result;\
}
}\
else\
{\
- zend_error(E_ERROR, "(Satellite) Can't get members in class");\
+ zend_error(E_WARNING, "(Satellite) Can't get members in class");\
}\
return value;\
}
p_enum->mpEnumType = TypeManager_FindEnum(ppParameters[0]->value.str.val);
if (p_enum->mpEnumType == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown enum '%s'", ppParameters[0]->value.str.val);
+ zend_error(E_WARNING, "(Satellite) unknown enum '%s'", ppParameters[0]->value.str.val);
goto error;
}
if (p_value == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown member '%s' in enum '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown member '%s' in enum '%s'",
pPropertyName, EnumType_GetRepositoryId(pEnum->mpEnumType));
ZVAL_NULL(pReturnValue);
if (pObject->mCorbaObject == NULL || orbit_caught_exception())
{
- zend_error(E_ERROR, "(Satellite) Unable to resolve IOR");
+ zend_error(E_WARNING, "(Satellite) Unable to resolve IOR");
goto error;
}
if (pObject->mpInterface == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown interface '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown interface '%s'",
pObject->mCorbaObject->type_id);
/* TODO: set exception */
goto error;
return;
error:
- zend_error(E_ERROR, "(Satellite) Invalid serialized object");
+ zend_error(E_WARNING, "(Satellite) Invalid serialized object");
OrbitObject_Destructor(p_object);
}
if (p_object->mpInterface == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown interface '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown interface '%s'",
p_object->mCorbaObject->type_id);
goto error;
}
/* validate parameter types */
if (ppParameters[0]->type != IS_STRING)
{
- zend_error(E_ERROR, "(Satellite) IOR is not a string");
+ zend_error(E_WARNING, "(Satellite) IOR is not a string");
goto error;
}
if (p_operation == NULL)
{
/* no such operation */
- zend_error(E_ERROR, "(Satellite) unknown operation name '%s' in interface '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown operation name '%s' in interface '%s'",
pFunctionName, pObject->mCorbaObject->type_id);
goto error;
}
{
/*printf("InterfaceType_FindAttribute failed for property %s\n", pPropertyName);*/
/* no such atttribute */
- zend_error(E_ERROR, "(Satellite) unknown attribute name '%s' in interface '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown attribute name '%s' in interface '%s'",
pPropertyName, pObject->mCorbaObject->type_id);
goto OrbitObject_PutProperty_error;
}
{
/*printf("InterfaceType_FindAttribute failed for property %s\n", pPropertyName);*/
/* no such atttribute */
- zend_error(E_ERROR, "(Satellite) unknown attribute name '%s' in interface '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown attribute name '%s' in interface '%s'",
pPropertyName, pObject->mCorbaObject->type_id);
goto OrbitObject_GetProperty_error;
}
pStruct->u.mpExceptionType = TypeManager_FindException(pId);
if (pStruct->u.mpExceptionType == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown struct or exception '%s'", pId);
+ zend_error(E_WARNING, "(Satellite) unknown struct or exception '%s'", pId);
goto error;
}
if (!result)
{
- zend_error(E_ERROR, "(Satellite) unknown member '%s' in struct '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown member '%s' in struct '%s'",
pPropertyName, OrbitStruct_GetRepositoryId(pStruct));
}
if (p_value == NULL)
{
- zend_error(E_ERROR, "(Satellite) unknown member '%s' in struct '%s'",
+ zend_error(E_WARNING, "(Satellite) unknown member '%s' in struct '%s'",
pPropertyName, OrbitStruct_GetRepositoryId(pStruct));
ZVAL_NULL(pReturnValue);