summaryrefslogtreecommitdiff
path: root/installer/views
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-11 02:27:00 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-11 02:27:00 +0000
commit01666c5579b3de40981d9a06a627166e3bddedf6 (patch)
tree2621b656b07de422be1a7c014a9019ab84fa4bc6 /installer/views
parentafb90768b4c61ad7c0fd10dd04bf9bfe9458d4af (diff)
Fix all file structure issues (tabs, bad preambles, etc).
Note: installer/install.php is now on the "direct access" list.
Diffstat (limited to 'installer/views')
-rw-r--r--installer/views/installer.html.php14
-rw-r--r--installer/views/installer.txt.php7
2 files changed, 11 insertions, 10 deletions
diff --git a/installer/views/installer.html.php b/installer/views/installer.html.php
index 34bcb56c..ed372600 100644
--- a/installer/views/installer.html.php
+++ b/installer/views/installer.html.php
@@ -1,15 +1,15 @@
-<?php defined("SYSPATH") or die("No direct script access."); ?>
+<?php defined("SYSPATH") or die("No direct script access.") ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
-
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-
+
<title>Gallery3 Requirements Verification</title>
-
+
<style type="text/css">
body { width: 42em; margin: 0 auto; font-family: sans-serif; font-size: 90%; }
-
+
#tests table { border-collapse: collapse; width: 100%; }
#tests table th,
#tests table td { padding: 0.2em 0.4em; text-align: left; vertical-align: top; }
@@ -27,14 +27,14 @@
<body>
<? foreach (self::$messages as $section) : ?>
<h1><?php print $section["header"] ?></h1>
-
+
<p><?php print $section["description"] ?></p>
<div id="tests">
<table cellspacing="0">
<?php foreach ($section["msgs"] as $header => $msg): ?>
-
+
<tr>
<th><?php echo $header ?></th>
<td class="<?php echo empty($msg["error"]) ? "pass" : "fail" ?>">
diff --git a/installer/views/installer.txt.php b/installer/views/installer.txt.php
index 3b6f0512..e7dc155f 100644
--- a/installer/views/installer.txt.php
+++ b/installer/views/installer.txt.php
@@ -1,4 +1,5 @@
-<?php defined("SYSPATH") or die("No direct script access.");
+<?php defined("SYSPATH") or die("No direct script access.") ?>
+<?
function green_start() {
return "\x1B[32m";
}
@@ -16,7 +17,7 @@ function magenta_start() {
}
function print_msg($header, $msg, $error) {
- $format = "| %-21.21s | %-81.81s |\n";
+ $format = "| %-21.21s | %-81.81s |\n";
foreach (explode("\n", wordwrap($msg, 72)) as $text) {
if ($error) {
printf($format, $header, red_start() . $text . color_end());
@@ -36,7 +37,7 @@ foreach (self::$messages as $section) {
echo "+", str_repeat("-", 98), "+\n";
foreach ($section["msgs"] as $header => $msg) {
- print_msg($header, $msg["text"], $msg["error"]);
+ print_msg($header, $msg["text"], $msg["error"]);
}
}