Skip to content

Commit 5741ab7

Browse files
committed
Initial commit
0 parents  commit 5741ab7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3344
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*/**/_notes/
2+
garland-removed/
3+
4+
5+

application.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
$(document).ready( function() {
2+
var msgdiv = $('div#messages');
3+
//if(!msgdiv.hasClass('error')) {
4+
msgdiv.slideUp();
5+
//}
6+
});
7+
8+
function printDateDiv(year, month, day) {
9+
var months = [ "január", "február", "március", "április", "május", "június",
10+
"július", "Augusztus", "szeptember", "október", "november", "december" ];
11+
var days = [ "vasárnap", "hétfo", "kedd", "szerda", "csütörtök", "péntek", "szombat"];
12+
13+
var date = new Date();
14+
if(year) date.setFullYear(year, month - 1, day);
15+
var m_year = date.getFullYear();
16+
var m_month = date.getMonth() + 1;
17+
var m_day = date.getDate();
18+
document.write('<p class="date month' + m_month + '" title="' + m_year + '. ' + months[month - 1] + ' ' + m_day + '">' + m_day + '</p>');
19+
}

block.tpl.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
// $Id: block.tpl.php,v 1.3 2007/08/07 08:39:36 goba Exp $
3+
?>
4+
<div id="box-<?php print $block->module .'-'. $block->delta; ?>" class="clear-block box box-<?php print $block->module ?>">
5+
6+
7+
<?php if (!empty($block->subject)): ?>
8+
<h2 class="boxhead"><?php print $block->subject ?></h2>
9+
<?php endif;?>
10+
<div class="boxbody">
11+
<?php print $block->content ?>
12+
</div>
13+
</div>

comment.tpl.php

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?php
2+
// $Id: comment.tpl.php,v 1.10 2008/01/04 19:24:24 goba Exp $
3+
?>
4+
<div class="comment<?php print ($comment->new) ? ' comment-new' : '';
5+
print ' ' . $status;
6+
print ' ' . $zebra; ?>">
7+
8+
<div class="commenthead">
9+
<?php print $picture; ?>
10+
<p class="commentuser"><?php print $author; ?></p>
11+
<p class="commentdate">
12+
<?php print $date; ?>
13+
<?php if ($comment->new) : print '(' . drupal_ucfirst($new) . ')';
14+
endif; ?>
15+
</p>
16+
17+
<br class="clear" />
18+
19+
</div>
20+
<div class="commentbody">
21+
<?php print $content ?>
22+
<?php if ($signature): ?>
23+
<div class="sign"><?php print $signature ?></div>
24+
<?php endif; ?>
25+
</div>
26+
27+
<?php if ($links): ?>
28+
<div class="commentfoot">
29+
<?php print $links ?><?php print l('permalink','', array( 'fragment' => 'comment-' . $comment->cid, 'external' => TRUE)); ?>
30+
</div>
31+
<?php endif; ?>
32+
</div>

favicon.ico

894 Bytes
Binary file not shown.

favicon.png

935 Bytes
Loading

fix-ie-rtl.css

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/* $Id: fix-ie-rtl.css,v 1.2 2007/11/09 22:14:41 goba Exp $ */
2+
3+
body {
4+
/* Center layout */
5+
text-align: center;
6+
/* Allow text resizing */
7+
font-size: 80%;
8+
}
9+
10+
#squeeze {
11+
zoom: 1;
12+
direction: ltr;
13+
}
14+
15+
#squeeze .left-corner{
16+
direction: rtl
17+
}
18+
19+
#header-region, #wrapper #container {
20+
/* Reset text alignment */
21+
text-align: right;
22+
}
23+
24+
#wrapper #container #center {
25+
/* Reduce amount of damage done by extremely wide content */
26+
overflow: hidden;
27+
}
28+
29+
#wrapper #container #center .right-corner .left-corner {
30+
/* Because of the lack of min-height, we use height as an alternative */
31+
height: 400px;
32+
}
33+
34+
fieldset {
35+
/* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
36+
background: none;
37+
}
38+
39+
/* Prevent fieldsets from shifting when changing collapsed state. */
40+
html.js fieldset.collapsible {
41+
position: relative;
42+
top: -1em;
43+
}
44+
45+
html.js fieldset.collapsed {
46+
top: 0;
47+
margin-bottom: 1em;
48+
}
49+
50+
tr.menu-disabled {
51+
/* Use filter to emulate CSS3 opacity */
52+
filter: alpha(opacity=50);
53+
}
54+
55+
#header-region {
56+
/* Because of the lack of min-height, we use height as an alternative */
57+
height: 1em;
58+
}
59+
60+
#attach-hide label, #uploadprogress div.message {
61+
/* Fading elements in IE causes the text to bleed unless they have a background. */
62+
background-color: #ffffff;
63+
}

fix-ie.css

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* $Id: fix-ie.css,v 1.8.2.1 2008/02/05 09:27:26 goba Exp $ */
2+
3+
/**
4+
* Garland, for Drupal 6.x
5+
* Stefan Nagtegaal, iStyledThis [dot] nl
6+
* Steven Wittens, acko [dot] net
7+
*/
8+
9+
body {
10+
/* Center layout */
11+
text-align: center;
12+
/* Allow text resizing */
13+
font-size: 80%;
14+
}
15+
16+
#header-region, #wrapper #container {
17+
/* Reset text alignment */
18+
text-align: left; /* LTR */
19+
}
20+
21+
#wrapper #container #center {
22+
/* Reduce amount of damage done by extremely wide content */
23+
overflow: hidden;
24+
}
25+
26+
#wrapper #container #center .right-corner .left-corner {
27+
/* Because of the lack of min-height, we use height as an alternative */
28+
height: 400px;
29+
}
30+
31+
fieldset {
32+
/* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
33+
background: none;
34+
}
35+
36+
ul.primary {
37+
/* Fix missing top margin */
38+
position: relative; /* LTR */
39+
/* top: 0.5em; */
40+
}
41+
42+
/* Prevent fieldsets from shifting when changing collapsed state. */
43+
html.js fieldset.collapsible {
44+
position: relative;
45+
top: -1em;
46+
}
47+
html.js fieldset.collapsed {
48+
top: 0;
49+
margin-bottom: 1em;
50+
}
51+
52+
tr.menu-disabled {
53+
/* Use filter to emulate CSS3 opacity */
54+
filter: alpha(opacity=50);
55+
}
56+
57+
#header-region {
58+
/* Because of the lack of min-height, we use height as an alternative */
59+
height: 1em;
60+
}
61+
62+
tr.taxonomy-term-preview {
63+
filter: alpha(opacity=50);
64+
}
65+
66+
#attach-hide label, #uploadprogress div.message {
67+
/* Fading elements in IE causes the text to bleed unless they have a background. */
68+
background-color: #ffffff;
69+
}

forums.tpl.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
// $Id: forums.tpl.php,v 1.4 2007/08/07 08:39:35 goba Exp $
3+
4+
/**
5+
* @file forums.tpl.php
6+
* Default theme implementation to display a forum which may contain forum
7+
* containers as well as forum topics.
8+
*
9+
* Variables available:
10+
* - $links: An array of links that allow a user to post new forum topics.
11+
* It may also contain a string telling a user they must log in in order
12+
* to post.
13+
* - $forums: The forums to display (as processed by forum-list.tpl.php)
14+
* - $topics: The topics to display (as processed by forum-topic-list.tpl.php)
15+
* - $forums_defined: A flag to indicate that the forums are configured.
16+
*
17+
* @see template_preprocess_forums()
18+
* @see theme_forums()
19+
*/
20+
?>
21+
<?php if ($forums_defined): ?>
22+
<div id="forum" class="node">
23+
<div class="nodehead autoheight"><h2><?php print t('Forum') ?></h2></div>
24+
<div class="nodebody">
25+
<?php print theme('links', $links); ?>
26+
<?php print $forums; ?>
27+
<?php print $topics; ?>
28+
</div>
29+
</div>
30+
<?php endif; ?>

gentoo.info

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
; $Id: garland.info,v 1.5 2007/07/01 23:27:32 goba Exp $
2+
name = Gentoo
3+
description = Gentoo.org based
4+
version = VERSION
5+
core = 6.x
6+
engine = phptemplate
7+
stylesheets[all][] = style.css
8+
stylesheets[print][] = print.css
9+
10+
scripts[] = application.js
11+
12+
; Information added by drupal.org packaging script on 2010-08-11
13+
version = "6.19"
14+
project = "drupal"
15+
datestamp = "1281559292"
16+

images/bheader.png

420 Bytes
Loading

images/bubble.png

1.82 KB
Loading

images/footer.png

4.21 KB
Loading

images/month/01.gif

1.18 KB
Loading

images/month/02.gif

1.61 KB
Loading

images/month/03.gif

1.64 KB
Loading

images/month/04.gif

1.63 KB
Loading

images/month/05.gif

1.63 KB
Loading

images/month/06.gif

1.63 KB
Loading

images/month/07.gif

1.62 KB
Loading

images/month/08.gif

1.64 KB
Loading

images/month/09.gif

1.62 KB
Loading

images/month/10.gif

1.63 KB
Loading

images/month/11.gif

1.64 KB
Loading

images/month/12.gif

1.63 KB
Loading

images/nheader.png

1.07 KB
Loading

images/valid.png

415 Bytes
Loading

images/valid_orig.png

5.83 KB
Loading

listing-node-form.tpl.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<div class="node">
2+
<div class="nodehead">
3+
<h2><?php print $title; ?></h2>
4+
</div>
5+
<div class="nodebody">
6+
<?php drupal_render($form); ?>
7+
</div>
8+
</div>

logo.png

64.8 KB
Loading

logo_old.png

56 KB
Loading

maintenance-page.tpl.php

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?php
2+
// $Id: maintenance-page.tpl.php,v 1.3.2.1 2009/04/30 00:13:31 goba Exp $
3+
4+
/**
5+
* @file maintenance-page.tpl.php
6+
*
7+
* This is an override of the default maintenance page. Used for Garland and
8+
* Minnelli, this file should not be moved or modified since the installation
9+
* and update pages depend on this file.
10+
*
11+
* This mirrors closely page.tpl.php for Garland in order to share the same
12+
* styles.
13+
*/
14+
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
15+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
16+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
17+
<head>
18+
<?php print $head ?>
19+
<title><?php print $head_title ?></title>
20+
<?php print $styles ?>
21+
<?php print $scripts ?>
22+
<!--[if lt IE 7]>
23+
<?php print phptemplate_get_ie_styles(); ?>
24+
<![endif]-->
25+
</head>
26+
<body<?php print phptemplate_body_class($left, $right); ?>>
27+
28+
<!-- Layout -->
29+
<div id="header-region" class="clear-block"><?php print $header; ?></div>
30+
31+
<div id="wrapper">
32+
<div id="container" class="clear-block">
33+
34+
<div id="header">
35+
<div id="logo-floater">
36+
<?php
37+
// Prepare header
38+
$site_fields = array();
39+
if ($site_name) {
40+
$site_fields[] = check_plain($site_name);
41+
}
42+
if ($site_slogan) {
43+
$site_fields[] = check_plain($site_slogan);
44+
}
45+
$site_title = implode(' ', $site_fields);
46+
if ($site_fields) {
47+
$site_fields[0] = '<span>'. $site_fields[0] .'</span>';
48+
}
49+
$site_html = implode(' ', $site_fields);
50+
51+
if ($logo || $site_title) {
52+
print '<h1><a href="'. check_url($base_path) .'" title="'. $site_title .'">';
53+
if ($logo) {
54+
print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />';
55+
}
56+
print $site_html .'</a></h1>';
57+
}
58+
?>
59+
</div>
60+
61+
</div> <!-- /header -->
62+
63+
<?php if ($left): ?>
64+
<div id="sidebar-left" class="sidebar">
65+
<?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
66+
<?php print $left ?>
67+
</div>
68+
<?php endif; ?>
69+
70+
<div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
71+
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
72+
<?php print $help; ?>
73+
<?php print $messages; ?>
74+
<div class="clear-block">
75+
<?php print $content ?>
76+
</div>
77+
<div id="footer"><?php print $footer_message . $footer ?></div>
78+
</div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
79+
80+
<?php if ($right): ?>
81+
<div id="sidebar-right" class="sidebar">
82+
<?php print $right ?>
83+
</div>
84+
<?php endif; ?>
85+
86+
</div> <!-- /container -->
87+
</div>
88+
<!-- /layout -->
89+
90+
</body>
91+
</html>

node.tpl.php

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
// $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $
3+
?>
4+
5+
<div id="node-<?php print $node->nid; ?>" class="node<?php if($sticky) print ' sticky'; if(!$status) print ' node-unpublished'; ?>">
6+
<!-- picture -->
7+
<?php print $picture; ?>
8+
<div class="nodehead autoheight">
9+
<script type="text/javascript"><?php
10+
$d = getdate($node->created);
11+
$y = $d['year'];
12+
$m = $d['mon'];
13+
$dd = $d['mday'];
14+
$h = $d['hours'];
15+
$mm = $d['minutes'];
16+
$s = $d['seconds'];
17+
print 'printDateDiv(' . $y . ', ' . sprintf("%02d", $m) . ', ' . $dd . ');';
18+
?></script>
19+
20+
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
21+
<br class="clear" />
22+
</div>
23+
<div class="nodebody">
24+
<?php print $content; ?>
25+
</div>
26+
<div class="nodefoot">
27+
<?php if($taxonomy): ?>
28+
<div class="terms"><?php print t('Category:')?> <?php print $terms ?></div>
29+
<?php endif; ?>
30+
<div>
31+
<?php if($name): print '<strong>' . t('Published by: ') . '</strong> ' . $name . ","; endif; ?> <strong><?php print t('Time:'); ?></strong> <?php printf("%02d:%02d", $h, $mm); ?>
32+
33+
<?php if($links): ?>
34+
<?php print $links ?>
35+
<?php endif; ?>
36+
<?php if (user_access('administer nodes')): ?>
37+
<?php print l('Edit', 'node/' . $nid . '/edit'); ?>
38+
<?php endif; ?>
39+
</div>
40+
</div>
41+
</div><!-- /node -->

0 commit comments

Comments
 (0)