Skip to content

Commit

Permalink
refs #514
Browse files Browse the repository at this point in the history
  * unix 개행문자로 수정
  • Loading branch information
inureyes committed Oct 27, 2008
1 parent 6aeddff commit ff7cf0a
Show file tree
Hide file tree
Showing 16 changed files with 6,753 additions and 6,753 deletions.
2 changes: 1 addition & 1 deletion interface/i/comment/comment/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
printIphoneNavigation($entry);
?>
</fieldset>
</div>
</div>
2 changes: 1 addition & 1 deletion interface/i/comment/delete/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
<?php
}
?>
</div>
</div>
2 changes: 1 addition & 1 deletion interface/i/comment/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
printIphoneNavigation($entry, false, true);
?>
</fieldset>
</div>
</div>
2 changes: 1 addition & 1 deletion interface/i/logout/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
Logout Successfully.
</div>
<a href="#" onclick="self.location.reload();" class="whiteButton margin-top10"><?php echo _text('Go to front page');?></a>
</div>
</div>
2 changes: 1 addition & 1 deletion interface/i/search/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
}

//printIphoneNavigation($entry, false, true);
?>
?>
118 changes: 59 additions & 59 deletions interface/m/pannels/index.php
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
<?php
/// Copyright (c) 2004-2008, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT)
define('__TEXTCUBE_MOBILE__', true);
require ROOT . '/library/includeForBlog.php';
requireView('mobileView');
list($entries, $paging) = getEntryWithPaging($blogid, $suri['id']);
$entry = $entries ? $entries[0] : null;
printMobileHtmlHeader(htmlspecialchars($blog['title']));
?>
<div id="pannels">
<!--
<h2><?php echo _t('카테고리');?></h2>
<?php echo getCategoriesView(getEntriesTotalCount($blogid), getCategories($blogid), true, true);?>
-->
<h2><?php echo _text('최근에 달린 댓글');?></h2>
<?php
$comments = getRecentComments($blogid);
if(count($comments) > 0)
echo '<ul>';
foreach ($comments as $comment) {
?>
<li><a href="<?php echo $blogURL;?>/comment/<?php echo $comment['entry'];?>"><?php echo htmlspecialchars($comment['comment']);?></a><br /><?php echo htmlspecialchars($comment['name']);?> (<?php echo Timestamp::format2($comment['written']);?>)</li>
<?php
}
if(count($comments) > 0)
echo '</ul>';
?>
<h2><?php echo _text('최근에 걸린글');?></h2>
<?php
$trackbacks = getRecentTrackbacks($blogid);
if(count($trackbacks) > 0)
echo '<ul>';
foreach ($trackbacks as $trackback) {
?>
<li><a href="<?php echo $blogURL;?>/trackback/<?php echo $trackback['entry'];?>"><?php echo htmlspecialchars($trackback['subject']);?></a><br /><?php echo htmlspecialchars($trackback['site']);?> (<?php echo Timestamp::format2($trackback['written']);?>)</li>
<?php
}
if(count($trackbacks) > 0)
echo '</ul>';
?>
<!--
<h2><?php echo _text('글 보관함');?></h2>
<ul>
<?php
foreach (getArchives($blogid) as $archive) {
?>
<li><a href="<?php echo $blogURL;?>/archive/<?php echo $archive['period'];?>"><?php echo getPeriodLabel($archive['period']);?></a> (<?php echo $archive['count'];?>)</li>
<?php
}
?>
</ul>
-->
</div>
<?php
printMobileNavigation($entry);
printMobileHtmlFooter();
?>
<?php
/// Copyright (c) 2004-2008, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT)
define('__TEXTCUBE_MOBILE__', true);
require ROOT . '/library/includeForBlog.php';
requireView('mobileView');
list($entries, $paging) = getEntryWithPaging($blogid, $suri['id']);
$entry = $entries ? $entries[0] : null;
printMobileHtmlHeader(htmlspecialchars($blog['title']));
?>
<div id="pannels">
<!--
<h2><?php echo _t('카테고리');?></h2>
<?php echo getCategoriesView(getEntriesTotalCount($blogid), getCategories($blogid), true, true);?>
-->
<h2><?php echo _text('최근에 달린 댓글');?></h2>
<?php
$comments = getRecentComments($blogid);
if(count($comments) > 0)
echo '<ul>';
foreach ($comments as $comment) {
?>
<li><a href="<?php echo $blogURL;?>/comment/<?php echo $comment['entry'];?>"><?php echo htmlspecialchars($comment['comment']);?></a><br /><?php echo htmlspecialchars($comment['name']);?> (<?php echo Timestamp::format2($comment['written']);?>)</li>
<?php
}
if(count($comments) > 0)
echo '</ul>';
?>
<h2><?php echo _text('최근에 걸린글');?></h2>
<?php
$trackbacks = getRecentTrackbacks($blogid);
if(count($trackbacks) > 0)
echo '<ul>';
foreach ($trackbacks as $trackback) {
?>
<li><a href="<?php echo $blogURL;?>/trackback/<?php echo $trackback['entry'];?>"><?php echo htmlspecialchars($trackback['subject']);?></a><br /><?php echo htmlspecialchars($trackback['site']);?> (<?php echo Timestamp::format2($trackback['written']);?>)</li>
<?php
}
if(count($trackbacks) > 0)
echo '</ul>';
?>
<!--
<h2><?php echo _text('글 보관함');?></h2>
<ul>
<?php
foreach (getArchives($blogid) as $archive) {
?>
<li><a href="<?php echo $blogURL;?>/archive/<?php echo $archive['period'];?>"><?php echo getPeriodLabel($archive['period']);?></a> (<?php echo $archive['count'];?>)</li>
<?php
}
?>
</ul>
-->
</div>
<?php
printMobileNavigation($entry);
printMobileHtmlFooter();
?>
42 changes: 21 additions & 21 deletions interface/owner/entry/attachmulti/index.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?php
/// Copyright (c) 2004-2008, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT)
$IV = array(
'FILES' => array(
'Filedata' => array('file')
),
'GET' => array(
'TSSESSION' => array( 'string' , 'default' => null)
)
);

if (!empty($_GET['TSSESSION']))
$_COOKIE['TSSESSION'] = $_GET['TSSESSION'];
require ROOT . '/library/includeForBlogOwner.php';
requireModel("blog.attachment");
$file = array_pop($_FILES);
$attachment = addAttachment($blogid, $suri['id'], $file);
echo "&success";
?>
<?php
/// Copyright (c) 2004-2008, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT)
$IV = array(
'FILES' => array(
'Filedata' => array('file')
),
'GET' => array(
'TSSESSION' => array( 'string' , 'default' => null)
)
);

if (!empty($_GET['TSSESSION']))
$_COOKIE['TSSESSION'] = $_GET['TSSESSION'];
require ROOT . '/library/includeForBlogOwner.php';
requireModel("blog.attachment");
$file = array_pop($_FILES);
$attachment = addAttachment($blogid, $suri['id'], $file);
echo "&success";
?>
2 changes: 1 addition & 1 deletion language/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -1988,4 +1988,4 @@
$__text['휴지통에 버려진 댓글은 15일이 지나면 자동으로 지워집니다. 광고 댓글의 차단 및 분석을 위하여 휴지통의 데이터를 사용하는 플러그인이 있을 수 있으므로 수동으로 지우지 않는 것을 권장합니다.'] = 'Comments and guesbooks moved to the trash will be automatically deleted after 15 days. Deleting comments manually is not recommended as some anti-spam plugin might need to access the trash for the purpose.';
$__text['휴지통의 걸린글을 한 번에 삭제합니다.'] = 'Delete every thrown trackbacks at once.';
$__text['휴지통의 댓글을 한 번에 삭제합니다.'] = 'Delete every thrown comments at once.';
?>
?>
Loading

0 comments on commit ff7cf0a

Please sign in to comment.