foo abc def

2*x + y - 42 = 3.0 (x=16.0, y=13.0)

SandKasten RenamedPage

UlfsPage UlfsPdfPage ViewerAndMaps Chartist

Wikipedia:Hamburg DeWikipedia:Hamburg IMDB:Caine IMDBTitle:tt0066365

none match

Meta robots="NOINDEX, NOFOLLOW"

GFK : SandKasten - Plugin insertion failed: null GFK : SandKasten - Plugin insertion failed: null


Email Notification Configuration

EmailNotifierPlugin mod='config'


public enum IceCream {
    VANILLA ("white"),
    STRAWBERRY ("pink"),
    WALNUT ("brown"),
    CHOCOLATE ("dark brown");
}

@Deprecated
@SomeAssertion("some value")
private static void highlightFile(String name, File in, File out, String encoding, boolean fragment, boolean verbose)
    throws IOException
{
    out.getParentFile().mkdirs();

    /* This is the first comment. */
    if (verbose)
    {
        System.out.print(name + " ... ");
    }

    assert(1 == 1);

    // that's some comment
    XhtmlRendererFactory.getRenderer(FileUtils.getExtension(name))
        .highlight(name,
               in.toURL().openStream(),
               new FileOutputStream(out),
               encoding,
               fragment);

    /** That's a javadoc comment. 
     * @author Me, Myself and I
     */
}