Änderungen von Dokument Sandbox

Zuletzt geändert von Holger Engels am 2024/01/26 15:58

Von Version 8.1
bearbeitet von Holger Engels
am 2023/11/08 06:51
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 3.1
bearbeitet von VBS
am 2023/10/13 22:20
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Dokument-Autor
... ... @@ -1,1 +1,1 @@
1 -XWiki.holgerengels
1 +XWiki.vbs
Inhalt
... ... @@ -111,71 +111,18 @@
111 111  Dies ist ein wichtiger Hinweis!
112 112  {{/warning}}
113 113  
114 -=== Ausrichten am ===
114 +== Inhaltsverzeichnis ==
115 115  
116 - ~===
116 +Dieses Makro erzeugt ein Inhaltsverzeichnis basierend auf den Überschriften in der Seite:
117 117  
118 -{{formula}}
119 -\begin{align*}
120 -f(x) &= x^2\! +3x\! +2 \\
121 -f(x) &= x^2+3x+2 \\
122 -f(x) &= x^2\, +3x\, +2 \\
123 -f(x) &= x^2\: +3x\: +2 \\
124 -f(x) &= x^2\; +3x\; +2 \\
125 -f(x) &= x^2\ +3x\ +2 \\
126 -f(x) &= x^2\quad +3x\quad +2 \\
127 -f(x) &= x^2\qquad +3x\qquad +2
128 -\end{align*}
129 -{{/formula}}
118 +{{toc/}}
130 130  
131 131  
132 -{{velocity filter="none"}}
133 -{{html clean="false" wiki="true"}}
134 -#set ($query = "where (doc.parent is null or doc.parent='') and doc.fullName != 'Main.WebHome' order by doc.name asc")
135 -
136 -|=Page Name|=Author|=date
137 -|#foreach ($item in $xwiki.searchDocuments($query))
138 - #if ($xwiki.hasAccessLevel('view', $xcontext.user, "${xcontext.database}:${item}"))
139 - #set ($bentrydoc = $xwiki.getDocument($item))
140 - [[${bentrydoc.fullName}]]|$xwiki.getUserName($bentrydoc.author)|$xwiki.formatDate($bentrydoc.date)
141 -|#end
121 +{{velocity}}
122 +#set($c=0)
123 +#set($doc = $xwiki.getDocument("Eingangsklasse.BPE_6_1.WebHome"))
124 +#foreach($m in $doc.getXDOM().getBlocks('class:MacroBlock', 'DESCENDANT'))
125 + #if($m.getId() == "aufgabe")#set($c=$c+1)#end
142 142  #end
143 -
144 -{{/html}}
127 +count $c
145 145  {{/velocity}}
146 -
147 -
148 -{{html clean="false"}}
149 -<script>
150 - customElements.define("star-rating", class extends HTMLElement {
151 - set rating(rate) {
152 - if (!String(rate).includes("%")) rate = Number(rate) / this.stars * 100 + "%";
153 - this.querySelector(":nth-child(2)").setAttribute("width", rate); //2nd rect
154 - }
155 - set value(v) {
156 - this.setAttribute("rating", v);
157 - }
158 - connectedCallback() {
159 - let {bgcolor,stars,nocolor,color,rating} = this.attributes;
160 - let repeat = (count, func) => Array(count).fill().map(func);
161 - this.stars = ~~stars.value || 5;
162 - this.innerHTML = `<svg viewBox="0 0 ${this.stars*100} 100" style=cursor:pointer>` +
163 - `<rect height=100 fill=${nocolor.value} width=100% />` +
164 - `<rect height=100 fill=${color.value} />` +
165 - repeat(this.stars , (i, n) => `<path fill=${bgcolor.value} d="m${ n*100 } 0h102v100h-102v-100m91 42a6 6 90 00-4-10l-22-1a1 1 90 01-1 0l-8-21a6 6 90 00-11 0l-8 21a1 1 90 01-1 1l-22 1a6 6 90 00-4 10l18 14a1 1 90 010 1l-6 22a6 6 90 008 6l19-13a1 1 90 011 0l19 13a6 6 90 006 0a6 6 90 002-6l-6-22a1 1 90 010-1z"/>`) +
166 - repeat(this.stars * 2, (i, n) => `<rect x=${ n*50 } n=${n} opacity=0 width=50 height=100 ` +
167 - ` onclick="this.closest('star-rating').value=${(n+1)/2}; this.closest('star-rating').dispatchEvent(new Event('click'))" ` +
168 - ` onmouseover="this.closest('star-rating').rating=${(n+1)/2}"/>`) +
169 - "</svg>";
170 - this.rating = rating.value;
171 - this.addEventListener('mouseleave', (e) => {
172 - if (e.target.tagName === 'STAR-RATING') {
173 - e.target.rating = e.target.getAttribute("rating")
174 - }
175 - })
176 - }
177 - });
178 -</script>
179 -{{/html}}
180 -
181 -