Skip to content

Commit

Permalink
Import from CVS
Browse files Browse the repository at this point in the history
  • Loading branch information
garvinhicking committed Dec 13, 2011
1 parent fb17c80 commit ed643e0
Show file tree
Hide file tree
Showing 2,696 changed files with 112,421 additions and 0 deletions.
Binary file added 1024px/1024px_screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions 1024px/UTF-8/lang_cs.inc.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php # lang_cs.inc.php 1.0 2009-08-14 20:09:26 VladaAjgl $

/**
* @version 1.0
* @author Vladimír Ajgl <[email protected]>
* @translated 2009/08/14
*/@define('SAYS', 'říká');
@define('SORRY', 'Omluva');
@define('DATE_FORMAT_ENTRY_ANDREAS', '%a, %b %e. %Y');
@define('STICKY_POST', 'Přilepený:');
@define('STATIC_POST', 'Statický:');
@define('NAV_LINK_TEXT', 'Odkaz v navigačním pruhu');
@define('NAV_LINK_DESC', 'Zadejte text odkazu');
@define('NAV_LINK_URL', 'URL adresa odkazu');
@define('NAV_LINK_URL_DESC', 'Zadejte plnou URL adresu, na kterou má mířit odkaz.');
@define('NAV_DEFAULT_0', 'O stránkách');
@define('NAV_DEFAULT_1', 'Kontakt');
@define('NAV_DEFAULT_2', 'RSS');
?>
19 changes: 19 additions & 0 deletions 1024px/UTF-8/lang_cz.inc.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php # lang_cz.inc.php 1.0 2009-08-14 20:09:26 VladaAjgl $

/**
* @version 1.0
* @author Vladimír Ajgl <[email protected]>
* @translated 2009/08/14
*/@define('SAYS', 'říká');
@define('SORRY', 'Omluva');
@define('DATE_FORMAT_ENTRY_ANDREAS', '%a, %b %e. %Y');
@define('STICKY_POST', 'Přilepený:');
@define('STATIC_POST', 'Statický:');
@define('NAV_LINK_TEXT', 'Odkaz v navigačním pruhu');
@define('NAV_LINK_DESC', 'Zadejte text odkazu');
@define('NAV_LINK_URL', 'URL adresa odkazu');
@define('NAV_LINK_URL_DESC', 'Zadejte plnou URL adresu, na kterou má mířit odkaz.');
@define('NAV_DEFAULT_0', 'O stránkách');
@define('NAV_DEFAULT_1', 'Kontakt');
@define('NAV_DEFAULT_2', 'RSS');
?>
16 changes: 16 additions & 0 deletions 1024px/comments.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{foreach from=$comments item=comment name="comments"}
<a id="c{$comment.id}"></a>
<div class="serendipity_comment serendipity_comment_author_{$comment.author|@makeFilename} {if $entry.author == $comment.author}serendipity_comment_author_self{/if} {cycle values="oddbox, evenbox"}" style="padding-left: {$comment.depth*20}px">
<p>{if $comment.url}
<a href="#c{$comment.id}" title="{$CONST.LINK_TO_COMMENT|sprintf:$comment.trace}">#{$comment.trace}</a> - <a href="{$comment.url}" target="_blank">{$comment.author|@default:$CONST.ANONYMOUS}</a> {$CONST.SAYS}:<br />
{else}
<a href="#c{$comment.id}" title="{$CONST.LINK_TO_COMMENT|sprintf:$comment.trace}">#{$comment.trace}</a> - {$comment.author|@default:$CONST.ANONYMOUS}
{/if} {$comment.timestamp|@formatTime:$CONST.DATE_FORMAT_SHORT} - {if $entry.allow_comments}
(<a href="#serendipity_CommentForm" onclick="document.getElementById('serendipity_replyTo').value='{$comment.id}';">{$CONST.REPLY}</a>) {/if}{if $entry.is_entry_owner}
(<a href="{$comment.link_delete}" onclick="return confirm('{$CONST.COMMENT_DELETE_CONFIRM|@sprintf:$comment.id:$comment.author}');">{$CONST.DELETE}</a>)
{/if}</p>
<p>{$comment.body}</p>
</div>
{foreachelse}
<p class="nocomments">{$CONST.NO_COMMENTS}</p>
{/foreach}
69 changes: 69 additions & 0 deletions 1024px/config.inc.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?php # $Id: config.inc.php,v 1.5 2006/11/14 09:13:21 garvinhicking Exp $

$probelang = dirname(__FILE__) . '/lang_' . $serendipity['lang'] . '.inc.php';
if (file_exists($probelang)) {
include $probelang;
} else {
include dirname(__FILE__) . '/lang_en.inc.php';
}
$template_config = array(
array(
'var' => 'colorset',
'description' => 'Select colorset option',
'type' => 'select',
'default' => 'blue',
'select_values' => array('default' => 'Blue', 'red' => 'Red')
),
array(
'var' => 'contentposition',
'title' => 'Sidebar Position',
'description' => 'Sidebar left or right',
'type' => 'radio',
'radio' => array('value' => array('true', 'false'),
'desc' => array('Left', 'Right')),
'default' => 'true',
),
array(
'var' => 'sitename',
'title' => 'Your Business Name',
'description' => 'Enter the year and business name',
'type' => 'string',
'default' => '2006 Your Business Name',
),
array(
'var' => 'amount',
'name' => 'Number of navlinks',
'description' => 'Enter the number of navlinks you want to use in the navbar.',
'type' => 'string',
'default' => '3',
),
);
if (version_compare($serendipity['version'],"1.1.beta3") >= 0) {
$vars = serendipity_loadThemeOptions($template_config);

$navlinks = array();

for ($i = 0; $i < $vars['amount']; $i++) {
$navlinks[] = array(
'title' => $vars['navlink' . $i . 'text'],
'href' => $vars['navlink' . $i . 'url']
);
$template_config[] = array(
'var' => 'navlink' . $i . 'text',
'name' => NAV_LINK_TEXT . ' #' . $i,
'description' => NAV_LINK_DESC . ' #' .$i,
'type' => 'string',
'default' => constant('NAV_DEFAULT_' . $i),
);
$template_config[] = array(
'var' => 'navlink' . $i . 'url',
'name' => NAV_LINK_URL . ' #' . $i,
'description' => NAV_LINK_URL_DESC . ' #' . $i,
'type' => 'string',
'default' => '#',
);
}

$serendipity['smarty']->assign_by_ref('navlinks', $navlinks);
}
?>
22 changes: 22 additions & 0 deletions 1024px/content.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!-- CONTENT START -->

{if $searchresult_tooShort}
<h2 class="serendipity_date">{$CONST.QUICKSEARCH}</h2>
<div class="serendipity_search serendipity_search_tooshort">{$content_message}</div>
{elseif $searchresult_error}
<h2 class="serendipity_date">{$CONST.QUICKSEARCH}</h2>
<div class="serendipity_search serendipity_search_error">{$content_message}</div>
{elseif $searchresult_noEntries}
<h2 class="serendipity_date">{$CONST.QUICKSEARCH}</h2>
<div class="serendipity_search serendipity_search_noentries">{$content_message}</div>
{elseif $searchresult_results}
<h2 class="serendipity_date">{$CONST.QUICKSEARCH}</h2>
<div class="serendipity_search serendipity_search_results">{$content_message}</div>
{else}
<div class="serendipity_content_message">{$content_message}</div>
{/if}

{$ENTRIES}
{$ARCHIVES}

<!-- CONTENT END -->
195 changes: 195 additions & 0 deletions 1024px/entries.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
<!-- ENTRIES START -->
{serendipity_hookPlugin hook="entries_header" addData="$entry_id"}

{foreach from=$entries item="dategroup"}
<div class="serendipity_Entry_Date">
{foreach from=$dategroup.entries item="entry"}
<h2 class="serendipity_title">
<a href="{$entry.link}">{$entry.title|@default:$entry.id}</a>
<span class="fade">{if $dategroup.is_sticky}
{$CONST.STICKY_POST}
{else}
{$entry.timestamp|@formatTime:DATE_FORMAT_ENTRY_ANDREAS}
{/if}</span></h2>
<div class="serendipity_entry serendipity_entry_author_{$entry.author|@makeFilename} {if $entry.is_entry_owner}serendipity_entry_author_self{/if}">
{if $entry.categories}
<span class="serendipity_entryIcon">
{foreach from=$entry.categories item="category"}
{if $category.category_icon}
<a href="{$category.category_link}"><img class="serendipity_entryIcon" title="{$category.category_name|@escape}{$category.category_description|@emptyPrefix}" alt="{$category.category_name|@escape}" src="{$category.category_icon}" /></a>
{/if}
{/foreach}
</span>
{/if}
<div class="serendipity_entry_body">
{$entry.multilingual_footer}{$entry.body}{if $entry.has_extended and not $is_single_entry and not $entry.is_extended}
<p class="readmore"><a href="{$entry.link}#extended">{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$entry.title}</a> &raquo;</p>
{/if}
</div>

{if $entry.is_extended}
<div class="serendipity_entry_extended"><a id="extended"></a>{$entry.extended}</div>
{/if}
<div class='serendipity_entryFooter'>
{$CONST.POSTED_BY} <a href="{$entry.link_author}">{$entry.author}</a>
{if $entry.categories}
{$CONST.IN} {foreach from=$entry.categories item="category" name="categories"} <a href="{$category.category_link}">{$category.category_name|@escape}</a>{if not $smarty.foreach.categories.last}, {/if}{/foreach}
{/if}
{if $entry.has_comments}
{if $use_popups}
{$entry.label_comments}: <a href="{$entry.link_popup_comments}" onclick="window.open(this.href, 'comments', 'width=480,height=480,scrollbars=yes'); return false;">({$entry.comments})</a>
{else}
{$entry.label_comments}: <a href="{$entry.link}#comments">({$entry.comments})</a>
{/if}
{/if}

{if $entry.has_trackbacks}
{if $use_popups}
{$entry.label_trackbacks}: <a href="{$entry.link_popup_trackbacks}" onclick="window.open(this.href, 'comments', 'width=480,height=480,scrollbars=yes'); return false;">({$entry.trackbacks})</a>
{else}
{$entry.label_trackbacks}: <a href="{$entry.link}#trackbacks">({$entry.trackbacks})</a>
{/if}
{/if}
{if $entry.is_entry_owner and not $is_preview}
- <a href="{$entry.link_edit}">{$CONST.EDIT_ENTRY}</a>
{/if}

{$entry.add_footer}
</div>
</div>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
rdf:about="{$entry.link_rdf}"
trackback:ping="{$entry.link_trackback}"
dc:title="{$entry.title_rdf|@default:$entry.title}"
dc:identifier="{$entry.rdf_ident}" />
</rdf:RDF>
-->
{$entry.plugin_display_dat}

{if $is_single_entry and not $use_popups and not $is_preview}
{if $CONST.DATA_UNSUBSCRIBED}
<br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_UNSUBSCRIBED|@sprintf:$CONST.UNSUBSCRIBE_OK}</div><br />
{/if}

{if $CONST.DATA_TRACKBACK_DELETED}
<br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_TRACKBACK_DELETED|@sprintf:$CONST.TRACKBACK_DELETED}</div><br />
{/if}

{if $CONST.DATA_TRACKBACK_APPROVED}
<br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_TRACKBACK_APPROVED|@sprintf:$CONST.TRACKBACK_APPROVED}</div><br />
{/if}

{if $CONST.DATA_COMMENT_DELETED}
<br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_COMMENT_DELETED|@sprintf:$CONST.COMMENT_DELETED}</div><br />
{/if}

{if $CONST.DATA_COMMENT_APPROVED}
<br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_COMMENT_APPROVED|@sprintf:$CONST.COMMENT_APPROVED}</div><br />
{/if}

{/if}

{if $is_single_entry and not $is_preview}
<div class="serendipity_comments serendipity_section_trackbacks">
<br />
<a id="trackbacks"></a>
<div class="serendipity_commentsTitle">{$CONST.TRACKBACKS}</div>
<div class="serendipity_center">
<a rel="nofollow" style="font-weight: normal" href="{$entry.link_trackback}" onclick="alert('{$CONST.TRACKBACK_SPECIFIC_ON_CLICK|@escape:html}'); return false;" title="{$CONST.TRACKBACK_SPECIFIC_ON_CLICK|@escape}">{$CONST.TRACKBACK_SPECIFIC}</a>
</div>
<br />
{serendipity_printTrackbacks entry=$entry.id}
</div>
<div class="serendipity_comments serendipity_section_comments">
<br />
<a id="comments"></a>
<div class="serendipity_commentsTitle">{$CONST.COMMENTS}</div>
<div class="serendipity_center">{$CONST.DISPLAY_COMMENTS_AS}
{if $entry.viewmode eq $CONST.VIEWMODE_LINEAR}
({$CONST.COMMENTS_VIEWMODE_LINEAR} | <a href="{$entry.link_viewmode_threaded}#comments">{$CONST.COMMENTS_VIEWMODE_THREADED}</a>)
{else}
(<a href="{$entry.link_viewmode_linear}#comments">{$CONST.COMMENTS_VIEWMODE_LINEAR}</a> | {$CONST.COMMENTS_VIEWMODE_THREADED})
{/if}
</div>
<br />
{serendipity_printComments entry=$entry.id mode=$entry.viewmode}

{if $entry.is_entry_owner}
{if $entry.allow_comments}
<div class="serendipity_center">(<a href="{$entry.link_deny_comments}">{$CONST.COMMENTS_DISABLE}</a>)</div>
{else}
<div class="serendipity_center">(<a href="{$entry.link_allow_comments}">{$CONST.COMMENTS_ENABLE}</a>)</div>
{/if}
{/if}
<a id="feedback"></a>

{foreach from=$comments_messagestack item="message"}
<div class="serendipity_center serendipity_msg_important">{$message}</div>
{/foreach}

{if $is_comment_added}

<br />
<div class="serendipity_center serendipity_msg_notice">{$CONST.COMMENT_ADDED}</div>

{elseif $is_comment_moderate}

<br />
<div class="serendipity_center serendipity_msg_notice">{$CONST.COMMENT_ADDED}<br />{$CONST.THIS_COMMENT_NEEDS_REVIEW}</div>

{elseif not $entry.allow_comments}

<br />
<div class="serendipity_center serendipity_msg_important">{$CONST.COMMENTS_CLOSED}</div>

{else}

<br />
<div class="serendipity_section_commentform">
<div class="serendipity_commentsTitle">{$CONST.ADD_COMMENT}</div>
{$COMMENTFORM}
</div>

{/if}
</div>
{/if}

{$entry.backend_preview}
{/foreach}
</div>
{foreachelse}
{if not $plugin_clean_page}
<div class="serendipity_overview_noentries">{$CONST.NO_ENTRIES_TO_PRINT}</div>
{/if}
{/foreach}

<div class='serendipity_pageFooter' style="text-align: center">
{serendipity_hookPlugin hook="entries_footer"}
{if $footer_info}
{if $footer_prev_page}
<a href="{$footer_prev_page}">&laquo; {$CONST.PREVIOUS_PAGE}</a>&#160;&#160;
{else}
<span class="fade">&laquo; {$CONST.PREVIOUS_PAGE}</span>&#160;&#160;
{/if}
{else}
{/if}

{if $footer_info}
({$footer_info})
{/if}

{if $footer_info}
{if $footer_next_page}
&#160;&#160;<a href="{$footer_next_page}">{$CONST.NEXT_PAGE} &raquo;</a>
{else}
&#160;&#160;<span class="fade">{$CONST.NEXT_PAGE} &raquo;</span>
{/if}
{else}
{/if}

</div>
<!-- ENTRIES END -->
Binary file added 1024px/img/background.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 1024px/img/xml.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ed643e0

Please sign in to comment.