sources.xml.j2 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <sources>
  2. <programs>
  3. <default pathversion="1"></default>
  4. </programs>
  5. <video>
  6. <default pathversion="1"></default>
  7. {% for source in kodi_sources.video %}
  8. <source>
  9. <name>{{ source.name }}</name>
  10. <path pathversion="1">{{ source.path }}</path>
  11. <allowsharing>true</allowsharing>
  12. </source>
  13. {% endfor %}
  14. </video>
  15. <music>
  16. {% for source in kodi_sources.music %}
  17. <default pathversion="1"></default>
  18. <source>
  19. <name>{{ source.name }}</name>
  20. <path pathversion="1">{{ source.path }}</path>
  21. <allowsharing>true</allowsharing>
  22. </source>
  23. {% endfor %}
  24. </music>
  25. <pictures>
  26. {% for source in kodi_sources.pictures %}
  27. <default pathversion="1"></default>
  28. <source>
  29. <name>{{ source.name }}</name>
  30. <path pathversion="1">{{ source.path }}</path>
  31. <allowsharing>true</allowsharing>
  32. </source>
  33. {% endfor %}
  34. </pictures>
  35. <files>
  36. {% for source in kodi_sources.files %}
  37. <default pathversion="1"></default>
  38. <source>
  39. <name>{{ source.name }}</name>
  40. <path pathversion="1">{{ source.path }}</path>
  41. <allowsharing>true</allowsharing>
  42. </source>
  43. {% endfor %}
  44. </files>
  45. <games>
  46. <default pathversion="1"></default>
  47. </games>
  48. </sources>