Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - sultan

Pages: [1]
1
Development / Writing Export Plugin
« on: November 02, 2012, 02:09:57 pm »
Hello!

Did anybody write an export plugin? I didn't find any documentation and any examples on how to write an export plugin. For import there are many infos, but for export I did not find enough info to get started.

Thanks,
Sultan

2
Development / New Plugin: Awards recipients
« on: May 22, 2011, 09:04:31 pm »
Hi!

I am trying to write a new import plugin for this great piece of software called PVD. It works already quite well, but I have a little problem with the awards section. What is the expected XML-structure?  (I did not find anything in the samples or the forum.) Here is my current implementation, which does not work (but only the recipients part, the rest is ok):

<awards>
   <award>
      <year>1980</year>
      <event>Oscar</event>
      <cat>a legjobb vizuális effektusok</cat>
      <result>true</result>
      <recipients>
         <person>
            <name>Carlo Rambaldi</name>
            <url>http://www.filmkatalogus.hu/Carlo-Rambaldi--sz23280</url>
         </person>
         <person>
            <name>Denys Ayling</name>
            <url>http://www.filmkatalogus.hu/Denys-Ayling--sz23283</url>
         </person>
      </recipients>
   </award>
   <award>
      <year>1980</year>
      <event>Oscar</event>
      <cat>a legjobb látványtervezés</cat>
      <result>false</result>
      <recipients>
         <person>
            <name>Michael Seymour</name>
            <url>http://www.filmkatalogus.hu/Michael-Seymour--sz22008</url>
         </person>
         <person>
            <name>Ian Whittaker</name>
            <url>http://www.filmkatalogus.hu/Ian-Whittaker--sz22010</url>
         </person>
      </recipients>
   </award>
   <award>
      <year>1980</year>
      <event>Golden Globe</event>
      <cat>a legjobb eredeti filmzene</cat>
      <result>false</result>
      <recipients>
         <person>
            <name>Jerry Goldsmith</name>
            <url>http://www.filmkatalogus.hu/Jerry-Goldsmith--sz22274</url>
         </person>
      </recipients>
   </award>
</awards>


I would really appreciate some help in this case.

Thanx,
sultan

Pages: [1]