changeset 128:9f092b9be906

Updated spelling.
author Steve Kemp <steve@steve.org.uk>
date Thu, 20 Dec 2007 11:49:46 +0000
parents d9be5fecd7e5
children 613ad3447729
files bin/chronicle themes/blog.steve.org.uk/comment-loop.inc themes/blog.steve.org.uk/entry.template
diffstat 3 files changed, 26 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/bin/chronicle	Sun Dec 16 20:31:09 2007 +0000
+++ b/bin/chronicle	Thu Dec 20 11:49:46 2007 +0000
@@ -35,7 +35,7 @@
    --force       Force the copying of static files from the blog theme.
    --no-archive  Don't create an archive page.
    --no-cache    Don't use the optional memcached features, even if available.
-   --no-calander Don't use the optional calendar upon the index.
+   --no-calendar Don't use the optional calendar upon the index.
    --no-tags     Don't produce any tag pages.
    --lower-case  Lower-case all filenames which are output.
 
@@ -2125,7 +2125,7 @@
     eval( $test );
 
     #
-    #  If there was an error, or the calander is disabled then
+    #  If there was an error, or the calendar is disabled then
     # return undef.
     #
     if ( ( $@ ) || ( $CONFIG{'no-calendar'} ) )
--- a/themes/blog.steve.org.uk/comment-loop.inc	Sun Dec 16 20:31:09 2007 +0000
+++ b/themes/blog.steve.org.uk/comment-loop.inc	Thu Dec 20 11:49:46 2007 +0000
@@ -1,12 +1,12 @@
 <!-- tmpl_if name='comments' -->
  <h3 id="comments">Comments On This Entry</h3>
- <blockquote>
+
  <!-- tmpl_loop name='comments' -->
-  <div class="entry">
-  <div class="title"><!-- tmpl_var name='name' --></div>
-  <div class="date"><!-- tmpl_var name='date' --></div>
-  <div class="body"><!-- tmpl_var name='body' --></div>
-  </div>
+ <div class="bubble">
+  <blockquote>
+   <!-- tmpl_var name='body' -->
+  </blockquote>
+  <cite><strong><!-- tmpl_var name='name' --></strong> <!-- tmpl_var name='date' --></cite>
+ </div>
  <!-- /tmpl_loop -->
- </blockquote>
 <!-- /tmpl_if -->
--- a/themes/blog.steve.org.uk/entry.template	Sun Dec 16 20:31:09 2007 +0000
+++ b/themes/blog.steve.org.uk/entry.template	Thu Dec 20 11:49:46 2007 +0000
@@ -4,6 +4,23 @@
  <head>
   <title><!-- tmpl_var name='blog_title' -->: <!-- tmpl_var name='title' --></title>
   <link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='top' -->style.css">
+  <link rel="stylesheet" href="<!-- tmpl_var name='top' -->bubbles.css" type="text/css" media="screen" charset="utf-8" />
+  <script type="text/JavaScript" src="<!-- tmpl_var name='top' -->rounded_corners.inc.js"></script>
+  <script type="text/JavaScript">
+	  window.onload = function() {
+	      settings = {
+	          tl: { radius: 10 },
+	          tr: { radius: 10 },
+	          bl: { radius: 10 },
+	          br: { radius: 10 },
+	          antiAlias: true,
+	          autoPad: true
+	      }
+	      var myBoxObject = new curvyCorners(settings, "rounded");
+	      myBoxObject.applyCornersToAll();
+	  }
+	</script>
+
  </head>
  <body>