- Mitglieder CRUD Oberfläche
- Strafenverwaltung
- Terminkalender/Spieltagskalender aus DFBnet
- Mannschaftsspielplan als RAW: http://www.fussball.de/ajax.team.matchplan/-/team-id/011MIF06DC000000VTVG0001VTR8C1K7
- Nächste Spiele als RAW: http://www.fussball.de/ajax.team.next.games/-/team-id/011MIF06DC000000VTVG0001VTR8C1K7
- Mannschaftsspielplan (inkl. Spielort) als XML: http://www.fussball.de/ajax.team.matchplan/-/mime-type/XML/show-venues/true/team-id/011MIF06DC000000VTVG0001VTR8C1K7
- Spieltagsplaung (Ausschank, Grill, Waschen, Ordner, Linienrichter, Fahrer, Platzbau)
- Personentagging (potentielle Aufgaben)
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
server { | |
listen 80; | |
server_name mycoolsite.com www.mycoolsite.com; | |
root /home/mycoolsite.com/public_html; | |
index index.php index.html index.htm; | |
location / { | |
try_files $uri $uri/ /index.php$is_args$args; | |
} |
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
for (int i = 1; i <= messageList.Count; i++) | |
{ | |
// the .Item() method expects either a string or a long | |
// see http://www.novell.com/documentation/developer/groupwise_sdk/gwsdk_gwobjapi/data/h20s5bdo.html | |
long index = (long)i; | |
// instantiate a Message object to get access to the different properties like subject, sender etc | |
GroupwareTypeLibrary.Message oMessage = (GroupwareTypeLibrary.Message)ml.Item(index); | |
// get the email address of the sender |
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
// *SOURCE_FILE**************************************************************** | |
// Copyright (C) 2005 Novell Corp., All Rights Reserved | |
// | |
// The sample code is provided 'as is' without warranty of any kind. | |
// Novell, Inc. further disclaims all implied warranties including | |
// without limitation any implied warranties of any merchantability | |
// or of fitness for a particular purpose. The entire risk arising out | |
// of the use or performance of the software and documentation | |
// remains with you. | |
// |
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
case ForwardMessageID.GWCOMMAND00: | |
MessageBox.Show( "GW.MESSAGE.MAIL eGW_CMDID_FORWARD", "Execute", MessageBoxButtons.OK); | |
//C3PO WIZARD Put execute command code here for GW.MESSAGE.MAIL eGW_CMDID_FORWARD | |
C3POTypeLibrary.IGWClientState6 myCL = (C3POTypeLibrary.IGWClientState6)ForwardMessageID.g_C3POManager.ClientState; | |
GroupwareTypeLibrary.Message m = (GroupwareTypeLibrary.Message)myCL.CommandMessage; | |
MessageBox.Show("ForwardMessageID: " + m.MessageID); | |
break; | |
// oder |
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
<template lang="jade"> | |
#decid | |
h1 Add your options | |
input( | |
v-model="inputQuery" | |
@keyup.enter="addItem()" | |
) | |
ul#item-list(v-for="item in items", track-by="$index", transition='added-item') | |
li | |
p {{ item.item }} |
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
[ | |
{"value":"Hamburg", "title":"Hamburg title", "url":"#", "text":"Lorem ipsum dolor sit amet, consectetur ..."}, | |
{"value":"New York", "title":"New York", "url":"#", "text":"Ut enim ad minim veniam, quis nostrud ..."}, | |
{"value":"Moscow", "title":"Moscow", "url":"#", "text":"Duis aute irure dolor in reprehenderit ..."}, | |
{"value":"Amsterdam", "title":"Amsterdam", "url":"#", "text":"Excepteur sint occaecat cupidatat non ..."} | |
] |
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
<style> | |
</style> | |
<template> | |
<item class="item" :model="treeData"> </item> | |
</template> | |
<script> | |
import item from './Item.vue'; |
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
pkg load windows | |
pkg load io | |
function SetPathPoints (sCar, SNrOfPoints, Points) | |
endfunction | |
vorlauf = 72 |