Update of /cvsroot/stack/stack-1-0/scripts/rqp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23006/scripts/rqp
Modified Files:
Tag: development_xmlrqp
RQPv1p0Server.php
Added Files:
Tag: development_xmlrqp
RQPv1p0Server_old.php
Log Message:
Mini changes to ensure all metadata is written out into the schema correctly, question done, quizzes in progress
Index: RQPv1p0Server.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/scripts/rqp/Attic/RQPv1p0Server.php,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** RQPv1p0Server.php 11 Aug 2005 16:21:18 -0000 1.1.2.3
--- RQPv1p0Server.php 17 Aug 2005 11:24:06 -0000 1.1.2.4
***************
*** 1,2470 ****
! <?php
!
! include("nb_easyxml_lite.php");
!
! include("nb_soapfuncs.php");
!
! include("rqp_util.php"); //Stack/RQP utility functions
!
! include("../../stackstd.php"); //Reqd for version info for STACK
!
[...3224 lines suppressed...]
! else
! $ret .= $this->soapify_anyURI($input, "anyURI") . "\n";
! $ret .= "</$name>\n";
! return $ret;
! }
!
! function desoap_anyURIArray($xml, $idx, $name)
! {
! $ret = array();
! $cidx = $xml->FindChildElement($idx);
! while($cidx != false)
! {
! $ret[] = $this->desoap_anyURI($xml, $cidx, "anyURI");
! $cidx = $xml->FindNextPeer($cidx);
! }
! }
!
! }
! ?>
\ No newline at end of file
--- NEW FILE: RQPv1p0Server_old.php ---
<?php
include("nb_easyxml_lite.php");
include("nb_soapfuncs.php");
include("rqp_util.php"); //Stack/RQP utility functions
include("../../stackstd.php"); //Reqd for version info for STACK
/********* Data structures used by this web service *********
*
* type ServerInformationDType{
* ['name']=>string
[...2431 lines suppressed...]
$cidx = $xml->FindChildElement($idx);
while($cidx != false)
{
$ret[] = $this->desoap_anyURI($xml, $cidx, "anyURI");
}
}
}
?>
|