? .DS_Store
? .cvsignore
? theme_function_change.diff
? css/.DS_Store
Index: template.block-editing.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/Attic/template.block-editing.inc,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 template.block-editing.inc
--- template.block-editing.inc	23 Dec 2008 03:40:02 -0000	1.1.2.3
+++ template.block-editing.inc	29 Sep 2009 21:28:38 -0000
@@ -14,7 +14,7 @@
  * @param $hook
  *   The name of the template being rendered ("block" in this case.)
  */
-function phptemplate_preprocess_block_editing(&$vars, $hook) {
+function blueprint_preprocess_block_editing(&$vars, $hook) {
   $block = $vars['block'];
   // Display 'edit block' for custom blocks.
   if ($block->module == 'block') {
Index: template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/template.php,v
retrieving revision 1.15.2.1.2.17
diff -u -r1.15.2.1.2.17 template.php
--- template.php	19 Mar 2009 13:05:12 -0000	1.15.2.1.2.17
+++ template.php	29 Sep 2009 21:28:38 -0000
@@ -14,7 +14,7 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
-function phptemplate_preprocess_page(&$vars) {
+function blueprint_preprocess_page(&$vars) {
   global $user;
   $vars['path'] = base_path() . path_to_theme() .'/';
   $vars['user'] = $user;
@@ -116,7 +116,7 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
-function phptemplate_preprocess_node(&$vars) {
+function blueprint_preprocess_node(&$vars) {
   $node = $vars['node']; // for easy reference
   // for easy variable adding for different node types
   switch ($node->type) {
@@ -131,7 +131,7 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
-function phptemplate_preprocess_comment(&$vars) {
+function blueprint_preprocess_comment(&$vars) {
   static $comment_count = 1; // keep track the # of comments rendered
   
   // if the author of the node comments as well, highlight that comment
@@ -163,7 +163,7 @@
  * @param $hook
  *   The name of the template being rendered ("block" in this case.)
  */
-function phptemplate_preprocess_block(&$vars, $hook) {
+function blueprint_preprocess_block(&$vars, $hook) {
   $block = $vars['block'];
 
   // Special classes for blocks.
@@ -179,7 +179,7 @@
   
   if (user_access('administer blocks')) {
     include_once './' . drupal_get_path('theme', 'blueprint') . '/template.block-editing.inc';
-    phptemplate_preprocess_block_editing($vars, $hook);
+    blueprint_preprocess_block_editing($vars, $hook);
     $classes[] = 'with-block-editing';
   }
 
@@ -194,7 +194,7 @@
  * @param $vars
  *   A sequential array of variables passed to the theme function.
  */
-function phptemplate_preprocess_box(&$vars) {
+function blueprint_preprocess_box(&$vars) {
   // rename to more common text
   if (strpos($vars['title'], 'Post new comment') === 0) {
     $vars['title'] = 'Add your comment';
