Skip Menu |

This queue is for tickets about the Froody CPAN distribution.

Report information
The Basics
Id: 16265
Status: resolved
Priority: 0/
Queue: Froody

People
Owner: Nobody in particular
Requestors: mjs [...] beebo.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 42.005
Fixed in: (no value)



Subject: XML spec in Froody::QuickStart broken
The first XML spec in Froody::QuickStart contains: <!-- the parameters we pass to the method --> <attributes> <attribute name="who" type="text" optional="0" /> </attribute> As well as being invalid XML, this doesn't do what it's supposed to! It needs to be: <!-- the parameters we pass to the method --> <arguments> <argument name="who" type="text" optional="0" /> </arguments>
*** QuickStart.old Sat Dec 3 12:35:12 2005 --- QuickStart.pod Sat Dec 3 12:35:43 2005 *************** *** 47,55 **** <method name="examples.myapi.greet"> <!-- the parameters we pass to the method --> ! <attributes> ! <attribute name="who" type="text" optional="0" /> ! </attribute> <!-- an example response, what the returned XML will look like --> <response> --- 47,55 ---- <method name="examples.myapi.greet"> <!-- the parameters we pass to the method --> ! <arguments> ! <argument name="who" type="text" optional="0" /> ! </arguments> <!-- an example response, what the returned XML will look like --> <response>
Your fix has hit our source repository and be part of the next released version of Froody.