web/wp-content/plugins/wptouch/themes/default/comments.php
branchwordpress
changeset 123 561aa6d282f6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/wptouch/themes/default/comments.php	Mon Feb 01 09:51:57 2010 +0000
@@ -0,0 +1,135 @@
+<?php
+// Do not delete these lines
+	if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
+		die ('Please do not load this page directly. Thanks!');
+
+	if ( post_password_required() ) { ?>
+		<p class="nocomments"><?php _e( "This post is password protected. Enter the password to view comments.", "wptouch" ); ?></p>
+	<?php
+		return;
+	}
+?>
+
+<!-- You can start editing below here... but make a backup first!  -->
+
+<div id="comment_wrapper">
+<?php comments_number( __('', 'wptouch'), __('<h3 onclick="bnc_showhide_coms_toggle();" id="com-head"><img id="com-arrow" src="' . compat_get_plugin_url( 'wptouch' ) . '/themes/core/core-images/com_arrow.png" alt="arrow" />1 Comment</h3>', 'wptouch'), __('<h3 onclick="bnc_showhide_coms_toggle();" id="com-head"><img id="com-arrow" src="' . compat_get_plugin_url( 'wptouch' ) . '/themes/core/core-images/com_arrow.png" alt="arrow" />% Comments</h3>', 'wptouch') ); ?>
+
+	<ol class="commentlist" id="commentlist">
+		<?php if ($comments) : ?>
+			<?php foreach ($comments as $comment) : ?>
+				<?php if (get_comment_type() == "comment") { ?>
+					<li class="<?php  echo $oddcomment; ?>" id="comment-<?php comment_ID(); ?>">
+						<div class="comwrap">
+								<div class="comtop<?php if ($comment->comment_approved == '0') : echo ' preview'; endif; ?>">		
+									<?php if (bnc_is_gravatars_enabled()) { echo get_avatar( $comment, $size = '32', $default = '' . compat_get_plugin_url( 'wptouch' ) . '/themes/core/core-images/blank_gravatar.jpg' ); } ?>
+									<div class="com-author"><?php comment_author_link(); ?></div> 	<?php if ($comment->comment_approved == '0') : echo '<span>(moderation preview)</span>'; endif; ?>
+										<div class="comdater"><span><?php wptouch_moderate_comment_link(get_comment_ID()); ?></span>
+											<?php if (function_exists('time_since')) { 
+												echo time_since(abs(strtotime($comment->comment_date_gmt . " GMT")), time()) . " ago"; } else { the_time('F jS, Y'); 
+											} ?>	
+										</div>									
+
+								</div><!--end comtop-->
+								<div class="combody">  
+									<?php comment_text(); //delete_comment_link(get_comment_ID()); ?>
+								</div>
+						</div><!--end comwrap-->
+					</li>
+		
+			<?php
+				/* Changes every other comment to a different class */
+				if ('alt' == $oddcomment) $oddcomment = '';  else $oddcomment = 'alt'; ?>
+				<?php } ?>
+				<?php endforeach;
+				/* end for each comment */
+			?>
+	  </ol>
+
+  <?php else : // this is displayed if there are no comments so far  ?>
+  
+	  <?php if ('open' == $post->comment_status) : ?>
+		  <!-- If comments are open, but there are no comments. -->
+		  <li id="hidelist" style="display:none"></li>
+		  </ol>
+	  
+	  <?php else : // comments are closed  ?>
+		  <!-- If comments are closed. -->
+		  <li style="display:none"></li>
+		  </ol>
+		  <h3 class="result-text"><?php _e( 'Comments are closed.', 'wptouch' ); ?></h3>
+  
+  	<?php endif; ?><!--end comment status-->
+	<?php endif; ?>
+ 
+  <div id="textinputwrap">
+  	<?php if ('open' == $post->comment_status) : ?>
+		<?php if (get_option('comment_registration') && !$user_ID) : ?>
+			<center>
+			<h1>
+				<?php sprintf( __( 'You must %slogin</a> or %sregister</a> to comment', 'wptouch' ), '<a href="' . get_option('wpurl') . '/wp-login.php">', '<a href="' . get_option('wpurl') . '"/wp-register.php">') ; ?>
+			</h1>
+			</center>
+
+	<?php else : ?>
+  	
+	<?php $filename = ABSPATH . 'wp-load.php';
+	 if (bnc_is_ajax_coms_enabled() && file_exists($filename)) { ?>
+
+		<div id="refresher" style="display:none;">
+			<img src="<?php echo compat_get_plugin_url( 'wptouch' ); ?>/images/good.png" alt="checkmark" />
+			<h3><?php _e( "Comment added.", "wptouch" ); ?></h3>
+			&raquo; <a href="javascript:this.location.reload();"><?php _e( "Refresh the page", "wptouch" ); ?></a> <?php _e( "to post a new comment.", "wptouch" ); ?>
+		</div>
+			<form id="commentform" action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" onsubmit="$wptouch('#loading').fadeIn(100);var list = $wptouch('#commentlist'); var html = list.html(); var param = $wptouch('form').serialize(); $wptouch.ajax({url: '<?php echo compat_get_plugin_url( 'wptouch' ); ?>/themes/default/comments-ajax.php?' + param, success: function(data, status){ list.append(data); commentAdded(); }, type: 'get' }); return false;">
+
+	<?php } else { ?>
+
+		<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
+
+	<?php } ?>
+
+	<?php if ($user_ID) : ?>
+
+		<p class="logged"  id="respond"><?php _e( "Logged in as", "wptouch" ); ?> <a href="<?php bloginfo('wpurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>:</p>
+	
+	<?php else : ?>
+	
+		<h3 id="respond"><?php _e( "Leave A Comment", "wptouch" ); ?></h3>
+		<p>
+			<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
+			<label for="author"><?php _e( 'Name', 'wptouch' ); ?> <?php if ($req) echo "*"; ?></label>
+		</p>
+
+		<p>
+			<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
+			<label for="email"><?php _e( 'Mail (unpublished)', 'wptouch' ); ?> <?php if ($req) echo "*"; ?></label>
+		</p>
+	
+		<p>
+			<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
+			<label for="url"><?php _e( 'Website', 'wptouch' ); ?></label>
+		</p>
+
+	<?php endif; ?>
+		<?php do_action('comment_form', $post->ID); ?>
+		<p><textarea name="comment" id="comment" tabindex="4"></textarea></p>
+		
+		<p>
+			<input name="submit" type="submit" id="submit" tabindex="5" value="Publish" />
+			<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />		
+			<div id="loading" style="display:none">
+				<img src="<?php echo compat_get_plugin_url( 'wptouch' ); ?>/themes/core/core-images/comment-ajax-loader.gif" alt="" /> <p><?php _e( 'Publishing...', 'wptouch' ); ?></p>
+			</div>
+		</p>
+		<div id="errors" style="display:none">
+			<?php _e( "There was an error. Please refresh the page and try again.", "wptouch" ); ?>
+		</div>				
+		</form>
+
+	<?php endif; // If registration required and not logged in ?>
+
+  </div><!--textinputwrap div-->
+</div><!-- comment_wrapper -->
+
+<?php endif; // if you delete this the sky will fall on your head ?>
\ No newline at end of file