Changeset 1173 for trunk/iPhoneTemplateSet
- Timestamp:
- 10/16/08 08:40:54 (14 months ago)
- Location:
- trunk/iPhoneTemplateSet
- Files:
-
- 1 added
- 7 modified
-
htaccess_sample.txt (added)
-
mt-static/themes/iphone-ui/screen.css (modified) (12 diffs)
-
plugins/iPhoneTemplateSet/config.yaml (modified) (1 diff)
-
plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm (modified) (1 diff)
-
plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm (modified) (1 diff)
-
plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm (modified) (1 diff)
-
plugins/iPhoneTemplateSet/templates/entry.mtml (modified) (1 diff)
-
plugins/iPhoneTemplateSet/templates/index.mtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/iPhoneTemplateSet/mt-static/themes/iphone-ui/screen.css
r1099 r1173 1 1 body { 2 min-height: 420px; 2 3 margin: 0 10px; 3 4 padding: 0; … … 13 14 #header { 14 15 min-height: 45px; 15 margin: 0 -10px;16 margin: 1px -10px 0; 16 17 border-top: 1px solid #cdd5df; 17 18 border-bottom: 1px solid #2e3744; … … 38 39 39 40 /* navigation */ 40 .navigation { 41 .navigation { 41 42 position: absolute; 42 43 top: 8px; … … 44 45 width: auto; 45 46 height: 30px; 47 max-width: 50px; 46 48 margin: 0; 47 49 padding: 0 3px; … … 58 60 } 59 61 60 .navigation[rel=home] { 62 .navigation[rel=home] { 61 63 right: auto; 62 64 left: 5px; 63 max-width: 55px;65 max-width: 100px; 64 66 padding-left: 0; 65 67 border-width: 0 5px 0 13px; … … 99 101 } 100 102 101 .entry > p, 102 .entry > div { 103 .entry > p, 104 .entry > div { 103 105 margin: 0 0 1em; 104 106 line-height: 1.4; … … 131 133 } 132 134 133 #content li { 135 #content li { 134 136 position: relative; 135 137 margin: 0; … … 158 160 #content li abbr.published { 159 161 position: absolute; 160 top: 2 8px;162 top: 25px; 161 163 left: 10px; 162 164 display: block; … … 167 169 } 168 170 169 #content ul.index { 171 #content ul.index { 170 172 margin: 0 -10px; 171 173 border-width: 0 0 1px; … … 179 181 180 182 #content ul.index li a { 181 height: 2em;182 } 183 184 ul li a { 183 height: 35px; 184 } 185 186 ul li a { 185 187 display: block; 186 188 margin: -10px; … … 199 201 } 200 202 203 p { 204 text-shadow: white 0 1px 0; 205 } 206 207 pre { 208 margin: 1.5em auto; 209 padding: 0.8em; 210 border: 1px solid #b4b4b4; 211 } 212 201 213 /* footer */ 202 214 #footer { … … 206 218 #footer p { 207 219 font-size: 13px; 208 text-shadow: white 0 1px 0; 209 } 210 220 } 221 -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/config.yaml
r1099 r1173 2 2 name: iPhone Template Set 3 3 l10n_class: iPhoneTemplateSet::L10N 4 description: Template set for iPhone/iPod Touch4 description: <__trans phrase="iPhone Template Set is building a suitable page for the display by iPhone/iPod touch."> 5 5 author_name: Taichi Kamingoya 6 6 author_link: http://2xup.org/ 7 7 plugin_link: http://2xup.org/lab/mtplugins/templatesets/iphonetemplateset 8 version: 1. 08 version: 1.1 9 9 10 10 template_sets: -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N.pm
r1075 r1173 1 package Sample::iPhoneTemplateSet; 1 package iPhoneTemplateSet::L10N; 2 2 3 use strict; 3 use base 'MT::Plugin::iPhoneTemplateSet';4 use base qw( MT::Plugin::L10N ); 4 5 5 6 1; -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/en_us.pm
r1075 r1173 2 2 3 3 use strict; 4 use base 'iPhoneTemplateSet::L10N';4 use base qw( iPhoneTemplateSet::L10N ); 5 5 use vars qw( %Lexicon ); 6 %Lexicon = ( 6 7 our %Lexicon = ( 7 8 ); 8 9 -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/lib/iPhoneTemplateSet/L10N/ja.pm
r1075 r1173 2 2 3 3 use strict; 4 use base 'iPhoneTemplateSet::L10N::en_us';4 use base qw( iPhoneTemplateSet::L10N::en_us ); 5 5 use vars qw( %Lexicon ); 6 6 7 %Lexicon = ( 8 #Template Label 7 our %Lexicon = ( 8 'iPhone Template Set is building a suitable page for the display by iPhone/iPod touch.' => 'iPhone Template Set 㯠iPhone/iPod touch ã§é²èЧããã®ã«é©ããããŒãžãåºåãããã³ãã¬ãŒãã»ããã§ãã', 9 'Main Index (for iPhone)' => 'ã¡ã€ã³ããŒãž (for iPhone)', 10 'Stylesheet (for iPhone)' => 'ã¹ã¿ã€ã«ã·ãŒã (for iPhone)', 11 'Entry (for iPhone)' => 'ããã°èšäº (for iPhone)', 9 12 ); 10 13 -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml
r1100 r1173 7 7 <title><$mt:EntryTitle$></title> 8 8 <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" /> 9 <script type="text/javascript"> 10 window.onload = function() { 11 setTimeout(scrollTo, 100, 0, 1); 12 } 13 </script> 9 14 </head> 10 15 <body> -
trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/index.mtml
r1100 r1173 7 7 <title><$mt:BlogName$></title> 8 8 <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" /> 9 <script type="text/javascript"> 10 window.onload = function() { 11 setTimeout(scrollTo, 100, 0, 1); 12 } 13 </script> 9 14 </head> 10 15 <body>
