[Jifty-commit] r7184 - jifty/trunk/lib/Jifty/Plugin/SetupWizard

Jifty commits jifty-commit at lists.jifty.org
Thu Jun 4 19:05:38 EDT 2009


Author: sartak
Date: Thu Jun  4 19:05:38 2009
New Revision: 7184

Modified:
   jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm

Log:
Lift some database prose from RT's installer

Modified: jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm	Thu Jun  4 19:05:38 2009
@@ -146,9 +146,18 @@
             { display => 'PostgreSQL', value => 'Pg' },
         );
     my $current_driver = Jifty->config->framework('Database')->{Driver};
+    my $appname = Jifty->config->framework('ApplicationName');
 
     p { _("You may choose a database engine.") };
 
+    p { _("%1 works with a number of different databases. MySQL, PostgreSQL, Oracle, and SQLite are all supported. You should choose the database that you or your local database administrator knows best.", $appname) };
+
+    p { _("SQLite is a small database engine that does not need a server or any configuration. We recommend it for testing, demonstration, and development, but it is not quite right for a high-volume production server.") };
+
+    p { _("MySQL and PostgreSQL are well-supported production-quality database engines. ") };
+
+    p { _("If your preferred database is not listed in the dropdown below, that means we could not find a database driver for it. You may be able to remedy this by using CPAN to download and install DBD::MySQL, DBD::Pg, or DBD::Oracle.") };
+
     config_field(
         field      => 'Driver',
         context    => '/framework/Database',


More information about the Jifty-commit mailing list