Changeset 6128 for trunk/admin/themes/default
- Timestamp:
- May 8, 2010, 10:32:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/themes/default/template/install.tpl
r5571 r6128 21 21 $('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().hide(); 22 22 } 23 if ($option_selected=='mysql') { 24 $('#experimentalDbEngines').hide(); 25 } 26 23 27 $('#dblayer').change(function() { 24 28 $db = this; … … 28 32 $('input[name=dbhost],input[name=dbuser],input[name=dbpasswd]').parent().parent().show(); 29 33 } 34 35 if ($db.value=='mysql') { 36 $('#experimentalDbEngines').hide(); 37 } 38 else { 39 $('#experimentalDbEngines').show(); 40 } 30 41 }); 31 42 }); 43 44 $(document).ready(function() { 45 $("a.externalLink").click(function() { 46 window.open($(this).attr("href")); 47 return false; 48 }); 49 }); 50 32 51 </script> 33 52 … … 72 91 } 73 92 74 .table2 {93 table.table2 { 75 94 width: 100%; 76 95 margin-bottom: 1em !important; 96 border:0; 77 97 } 78 98 … … 102 122 background-repeat:no-repeat; 103 123 } 124 125 #experimentalDbEngines TD {border:2px solid #666;background-color:#444; color:#ccc;} 104 126 </style> 105 127 {/literal} … … 195 217 {/if} 196 218 </tr> 219 <tr id="experimentalDbEngines"> 220 <td colspan="3"> 221 {'SQLite and PostgreSQL are currently in experimental state.'|@translate} 222 <a href="http://piwigo.org/forum/viewtopic.php?id=15927" class="externalLink">{'Learn more'|@translate}</a> 223 </td> 224 </tr> 197 225 <tr> 198 226 <td style="width: 30%;">{'Host'|@translate}</td>
Note: See TracChangeset
for help on using the changeset viewer.