This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. Variable mit Closure Syntax und Klasse "groovy.lang.Closure" erstellen oder Inhalt direkt in ein Textfeld einfügen z.B.: $V{testClosure}. | |
// Variable kann dann in einem Textfeld eingefügt und die Closure mit $V{testClosure}() aufgerufen werden. | |
{ | |
def a = 3; | |
def b = 4; | |
def c = a + b; | |
return c; | |
} | |
// 2. Beispiel mit Parameter. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//universal Create Element function | |
function createElement(type, props, ...children) { | |
let dom = document.createElement(type); | |
if (props) Object.assign(dom, props); | |
for (let child of children) { | |
if (typeof child != "string" && typeof child != "number") | |
dom.appendChild(child); | |
else dom.appendChild(document.createTextNode(child)); | |
} | |
return dom; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new bayern.asv.reports.api.groovy.ScriptExecutor("",/ | |
import bayern.asv.reports.api.st.austritt.AustrittEintrittHelper; | |
import bayern.asv.reports.api.kl.datasources.schuelerliste.SchuelerlisteDatasourceConverter; | |
import bayern.asv.reports.api.st.migration.Migration; | |
import bayern.asv.reports.api.tools.arraylistdatasource.ArrayListDataSource; | |
import de.isb.svp.domain.pojo.Klasse; | |
import de.isb.svp.domain.pojo.Klassengruppe; | |
import de.isb.svp.domain.pojo.SchuelerSchuljahr; | |
import de.isb.base.business.context.Context; | |
import java.util.Date; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="entry-details"> | |
{% if object.website %} | |
<a href="{{ object.website }}"><span class="newsTitle">{{ object.title }}</span></a> | |
{% else %} | |
<span class="name">{{ object.title }}</span> | |
{% endif %} | |
<div class="newsInfo"> | |
{{ object.info }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="flex-objects"> | |
<div class="text-center"> | |
<input class="form-input search" type="text" placeholder="Durchsuche die News" /> | |
<button class="button button-primary sort asc" data-sort="name"> | |
Sort by Name | |
</button> | |
</div> | |
{% set data = flex_entries.getData().toArray()|sort_by_key(title) %} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: News | |
description: News für die Startseite erstellen. | |
type: flex-objects | |
# Flex Configuration | |
config: | |
# Administration Configuration | |
admin: | |
# Admin router (optional) | |
router: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<irplus> | |
<device manufacturer="Manufacturer" model="Model" columns="3" format="PRONTO_HEX" > | |
<button label="POWER" labelColor="FF000000" labelSize="20.0" backgroundColor="FFFFFFFF">0000 006D 0010 0000 000C 0044 000C 001C 000C 001C 000C 001C 000C 001C 000C 001C 000C 0044 000C 0044 000C 001C 000C 0044 000C 001C 000C 001C 000C 001C 000C 0044 000C 001C 000C 12FF</button> | |
</device> | |
</irplus> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import random module | |
import random | |
tempRandom = random.randint(0, 9) | |
print(tempRandom) | |
# lists all functions of the random module | |
print(dir(random)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# non blocking Tkinter code -> uses of .update_idletasks() | |
# | |
import time | |
from tkinter import * | |
# Function: with timeout | |
def mySleep(): | |
text.insert(INSERT, "start sleep\n") |
NewerOlder