Changeset 2946
- Timestamp:
- 09/25/08 15:02:12 (8 weeks ago)
- Location:
- branches/felix-testing-implementation
- Files:
-
- 5 modified
-
. (modified) (1 prop)
-
CHANGELOG (modified) (2 diffs)
-
samples/pub/soap-test.php (modified) (1 diff)
-
samples/pub/xmlrpc-test.php (modified) (1 diff)
-
src/config/util/dom/AgaviXmlConfigDomElement.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/felix-testing-implementation
- Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2932 /branches/dominik-validation-argument-sources:1-2901 to /branches/1.0:1-2892,2894-2944 /branches/dominik-validation-argument-sources:1-2901
-
branches/felix-testing-implementation/CHANGELOG
r2933 r2946 1 1 AGAVI CHANGELOG 2 2 =============== 3 4 1.0.0 beta 4 (October ??, 2008) 5 ------------------------------- 6 7 FIX: AgaviXmlConfigDomElement::hasChild() does not pass on $namespaceUri argument (#865) (David) 8 3 9 4 10 1.0.0 beta 3 (September 21, 2008) … … 74 80 ------------------------------- 75 81 82 FIX: SOAP and XMLRPC test scripts in sample app are broken (#866) (David) 76 83 FIX: Certain validator names will cause a fatal error (#863) (David) 77 84 FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) -
branches/felix-testing-implementation/samples/pub/soap-test.php
r2028 r2946 10 10 11 11 if(!isset($_GET['item'])) { 12 $_GET['item'] = 'nonsense';12 $_GET['item'] = 123456; 13 13 } 14 14 -
branches/felix-testing-implementation/samples/pub/xmlrpc-test.php
r1964 r2946 8 8 <h1>Agavi XML-RPC Test</h1> 9 9 <?php 10 $request = xmlrpc_encode_request('getItemPrice', array(' name' => 'nonsense'), array("encoding" => "utf-8", "escaping" => "markup"));10 $request = xmlrpc_encode_request('getItemPrice', array('id' => 123456), array("encoding" => "utf-8", "escaping" => "markup")); 11 11 12 12 $url = "http://localhost/~dzuelke/_projects/agavi/branches/0.11/samples/pub/xmlrpc.php"; -
branches/felix-testing-implementation/src/config/util/dom/AgaviXmlConfigDomElement.class.php
r2882 r2946 161 161 * 162 162 * @author Noah Fontes <noah.fontes@bitextender.com> 163 * @author David Zülke <david.zuelke@bitextender.com> 163 164 * @since 1.0.0 164 165 */ … … 166 167 { 167 168 // if namespace uri is null, use default ns. if empty string, use no ns 168 return $this->countChildren($name ) === 1;169 return $this->countChildren($name, $namespaceUri) === 1; 169 170 170 171 // XXX: not necessary for single elements?

