quelea-projection / Quelea

Open source projection software for churches.
https://quelea.org
GNU General Public License v3.0
159 stars 145 forks source link

Export order of service to pdf - only songs listed #542

Closed Youngwily closed 9 months ago

Youngwily commented 2 years ago

'Export order of service to pdf' does not include Bible verse, etc but only lists the songs in the Order of Service

berry120 commented 2 years ago

This could be a task someone can work on for Hacktoberfest. The relevant change isn't Java based, just XSL based, so will need to be made in the scheduleformat.xsl file.

At the moment in that file you'll see a for-each block for "song", but not for any other elements, which is why they're not in the resulting PDF.

island-coder commented 2 years ago

@berry120 Where can I locate the other elements to be included ?

prakhar-198 commented 1 year ago

@berry120 please assign me this I'll fix it!

berry120 commented 1 year ago

@island-coder Sorry, missed your earlier question. The XML tags for other elements can be found in the relevant classes that implement Displayable, in the getXml() method. For example, BiblePassage uses passage as its element name.

berry120 commented 9 months ago

Fixed with #542