Last modified by mgrawunder on 2025/10/07 08:48

edited by Pascal Meyer
on 2025/07/30 05:20
Change comment: There is no comment for this version
edited by Pascal Meyer
on 2025/07/30 05:27
Change comment: There is no comment for this version

Summary

Details

insert_drive_file Page properties
Content
... ... @@ -29,20 +29,28 @@
29 29  = Wiki-Inhalte =
30 30  
31 31  {{velocity}}
32 -#set ($allowedPages = ["Aktuelles", "Anforderungen an die Gruppe", "Anforderungen an die Software", "Aufgabenstellung", "Basisprojekt", "Bewertung", "Historisches", "Organisatorisches", "Scrum"])
32 +#set ($allowedPages = [
33 + "Aktuelles",
34 + "Anforderungen an die Gruppe",
35 + "Anforderungen an die Software",
36 + "Aufgabenstellung",
37 + "Basisprojekt",
38 + "Bewertung",
39 + "Historisches",
40 + "Organisatorisches",
41 + "Scrum"
42 +])
33 33  
34 -#foreach ($childName in $doc.getChildren())
35 - #set ($childDoc = $xwiki.getDocument($childName))
36 - #if ($childDoc.exists)
37 - ## Extrahiere den Namen zwischen "Main." und ".WebHome"
38 - #set ($shortName = "")
39 - #if ($childDoc.fullName.startsWith("Main.") && $childDoc.fullName.endsWith(".WebHome"))
40 - #set ($shortName = $childDoc.fullName.substring(5, $childDoc.fullName.length() - 8))
41 - #end
44 +## Suche alle Seiten, die ein Child von Main.WebHome sind:
45 +#set ($query = "select doc.fullName from XWikiDocument as doc where doc.parentId = (select id from XWikiDocument where fullName='Main.WebHome')")
42 42  
43 - #if ($allowedPages.contains($shortName))
44 - * [[$childDoc.displayTitle>>$childDoc.fullName]]
45 - #end
47 +#set ($result = $xwiki.query($query))
48 +
49 +#foreach ($row in $result)
50 + #set ($fullName = $row.get("doc.fullName"))
51 + #set ($childDoc = $xwiki.getDocument($fullName))
52 + #if ($childDoc.exists && $allowedPages.contains($childDoc.name))
53 + * [[$childDoc.displayTitle>>$childDoc.fullName]]
46 46   #end
47 47  #end
48 48  {{/velocity}}