[Rt-commit] r13426 - in rt/3.8/trunk: . share/html/Install share/html/NoAuth/css/web2
jesse at bestpractical.com
jesse at bestpractical.com
Thu Jun 19 13:25:56 EDT 2008
Author: jesse
Date: Thu Jun 19 13:25:56 2008
New Revision: 13426
Modified:
rt/3.8/trunk/ (props changed)
rt/3.8/trunk/Makefile.in
rt/3.8/trunk/lib/RT/Installer.pm
rt/3.8/trunk/share/html/Install/DatabaseType.html
rt/3.8/trunk/share/html/NoAuth/css/web2/layout.css
Log:
Modified: rt/3.8/trunk/Makefile.in
==============================================================================
--- rt/3.8/trunk/Makefile.in (original)
+++ rt/3.8/trunk/Makefile.in Thu Jun 19 13:25:56 2008
@@ -377,21 +377,19 @@
# {{{ database-installation
regression-reset-db: force-dropdb
- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action init --dba $(DB_DBA) --dba-password ''
+ $(PERL) sbin/rt-setup-database --action init --dba $(DB_DBA) --dba-password ''
initdb :: initialize-database
initialize-database:
- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action init --dba $(DB_DBA) --prompt-for-dba-password
+ $(PERL) sbin/rt-setup-database --action init --dba $(DB_DBA) --prompt-for-dba-password
dropdb:
- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action drop --dba $(DB_DBA) --prompt-for-dba-password
+ $(PERL) sbin/rt-setup-database --action drop --dba $(DB_DBA) --prompt-for-dba-password
force-dropdb:
- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/rt-setup-database --action drop --dba $(DB_DBA) --dba-password '' --force
+ $(PERL) sbin/rt-setup-database --action drop --dba $(DB_DBA) --dba-password '' --force
-insert-approval-data:
- $(PERL) $(DESTDIR)/$(RT_SBIN_PATH)/insert_approval_scrips
# }}}
# {{{ libs-install
Modified: rt/3.8/trunk/lib/RT/Installer.pm
==============================================================================
--- rt/3.8/trunk/lib/RT/Installer.pm (original)
+++ rt/3.8/trunk/lib/RT/Installer.pm Thu Jun 19 13:25:56 2008
@@ -73,19 +73,19 @@
DatabaseHost => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'Database host', #loc
- Hints =>
-"The domain name of your database server (like 'db.int.example.com')"
- , #loc
+ Description => 'Database host',
+ Default => 1,
+ DefaultLabel => "Keep 'localhost' if you're not sure", #loc
+ Hints => "The domain name of your database server (like 'db.example.com').", #loc
},
},
DatabasePort => {
Widget => '/Widgets/Form/Integer',
WidgetArguments => {
- Description => 'Database port number', #loc
+ Description => 'Database port', #loc
Default => 1,
DefaultLabel =>
- 'Leave empty to use default value of the RDBMS', #loc
+ 'Leave empty to use a default value', #loc
},
},
DatabaseName => {
@@ -97,16 +97,18 @@
DatabaseAdmin => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'DBA of the database', #loc
- Hints => "The database username of the administrator", #loc
+ Default => 1,
+ DefaultLabel => "Leave this alone to use a default value", #loc
+ Description => 'DBA username', # loc
},
},
DatabaseAdminPassword => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'DBA password', #loc
- Hints => "The database password of the administrator", #loc
- Type => 'password',
+ Description =>
+ 'DBA password', #loc
+ Hints => "The DBA's database password",#loc
+ Type => 'password',
},
},
DatabaseUser => {
@@ -131,7 +133,8 @@
rtname => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'RT Name', #loc
+ Description => 'Site name', #loc
+ Hints => 'Set this to your internet domain. (ex: example.com)' #loc
},
},
MinimumPasswordLength => {
@@ -143,15 +146,16 @@
Password => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'password of the user root in RT', #loc
- Type => 'password',
+ Description => 'Administrative password', #loc
+ Hints => 'RT will create a user called "root" and set this as their password', #loc
+ Type => 'password',
},
},
OwnerEmail => {
Widget => '/Widgets/Form/String',
WidgetArguments => {
- Description => 'Owner email', #loc
- Hints => 'the address of a human who manages RT.', #loc
+ Description => 'RT Administrator', #loc
+ Hints => 'The email address of a human who manages RT.',
},
},
CommentAddress => {
Modified: rt/3.8/trunk/share/html/Install/DatabaseType.html
==============================================================================
--- rt/3.8/trunk/share/html/Install/DatabaseType.html (original)
+++ rt/3.8/trunk/share/html/Install/DatabaseType.html Thu Jun 19 13:25:56 2008
@@ -52,8 +52,8 @@
<div class="intro">
<&|/l&>
<p>RT works just great with a number of different databases. <b>MySQL</b>, <b>PostgreSQL</b>, <b>Oracle</b> and <b>SQLite</b> are all supported.</p>
- <p>You should choose whichever database you or your local database administrator is most comfortable with.</p>
- <p><b>SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server.</b></p>
+ <p>You should choose the database you or your local database administrator is most comfortable with.</p>
+ <p><i>SQLite is a simple database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but <b>it's not quite right for a high-volume production RT server</b>.</i></p>
<p>If your supported database isn't listed in the dropdown below, that means RT couldn't find a <i>database driver</i> for it installed locally. You may be able to remedy this by using <a href="http://search.cpan.org" target="_new">CPAN</a> to download and install DBD::MySQL, DBD::Oracle or DBD::Pg.</p>
</&>
</div>
Modified: rt/3.8/trunk/share/html/NoAuth/css/web2/layout.css
==============================================================================
--- rt/3.8/trunk/share/html/NoAuth/css/web2/layout.css (original)
+++ rt/3.8/trunk/share/html/NoAuth/css/web2/layout.css Thu Jun 19 13:25:56 2008
@@ -83,6 +83,7 @@
top: 3.8em;
right: 1em;
width: auto;
+ min-width: 35em;
font-size: 0.9em;
z-index: 99;
}
More information about the Rt-commit
mailing list