-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* unix 개행문자로 수정
- Loading branch information
Showing
16 changed files
with
6,753 additions
and
6,753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ | |
printIphoneNavigation($entry); | ||
?> | ||
</fieldset> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ | |
<?php | ||
} | ||
?> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
printIphoneNavigation($entry, false, true); | ||
?> | ||
</fieldset> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,4 +58,4 @@ | |
} | ||
|
||
//printIphoneNavigation($entry, false, true); | ||
?> | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.