/svn-externals.txt -text
templates/.htaccess -text
templates/_compiled/.htaccess -text
-templates/de/.htaccess -text
-templates/de/code/.htaccess -text
-templates/de/code/emergency_exit.ctp -text
-templates/de/code/footer_msg.ctp -text
-templates/de/html/.htaccess -text
-templates/images/.htaccess -text
-templates/images/_cache/.htaccess -text
-templates/images/de/.htaccess -text
-templates/images/de/image/.htaccess -text
-templates/images/de/image/base_image.itp -text
-templates/images/de/image/emergency_exit.itp -text
tests/ConfigTest.php -text
tests/RegistryTest.php -text
tests/RequestTest.php -text
+++ /dev/null
-Deny from all
+++ /dev/null
-Deny from all
+++ /dev/null
-{?header:title="Problem in application framework detected!"?}
-
-<div id="emergency_message">
- $content[message]
-</div>
-
-<div id="emergency_backtrace">
- <div id="backtrace_header">
- File inclusion backtrace:
- </div>
- <div id="backtrace_content">
- $content[backtrace]
- </div>
-</div>
-
-<div id="stats_box">
- <div id="stats_header">
- Statistics
- </div>
- <div id="stats_objects">
- Total objects: $content[total_objects]
- </div>
- <div id="stats_includes">
- Loaded class files: $content[total_includes]
- <span class="hint">(Including exception and interfaces.)</span>
- </div>
-</div>
-
-{?footer_msg:footer_msg="Please contact the support and supply the full above message, if you think you are not qualified to fix this problem."?}
+++ /dev/null
- <div id="footer_message">
- $content[footer_msg]
- </div>
-
-</div> <!-- masterbox //-->
-
-</body>
-</html>
+++ /dev/null
-Deny from all
+++ /dev/null
-Deny from all
+++ /dev/null
-Deny from all
+++ /dev/null
-Deny from all
+++ /dev/null
-Deny from all
+++ /dev/null
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<image>
- <type value="{?image_type?}" />
- <base>
- <name value="{?image_name?}" />
- </base>
- <resolution>
- <width value="{?image_width?}" />
- <height value="{?image_height?}" />
- </resolution>
- <background-color>
- <red value="{?image_bg_red?}" />
- <green value="{?image_bg_green?}" />
- <blue value="{?image_bg_blue?}" />
- </background-color>
- <foreground-color>
- <red value="{?image_fg_red?}" />
- <green value="{?image_fg_green?}" />
- <blue value="{?image_fg_blue?}" />
- </foreground-color>
- <image-string value="groupable">
- <string-name value="{?image_string_name?}" />
- <x value="{?image_x?}" />
- <y value="{?image_y?}" />
- <font-size value="{?image_size?}" />
- <text value="{?image_string?}" />
- </image-string>
-</image>
+++ /dev/null
-<?php
-// Needed in every image template to initialy set the image type
-$helper = ImageHelper::createImageHelper($this, "png");
-$helper->setImageName("emergency_exit");
-$helper->setBaseImage("base_image");
-
-// Set image dimensions
-$helper->setWidth(250);
-$helper->setHeight(100);
-
-// Background and foreground color
-$helper->setBackgroundColorRedGreenBlue(0xA0, 0x00, 0x30);
-$helper->setForegroundColorRedGreenBlue(0xFF, 0xFF, 0xFF);
-
-// Add header line
-$helper->addTextLine("header");
-$helper->setCoord(48, 10);
-$helper->setFontSize(5);
-$helper->setImageString("Fehler-Code: {?code?}");
-
-// Add info line
-$helper->addTextLine("info");
-$helper->setCoord(108, 40);
-$helper->setFontSize(5);
-$helper->setImageString("Info:");
-
-// Add extra line
-$helper->addTextLine("extra");
-$helper->setCoord(10, 70);
-$helper->setFontSize(2);
-$helper->setImageString("{?extra?}");
-
-// Flush content to the template engine
-$helper->flushContent();
-
-// Comment this out if image is done
-//$this->debugInstance();
-
-// [EOF]
-?>