Problems adding files to repo!


Geca

Member
Joined
Sep 6, 2010
Messages
338
Age
46
Location
Madrid, Spain
Website
www.gecasoft.no.sapo.pt
Is the third time I have this error:


WARNING: there seems to be an error with the data from one of your <application> blocks.


We need you to fix your PXML and then re-upload.


Thanks!


MISSING:


xml elements: author | - application block1


But in the past I update more games with the same template (only change texts). Already have a author and application block on xml.


Someone else have the same problem ?


Thanks.
 
I send you a msg on gp2x some days ago



Code:
<?xml version="1.0" encoding="UTF-8" ?>

  <PXML xmlns="http://openpandora.org/namespaces/PXML">

  <package id="HamstersEscape3D">

<version major="1" minor="0" release="1" build="1" type="release"/>

<author name="GECA soft" website="http://www.gecasoft.no.sapo.pt"/>

<titles>

  <title lang="en_US">Hamster's Escape 3D</title>

</titles>

<descriptions>

  <description lang="en_US">A Game by GECA soft</description>

</descriptions>

<icon src="HamstersEscape3D.png"/>

  </package>

  <application id="HamstersEscape3D" appdata="HamstersEscape3D">

  <title lang="en_US">Hamster's Escape 3D</title>

  <description lang="en_US">A Game by GECA soft</description>

  <version major="1" minor="0" release="1" build="1" />

  <exec command="./HamstersEscape3D.sh" background="true" standalone="true" />

  <icon src="HamstersEscape3D.png" />

  <info name="HamstersEscape3D" type="text" src="HamstersEscape3D.txt" />

  <licenses>

    <license name="Freeware" url="http://www.gecasoft.no.sapo.pt" sourcecodeurl="http://www.gecasoft.no.sapo.pt"/>

  </licenses>

  <previewpics>

<pic src="./previews/HamstersEscape3D1.png"/>

<pic src="./previews/HamstersEscape3D2.png"/>

  </previewpics>

  <categories>

  <category name="Game">

  <subcategory name="ArcadeGame" />

  </category>

  </categories>

  </application>

  </PXML>
 
Last edited by a moderator:
You have the author for the PND, but not for the individual application. You'd need to have something like:



Code:
<application id="HamstersEscape3D" appdata="HamstersEscape3D">

  <author name="GECA soft" website="http://www.gecasoft.no.sapo.pt"/>

  <title lang="en_US">Hamster's Escape 3D</title>
 
Checking the xml against the (latest?) schema reveals additional errors in application sub-elements.


The "title" element should be enclosed in "titles" like the author for the PND. The same for the "description" element.



Code:
<titles>

<title lang="en_US">Hamster's Escape 3D</title>

</titles>

<descriptions>

<description lang="en_US">A Game by GECA soft</description>

</descriptions>

In the "info" element, type="text" should be type="text/plain".



Code:
<info name="HamstersEscape3D" type="text/plain" src="HamstersEscape3D.txt" />
 
Back
Top