title | author | lang | lof | geometry |
---|---|---|---|---|
Dynamische Dokumentation |
Simone Görner und Richard Vogel |
de |
true |
margin=3cm, left=3cm |
View import-flow.http
### | |
POST http://localhost:54321/3/NodePersistentStorage.bin/notebook/my-model | |
Content-Type: multipart/form-data; boundary=WebAppBoundary | |
--WebAppBoundary | |
Content-Disposition: form-data; name="file"; filename="my-model.flow" | |
< path/to/my-model.flow | |
--WebAppBoundary-- |
View input.md
View ReleaseNotes.md
Version 1.2.3
Stories:
- MYPROJECT-1: Kurzbeschreibung Story 1
- MYPROJECT-2: Kurzbeschreibung Story 2
Fixed Bugs:
- MYPROJECT-12: Anzeigefehler auf Seite 1
View MarkdownUsageFormatter.java
import com.beust.jcommander.*; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.util.Map; | |
public class MarkdownUsageFormatter implements IUsageFormatter { | |
private final JCommander commander; |
View SampleIT.java
public class SampleIT extends SeleniumTestCase { | |
@Test | |
@Login | |
@ImportFile(name = "brief/Datenbasis.xls") | |
public void testErfolgreicherVersand() throws Exception { | |
new VertragPage() | |
.setLogStrategy(new MarkdownStrategy()) | |
.title("handbuch.briefversand.title") | |
.describe("handbuch.briefversand.description") |
View docker-compose.yml
version: '3' | |
services: | |
proxy: | |
image: nginx:1.15-alpine | |
labels: | |
description: "nginx SSL Proxy" | |
depends_on: | |
- webapp | |
- docs |
View regex-pattern
<div id="stack-trace">other.package.MyTry.exec(MyTry.java:19)</div> | |
Now I need a jQuery/JS-Method which parses this Element by the Regex "\(\w*\.java:\d*\)" and modifies the content of this div to following: | |
<div id="stack-trace">other.package.MyTry.exec(<a href="MyTry.java:19">MyTry.java:19</a>)</div> |
View child.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:ui="http://java.sun.com/jsf/facelets" | |
xmlns:f="http://java.sun.com/jsf/core" | |
xmlns:h="http://java.sun.com/jsf/html" | |
xmlns:p="http://primefaces.org/ui"> | |
<ui:define name="columns"> | |
<!-- At this like, the IDE does not know the type of "key". So autocompletion and refactorings of "property" will fail. --> | |
<h:outputText value="#{key.property}"/> | |
</ui:define> | |
</ui:composition> |
View EventContainer.java
import javax.enterprise.event.Event; | |
import javax.inject.Inject; | |
import javax.inject.Named; | |
/** | |
* Klasse, die das zu feuernde Event beinhaltet. | |
* Diese wird benoetigt, da bei JSF < 2.2 keine DI in Komponenten moeglich ist. | |
*/ | |
@Named | |
public class EventContainer { |
View design_adminhmtl_default_default_template_cmsforbundle_product_edit_bundle_option.phtml
<script type="text/javascript"> | |
optionTemplate = '<div id="<?php echo $this->getFieldId() ?>_{{index}}" class="option-box"> ' + | |
'<div class="option-title"> ' + | |
'<label for="<?php echo $this->getFieldName() ?>[{{index}}][title]"><?php echo Mage::helper('bundle')->__('Default Title') ?> <span class="required">*</span></label>' + | |
<?php if ($this->isDefaultStore()): ?> | |
'<input class="input-text required-entry" type="text" name="<?php echo $this->getFieldName() ?>[{{index}}][title]" id="id_<?php echo $this->getFieldName() ?>_{{index}}_title" value="{{title}}">' + | |
<?php else: ?> | |
'<input class="input-text required-entry" type="text" name="<?php echo $this->getFieldName() ?>[{{index}}][default_title]" id="id_<?php echo $this->getFieldName() ?>_{{index}}_default_title" value="{{default_title}}">' + | |
<?php endif; ?> | |
'<?php echo $this->jsQuoteEscape($this->getOptionDeleteButtonHtml()) ?>' + |
NewerOlder