? blueprint/.DS_Store
? blueprint/favicon.ico
? blueprint/logo.png
? blueprint/theme-settings-dynamic sidebar sizing.php
? blueprint/blueprint/.gitignore
? blueprint/blueprint/AUTHORS.textile
? blueprint/blueprint/CHANGELOG
? blueprint/blueprint/LICENSE
? blueprint/blueprint/README.textile
? blueprint/blueprint/TUTORIAL.textile
? blueprint/blueprint/blueprint
? blueprint/blueprint/lib
? blueprint/blueprint/templates
? blueprint/blueprint/tests
? blueprint/css/1style-rtl.css
? blueprint/css/ie-rtl.css
? blueprint/css/ie6-rtl.css
Index: blueprint/page.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/blueprint/Attic/page.tpl.php,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 page.tpl.php
--- blueprint/page.tpl.php	8 Jan 2010 07:10:24 -0000	1.1.2.4
+++ blueprint/page.tpl.php	12 Jan 2010 17:11:50 -0000
@@ -13,9 +13,11 @@
   <!--[if lte IE 7]>
     <link rel="stylesheet" href="<?php print $path; ?>blueprint/blueprint/ie.css" type="text/css" media="screen, projection">
     <link href="<?php print $path; ?>css/ie.css" rel="stylesheet"  type="text/css"  media="screen, projection" />
+    <?php $styles_ie_rtl['ie']; ?>
   <![endif]-->
   <!--[if lte IE 6]>
     <link href="<?php print $path; ?>css/ie6.css" rel="stylesheet"  type="text/css"  media="screen, projection" />
+    <?php $styles_ie_rtl['ie6']; ?>
   <![endif]-->
 </head>
 
Index: blueprint/template.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/blueprint/blueprint/Attic/template.php,v
retrieving revision 1.1.2.9
diff -u -p -r1.1.2.9 template.php
--- blueprint/template.php	8 Jan 2010 07:13:15 -0000	1.1.2.9
+++ blueprint/template.php	12 Jan 2010 17:11:50 -0000
@@ -109,6 +109,18 @@ function blueprint_preprocess_page(&$var
       break;
   }
 
+  //Perform RTL - LTR swap and load RTL Styles.
+  if ($vars['language']->dir == 'rtl') {
+    // Remove Blueprint Grid and use RTL grid
+    $css = $vars['css'];
+    $css['screen,projection']['theme'][path_to_theme() .'/blueprint/blueprint/plugins/rtl/screen.css'] = TRUE;
+    $vars['styles'] = drupal_get_css($css);
+    
+    //setup rtl css for IE
+    $vars['styles_ie']['ie'] = '<link href="'. $path .'css/ie-rtl.css" rel="stylesheet"  type="text/css"  media="screen, projection" />';
+    $vars['styles_ie']['ie6'] = '<link href="'. $path .'css/ie6-rtl.css" rel="stylesheet"  type="text/css"  media="screen, projection" />';
+  }
+
   $vars['meta'] = '';
   // SEO optimization, add in the node's teaser, or if on the homepage, the mission statement
   // as a description of the page that appears in search engines
Index: blueprint/css/ie-rtl.css
===================================================================
RCS file: blueprint/css/ie-rtl.css
diff -N blueprint/css/ie-rtl.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ blueprint/css/ie-rtl.css	7 Jan 2010 23:29:01 -0000
@@ -0,0 +1 @@
+/* put IE RTL hacks in here */
\ No newline at end of file
Index: blueprint/css/ie6-rtl.css
===================================================================
RCS file: blueprint/css/ie6-rtl.css
diff -N blueprint/css/ie6-rtl.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ blueprint/css/ie6-rtl.css	7 Jan 2010 23:29:01 -0000
@@ -0,0 +1 @@
+/* put IE RTL hacks in here */
\ No newline at end of file
