summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-08-07 08:39:36 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-08-07 08:39:36 +0000
commitf23c24c8a31ea3787d5039d36de56001f731e22a (patch)
tree44b3fbd1ad9416adf42cdcf2f4f901b3b450e991 /themes
parentb996a7d30d002c160246624c882d8188efd3aa9b (diff)
downloadbrdo-f23c24c8a31ea3787d5039d36de56001f731e22a.tar.gz
brdo-f23c24c8a31ea3787d5039d36de56001f731e22a.tar.bz2
#164935 by Ralf Stamm: standardize CVS Id tags in files:
- always include CVS Id tags in all files - add a new line after the CVS Id, if more code or phpdoc follows in the same code block - fix bogus Id tags previously added
Diffstat (limited to 'themes')
-rw-r--r--themes/bluemarine/block.tpl.php3
-rw-r--r--themes/bluemarine/box.tpl.php3
-rw-r--r--themes/bluemarine/comment.tpl.php3
-rw-r--r--themes/bluemarine/node.tpl.php3
-rw-r--r--themes/bluemarine/page.tpl.php4
-rw-r--r--themes/garland/block.tpl.php3
-rw-r--r--themes/garland/comment.tpl.php3
-rw-r--r--themes/garland/node.tpl.php3
-rw-r--r--themes/garland/page.tpl.php4
-rw-r--r--themes/pushbutton/block.tpl.php3
-rw-r--r--themes/pushbutton/box.tpl.php3
-rw-r--r--themes/pushbutton/comment.tpl.php3
-rw-r--r--themes/pushbutton/node.tpl.php3
-rw-r--r--themes/pushbutton/page.tpl.php4
14 files changed, 42 insertions, 3 deletions
diff --git a/themes/bluemarine/block.tpl.php b/themes/bluemarine/block.tpl.php
index 75f2708a5..02ec48cf1 100644
--- a/themes/bluemarine/block.tpl.php
+++ b/themes/bluemarine/block.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="block block-<?php print $block->module; ?>" id="block-<?php print $block->module; ?>-<?php print $block->delta; ?>">
<h2 class="title"><?php print $block->subject; ?></h2>
<div class="content"><?php print $block->content; ?></div>
diff --git a/themes/bluemarine/box.tpl.php b/themes/bluemarine/box.tpl.php
index a66bd27df..c1ca328a7 100644
--- a/themes/bluemarine/box.tpl.php
+++ b/themes/bluemarine/box.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="box">
<?php if ($title) { ?><h2 class="title"><?php print $title; ?></h2><?php } ?>
<div class="content"><?php print $content; ?></div>
diff --git a/themes/bluemarine/comment.tpl.php b/themes/bluemarine/comment.tpl.php
index b73b7aef3..1aa1e193a 100644
--- a/themes/bluemarine/comment.tpl.php
+++ b/themes/bluemarine/comment.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="comment<?php if (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
<?php if ($picture) {
print $picture;
diff --git a/themes/bluemarine/node.tpl.php b/themes/bluemarine/node.tpl.php
index fd96e1521..4a6e1fabf 100644
--- a/themes/bluemarine/node.tpl.php
+++ b/themes/bluemarine/node.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
<?php if ($picture) {
print $picture;
diff --git a/themes/bluemarine/page.tpl.php b/themes/bluemarine/page.tpl.php
index 2f101ddf1..6cc707df3 100644
--- a/themes/bluemarine/page.tpl.php
+++ b/themes/bluemarine/page.tpl.php
@@ -1,4 +1,6 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<?php
+// $Id$
+?><!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" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
<head>
diff --git a/themes/garland/block.tpl.php b/themes/garland/block.tpl.php
index 89a9ab1d9..1b7ae308e 100644
--- a/themes/garland/block.tpl.php
+++ b/themes/garland/block.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
<?php if (!empty($block->subject)): ?>
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index 6364021a8..07ea0bca6 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>">
<div class="clear-block">
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
index 8c267d671..5dbdd1463 100644
--- a/themes/garland/node.tpl.php
+++ b/themes/garland/node.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
<?php print $picture ?>
diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php
index bba6c898c..9e4c27d71 100644
--- a/themes/garland/page.tpl.php
+++ b/themes/garland/page.tpl.php
@@ -1,4 +1,6 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+<?php
+// $Id$
+?><!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="<?php print $language->language ?>" lang="<?php print $language->language ?>">
<head>
diff --git a/themes/pushbutton/block.tpl.php b/themes/pushbutton/block.tpl.php
index 782ed5098..0e2978e6d 100644
--- a/themes/pushbutton/block.tpl.php
+++ b/themes/pushbutton/block.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="<?php print "block block-$block->module" ?>" id="<?php print "block-$block->module-$block->delta"; ?>">
<div class="title"><h3><?php print $block->subject ?></h3></div>
<div class="content"><?php print $block->content ?></div>
diff --git a/themes/pushbutton/box.tpl.php b/themes/pushbutton/box.tpl.php
index cf48ffa13..0374ba64f 100644
--- a/themes/pushbutton/box.tpl.php
+++ b/themes/pushbutton/box.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="box">
<?php if ($title): ?>
<h2 class="title"><?php print $title ?></h2>
diff --git a/themes/pushbutton/comment.tpl.php b/themes/pushbutton/comment.tpl.php
index dba7452d5..5311b6aed 100644
--- a/themes/pushbutton/comment.tpl.php
+++ b/themes/pushbutton/comment.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="comment<?php if ($comment->status == COMMENT_NOT_PUBLISHED) print ' comment-unpublished'; ?>">
<?php if ($picture) : ?>
<?php print $picture ?>
diff --git a/themes/pushbutton/node.tpl.php b/themes/pushbutton/node.tpl.php
index 08524d7d6..c464011ce 100644
--- a/themes/pushbutton/node.tpl.php
+++ b/themes/pushbutton/node.tpl.php
@@ -1,3 +1,6 @@
+<?php
+// $Id$
+?>
<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>">
<?php print $picture ?>
<?php if ($page == 0): ?>
diff --git a/themes/pushbutton/page.tpl.php b/themes/pushbutton/page.tpl.php
index 027bd026c..49a55b80f 100644
--- a/themes/pushbutton/page.tpl.php
+++ b/themes/pushbutton/page.tpl.php
@@ -1,4 +1,6 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<?php
+// $Id$
+?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
<head>
<title><?php print $head_title ?></title>