Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/config.yaml
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/config.yaml (revision 1099)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/config.yaml (revision 1173)
@@ -2,9 +2,9 @@
 name: iPhone Template Set
 l10n_class: iPhoneTemplateSet::L10N
-description: Template set for iPhone/iPod Touch
+description: <__trans phrase="iPhone Template Set is building a suitable page for the display by iPhone/iPod touch.">
 author_name: Taichi Kamingoya
 author_link: http://2xup.org/
 plugin_link: http://2xup.org/lab/mtplugins/templatesets/iphonetemplateset
-version: 1.0
+version: 1.1
 
 template_sets:
Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm (revision 1075)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm (revision 1173)
@@ -1,5 +1,6 @@
-package Sample::iPhoneTemplateSet;
+package iPhoneTemplateSet::L10N;
+
 use strict;
-use base 'MT::Plugin::iPhoneTemplateSet';
+use base qw( MT::Plugin::L10N );
 
 1;
Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm (revision 1075)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm (revision 1173)
@@ -2,7 +2,8 @@
 
 use strict;
-use base 'iPhoneTemplateSet::L10N';
+use base qw( iPhoneTemplateSet::L10N );
 use vars qw( %Lexicon );
-%Lexicon = (
+
+our %Lexicon = (
 );
 
Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm (revision 1075)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm (revision 1173)
@@ -2,9 +2,12 @@
 
 use strict;
-use base 'iPhoneTemplateSet::L10N::en_us';
+use base qw( iPhoneTemplateSet::L10N::en_us );
 use vars qw( %Lexicon );
 
-%Lexicon = (
-#Template Label
+our %Lexicon = (
+    'iPhone Template Set is building a suitable page for the display by iPhone/iPod touch.' => 'iPhone Template Set ã¯ iPhone/iPod touch ã§é²èŠ§ããã®ã«é©ããããŒãžãåºåãããã³ãã¬ãŒãã»ããã§ãã',
+    'Main Index (for iPhone)' => 'ã¡ã€ã³ããŒãž (for iPhone)',
+    'Stylesheet (for iPhone)' => 'ã¹ã¿ã€ã«ã·ãŒã (for iPhone)',
+    'Entry (for iPhone)' => 'ãã­ã°èšäº (for iPhone)',
 );
 
Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/index.mtml
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/index.mtml (revision 1100)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/index.mtml (revision 1173)
@@ -7,4 +7,9 @@
         <title><$mt:BlogName$></title>
         <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" />
+        <script type="text/javascript">
+            window.onload = function() {
+                setTimeout(scrollTo, 100, 0, 1);
+            }
+        </script>
     </head>
     <body>
Index: trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml
===================================================================
--- trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml (revision 1100)
+++ trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml (revision 1173)
@@ -7,4 +7,9 @@
         <title><$mt:EntryTitle$></title>
         <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" />
+        <script type="text/javascript">
+            window.onload = function() {
+                setTimeout(scrollTo, 100, 0, 1);
+            }
+        </script>
     </head>
     <body>
Index: trunk/iPhoneTemplateSet/mt-static/themes/iphone-ui/screen.css
===================================================================
--- trunk/iPhoneTemplateSet/mt-static/themes/iphone-ui/screen.css (revision 1099)
+++ trunk/iPhoneTemplateSet/mt-static/themes/iphone-ui/screen.css (revision 1173)
@@ -1,3 +1,4 @@
 body { 
+    min-height: 420px;
     margin: 0 10px;
     padding: 0;
@@ -13,5 +14,5 @@
 #header { 
     min-height: 45px;
-    margin: 0 -10px;
+    margin: 1px -10px 0;
     border-top: 1px solid #cdd5df;
     border-bottom: 1px solid #2e3744;
@@ -38,5 +39,5 @@
 
 /* navigation */
-.navigation {
+.navigation { 
     position: absolute;
     top: 8px;
@@ -44,4 +45,5 @@
     width: auto;
     height: 30px;
+    max-width: 50px;
     margin: 0;
     padding: 0 3px;
@@ -58,8 +60,8 @@
 }
 
-.navigation[rel=home] {
+.navigation[rel=home] { 
     right: auto;
     left: 5px;
-    max-width: 55px;
+    max-width: 100px;
     padding-left: 0;
     border-width: 0 5px 0 13px;
@@ -99,6 +101,6 @@
 }
 
-.entry > p,
-.entry > div {
+.entry > p, 
+.entry > div { 
     margin: 0 0 1em;
     line-height: 1.4;
@@ -131,5 +133,5 @@
 }
 
-#content li {
+#content li { 
     position: relative;
     margin: 0;
@@ -158,5 +160,5 @@
 #content li abbr.published { 
     position: absolute;
-    top: 28px;
+    top: 25px;
     left: 10px;
     display: block;
@@ -167,5 +169,5 @@
 }
 
-#content ul.index {
+#content ul.index { 
     margin: 0 -10px;
     border-width: 0 0 1px;
@@ -179,8 +181,8 @@
 
 #content ul.index li a { 
-    height: 2em;
-}
-
-ul li a {
+    height: 35px;
+}
+
+ul li a { 
     display: block;
     margin: -10px;
@@ -199,4 +201,14 @@
 }
 
+p { 
+    text-shadow: white 0 1px 0;
+}
+
+pre { 
+    margin: 1.5em auto;
+    padding: 0.8em;
+    border: 1px solid #b4b4b4;
+}
+
 /* footer */
 #footer { 
@@ -206,5 +218,4 @@
 #footer p { 
     font-size: 13px;
-    text-shadow: white 0 1px 0;
-}
-
+}
+
Index: trunk/iPhoneTemplateSet/htaccess_sample.txt
===================================================================
--- trunk/iPhoneTemplateSet/htaccess_sample.txt (revision 1173)
+++ trunk/iPhoneTemplateSet/htaccess_sample.txt (revision 1173)
@@ -0,0 +1,16 @@
+#If you want to have a peculiar page to iPhone displayed with same URL as PC.
+
+# Your blog URL style is http://example.com/, the code is added to .htaccess (http://example.com/.htaccess)
+
+RewriteEngine on
+RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod)
+RewriteCond %{REQUEST_URI} !^/m/
+RewriteRule ^(.*)\.html$ /m/$1.html [L]
+
+# Your blog URL styles is http://example.com/blog/, the code is added to .htaccess (http://example.com/blog/.htaccess)
+
+Rewriteengine onq
+RewriteCond %{HTTP_USER_AGENT} (iPhone|iPod)
+RewriteCond %{REQUEST_URI} !/m/
+RewriteRule /blog/(.*)\.html$ /blog/m/$1.html [L]
+
