diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-15 05:35:21 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-15 05:35:21 +0000 |
commit | fd1a950d2fc26ec83b7f32facae14e4f37021a76 (patch) | |
tree | ad7a6349365e4b2a56caa3113b350d4219beffea | |
parent | e8c27acc29a1b899e24526c7962091face6b66e4 (diff) |
removing choice for db encoding... utf-8 all the way baby!!
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@617 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | LedgerSMB/User.pm | 5 | ||||
-rwxr-xr-x | bin/admin.pl | 36 |
2 files changed, 1 insertions, 40 deletions
diff --git a/LedgerSMB/User.pm b/LedgerSMB/User.pm index 5e06a2e0..e28af072 100755 --- a/LedgerSMB/User.pm +++ b/LedgerSMB/User.pm @@ -369,11 +369,8 @@ sub dbsources { sub dbcreate { my ($self, $form) = @_; - my %dbcreate = ( 'Pg' => qq|CREATE DATABASE "$form->{db}"| ); + my %dbcreate = ( 'Pg' => qq|CREATE DATABASE "$form->{db}" WITH ENCODING = 'UNICODE'| ); - $dbcreate{Pg} .= " WITH ENCODING = '$form->{encoding}'" - if $form->{encoding}; - $form->{sid} = $form->{dbdefault}; &dbconnect_vars($form, $form->{dbdefault}); # The below line connects to Template1 or another template file in order diff --git a/bin/admin.pl b/bin/admin.pl index 109f9a9d..0fe64cc5 100755 --- a/bin/admin.pl +++ b/bin/admin.pl @@ -47,7 +47,6 @@ $locale = LedgerSMB::Locale->get_handle(${LedgerSMB::Sysconfig::language}) or $form->error(__FILE__.':'.__LINE__.': '."Locale not loaded: $!\n"); $locale->encoding('UTF-8'); $form->{charset} = 'UTF-8'; -#$form->{charset} = $locale->encoding; eval { require DBI; }; $form->error(__FILE__.':'.__LINE__.': '.$locale->text('DBI not installed!')) if ($@); @@ -1096,37 +1095,6 @@ sub create_dataset { # add Default at beginning unshift @charts, qq|<input name="chart" class="radio" type="radio" value="Default" checked />Default|; - $selectencoding = qq|<option></option> - <option value="SQL_ASCII">ASCII</option> - <option value="EUC_JP">Japanese EUC</option> - <option value="EUC_CN">Chinese EUC</option> - <option value="EUC_KR">Korean EUC</option> - <option value="JOHAB">Korean EUC (Hangle base)</option> - <option value="EUC_TW">Taiwan EUC</option> - <option value="UNICODE">Unicode (UTF-8)</option> - <option value="MULE_INTERNAL">Mule internal type</option> - <option value="LATIN1">ISO 8859-1/ECMA 94 (Latin alphabet no. 1)</option> - <option value="LATIN2">ISO 8859-2/ECMA 94 (Latin alphabet no. 2)</option> - <option value="LATIN3">ISO 8859-3/ECMA 94 (Latin alphabet no. 3)</option> - <option value="LATIN4">ISO 8859-4/ECMA 94 (Latin alphabet no. 4)</option> - <option value="LATIN5">ISO 8859-9/ECMA 128 (Latin alphabet no. 5)</option> - <option value="LATIN6">ISO 8859-10/ECMA 144 (Latin alphabet no. 6)</option> - <option value="LATIN7">ISO 8859-13 (Latin alphabet no. 7)</option> - <option value="LATIN8">ISO 8859-14 (Latin alphabet no. 8)</option> - <option value="LATIN9">ISO 8859-15 (Latin alphabet no. 9)</option> - <option value="LATIN10">ISO 8859-16/ASRO SR 14111 (Latin alphabet no. 10)</option> - <option value="ISO_8859_5">ISO 8859-5/ECMA 113 (Latin/Cyrillic)</option> - <option value="ISO_8859_6">ISO 8859-6/ECMA 114 (Latin/Arabic)</option> - <option value="ISO_8859_7">ISO 8859-7/ECMA 118 (Latin/Greek)</option> - <option value="ISO_8859_8">ISO 8859-8/ECMA 121 (Latin/Hebrew)</option> - <option value="KOI8">KOI8-R(U)</option> - <option value="WIN">Windows CP1251</option> - <option value="ALT">Windows CP866</option> - <option value="WIN1256">Windows CP1256 (Arabic)</option> - <option value="TCVN">Windows CP1258 (Vietnamese)</option> - <option value="WIN874">Windows CP874 (Thai)</option> - |; - $form->{title} = "LedgerSMB ".$locale->text('Accounting') ." ".$locale->text('Database Administration') ." / ".$locale->text('Create Dataset'); @@ -1157,10 +1125,6 @@ sub create_dataset { <td><input name="db" /></td> </tr> <tr> - <th align="right" nowrap="nowrap">|.$locale->text('Multibyte Encoding').qq|</th> - <td><select name="encoding">$selectencoding</select></td> - </tr> - <tr> <th align="right" nowrap="nowrap">|.$locale->text('Create Chart of Accounts').qq|</th> <td> <table> |