public inbox for rhdb-cvs@sourceware.org
help / color / mirror / Atom feed
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-15 21:47 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-15 21:47 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-15 21:47:28
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer: Config.java
PostInstallChoicePage.java
PostInstallPage.java
PostInstallProgressPage.java
rhdb/installer/com/redhat/rhdb/installer/resources:
InstallerResources.java
Resources.java.in
rhdb/installer/com/redhat/rhdb/installer/util:
DatabaseCluster.java
Log message:
* com/redhat/rhdb/installer/Config.java: Make version strings
and getRHVersion method public.
* com/redhat/rhdb/installer/PostInstallChoicePage.java: "Start
Database Cluster" option is switched on and off depending on whether
the server package has been installed.
(resetMessage): New method. Allows options to be dynamically
switch on and off, depending on current setup.
* com/redhat/rhdb/installer/PostInstallPage.java:
(getNextPage): New method. Reset the next page before returning it.
* com/redhat/rhdb/installer/PostInstallProgressPage.java: Utilize
a scrolling text area to display the exact outputs of post-install
tasks, like we do for regression tests.
* com/redhat/rhdb/installer/resources/InstallerResources.java:
Updates to resource strings.
* com/redhat/rhdb/installer/resources/Resources.java.in: Ditto.
* com/redhat/rhdb/installer/util/DatabaseCluster.java: Change
interface; outputs and errors are piped through the appropriate
streams, so that they can be displayed on-screen.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.8&r2=1.9
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Config.java.diff?cvsroot=rhdb&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallChoicePage.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallPage.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallProgressPage.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/InstallerResources.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/Resources.java.in.diff?cvsroot=rhdb&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/DatabaseCluster.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-18 23:10 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-18 23:10 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-18 23:10:37
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer:
InstallProgressPage.java
InstallerSplashScreen.java
rhdb/installer/com/redhat/rhdb/installer/util:
PackageCategory.java
PreInstallDryInstallCheck.java
RPM42PackageCategory.java
rhdb/installer/images: rhdbinstaller.jpg
Log message:
2003-12-18 David Jee <djee@redhat.com>
* com/redhat/rhdb/installer/InstallProgressPage.java:
(createControl): Split the install action into two phases - first, fake
the install of already-installed packages, and second, do the actual
install of new packages.
* com/redhat/rhdb/installer/InstallerSplashScreen.java: Use GridLayout
instead of FormLayout.
* com/redhat/rhdb/installer/util/PackageCategory.java: New abstract
methods, getAlreadyInstalledPackages and getNotAlreadyInstalledPackages.
* com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java:
(performCheck): When checking for errors, skip over "already installed"
variety.
* com/redhat/rhdb/installer/util/RPM42PackageCategory.java:
(getAlreadyInstalledPackages): New method. Determine the packages which
have already been installed on this machine.
(getNotAlreadyInstalledPackages): New method. Determine the packages which
have not already been installed on this machine.
* images/rhdbinstaller.jpg: Get rid of the gray bar at the top.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.13&r2=1.14
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallProgressPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallerSplashScreen.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/PackageCategory.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java.diff?cvsroot=rhdb&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/RPM42PackageCategory.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/images/rhdbinstaller.jpg.diff?cvsroot=rhdb&r1=1.2&r2=1.3
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-17 21:07 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-17 21:07 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-17 21:06:48
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer:
InstallerSplashScreen.java
Log message:
2003-12-17 David Jee <djee@redhat.com>
* com/redhat/rhdb/installer/InstallerSplashScreen.java: Remove debug
println's.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.12&r2=1.13
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallerSplashScreen.java.diff?cvsroot=rhdb&r1=1.1&r2=1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-17 21:03 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-17 21:03 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-17 21:02:58
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer: Config.java
InstallMainPage.java
Installer.java
PreInstallCheckPage.java
rhdb/installer/com/redhat/rhdb/installer/resources:
InstallerResources.java
Resources.java.in
rhdb/installer/com/redhat/rhdb/installer/util:
PreInstallDryInstallCheck.java
RPM42PackageCategory.java
Added files:
rhdb/installer/com/redhat/rhdb/installer:
InstallerSplashScreen.java
Log message:
2003-12-17 David Jee <djee@redhat.com>
* com/redhat/rhdb/installer/Config.java: Add private fields
display and shell.
(constructor): New arguments - display and shell.
(initialize): DryInstallCheck now takes display and shell as arguments.
* com/redhat/rhdb/installer/InstallMainPage.java: Instead of displaying
the splash screen here, display a welcome message instead. Splash screen
is displayed elsewhere now.
* com/redhat/rhdb/installer/Installer.java
(init): Center the shell on the screen. Display splash screen while
initializing config, which takes a while.
* com/redhat/rhdb/installer/InstallerSplashScreen.java: New file.
Displays a splash screen image.
* com/redhat/rhdb/installer/PreInstallCheckPage.java: Obtaining the
package category should be done inside the waitAndCheck thread, to
guarantee that we're working with the latest selected category.
* com/redhat/rhdb/installer/resources/InstallerResources.java: New
resources for main page welcome message, and dry install failure message.
* com/redhat/rhdb/installer/resources/Resources.java.in: Ditto.
* com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java: Add new
private methods, display and shell.
(constructor): Takes in two new arguments, display and shell, used to
display the error dialog.
(performCheck): Display an error dialog in case of an exception.
* com/redhat/rhdb/installer/util/RPM42PackageCategory.java
(getRPMOptions): Change test-install's rpm option, from "--quiet" to
"-v". This matches the actual install command more closely.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.11&r2=1.12
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallerSplashScreen.java.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Config.java.diff?cvsroot=rhdb&r1=1.4&r2=1.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallMainPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Installer.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PreInstallCheckPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/InstallerResources.java.diff?cvsroot=rhdb&r1=1.4&r2=1.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/Resources.java.in.diff?cvsroot=rhdb&r1=1.5&r2=1.6
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/RPM42PackageCategory.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-16 20:40 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-16 20:40 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-16 20:39:57
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer: Installer.java
PostInstallChoicePage.java
rhdb/installer/com/redhat/rhdb/installer/resources:
InstallerResources.java
Resources.java.in
rhdb/installer/com/redhat/rhdb/installer/util:
PreInstallDryInstallCheck.java
Log message:
2003-12-16 David Jee <djee@redhat.com>
* com/redhat/rhdb/installer/Installer.java: Add what I have so far
for setting title and icon for window (commented out).
* com/redhat/rhdb/installer/PostInstallChoicePage.java: Remove
debug println's.
* com/redhat/rhdb/installer/resources/InstallerResources.java: New
resources for window title and icon.
* com/redhat/rhdb/installer/resources/Resources.java.in: Ditto.
* com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java:
Fix dry install check so it reads the error stream properly and not
just ignore it. Now this should catch RPM errors before the real
install phase.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.9&r2=1.10
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Installer.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallChoicePage.java.diff?cvsroot=rhdb&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/InstallerResources.java.diff?cvsroot=rhdb&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/Resources.java.in.diff?cvsroot=rhdb&r1=1.4&r2=1.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/PreInstallDryInstallCheck.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-12 22:00 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-12 22:00 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-12 22:00:15
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer: Config.java
RegressionTestsPage.java
rhdb/installer/com/redhat/rhdb/installer/resources:
Resources.java.in
rhdb/installer/com/redhat/rhdb/installer/util:
RegressionTests.java
Util.java
Added files:
rhdb/installer/images: rhdbinstaller.jpg
Log message:
* com/redhat/rhdb/installer/Config.java: add jdbc packages to server
installation.
* com/redhat/rhdb/installer/RegressionTestsPage.java: Don't wait til
error/input streams are ready.
* com/redhat/rhdb/installer/resources/Resources.java.in: Remove
references to non-existent documentations.
* com/redhat/rhdb/installer/util/RegressionTests.java: Rename input
stream to output stream. Make test results output directory before
running tests.
* com/redhat/rhdb/installer/util/Util.java: Use new splash graphics.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.6&r2=1.7
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Config.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/RegressionTestsPage.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/Resources.java.in.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/RegressionTests.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/Util.java.diff?cvsroot=rhdb&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/images/rhdbinstaller.jpg.diff?cvsroot=rhdb&r1=NONE&r2=1.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* src/rhdb/installer ChangeLog com/redhat/rhdb/i ...
@ 2003-12-11 19:15 djee
0 siblings, 0 replies; 7+ messages in thread
From: djee @ 2003-12-11 19:15 UTC (permalink / raw)
To: rhdb-cvs
CVSROOT: /cvs/rhdb
Module name: src
Changes by: djee@sourceware.org 2003-12-11 19:15:03
Modified files:
rhdb/installer : ChangeLog
rhdb/installer/com/redhat/rhdb/installer: Config.java
CustomInstallPage.java
InstallCompletePage.java
PostInstallChoicePage.java
PostInstallCompletePage.java
PostInstallPage.java
PostInstallProgressPage.java
PostInstallResultsPage.java
RegressionTestsPage.java
rhdb/installer/com/redhat/rhdb/installer/resources:
InstallerResources.java
Resources.java.in
rhdb/installer/com/redhat/rhdb/installer/util: RPM42Package.java
Util.java
rhdb/installer/images: icon.jpg
Added files:
rhdb/installer : Makefile README cpl-v10.html
rhdb/installer/buildlib: Makefile setup.sh
rhdb/installer/buildlib/src: imagehandling.patch
loadlibrary.patch
make_gtk.mak.patch
preferencesdialog.patch
rhdb/installer/images: icon_large.jpg splash.jpg
rhdb/installer/wwwdocs: index.html
Removed files:
rhdb/installer : license.txt
Log message:
Import latest changes from internal repository.
Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/Makefile.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/README.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/cpl-v10.html.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/ChangeLog.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/license.txt.diff?cvsroot=rhdb&r1=1.1.1.1&r2=NONE
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/Makefile.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/setup.sh.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/src/imagehandling.patch.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/src/loadlibrary.patch.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/src/make_gtk.mak.patch.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/buildlib/src/preferencesdialog.patch.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/Config.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/CustomInstallPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/InstallCompletePage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallChoicePage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallCompletePage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallProgressPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/PostInstallResultsPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/RegressionTestsPage.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/InstallerResources.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/resources/Resources.java.in.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/RPM42Package.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/com/redhat/rhdb/installer/util/Util.java.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/images/icon_large.jpg.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/images/splash.jpg.diff?cvsroot=rhdb&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/images/icon.jpg.diff?cvsroot=rhdb&r1=1.1.1.1&r2=1.2
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/rhdb/installer/wwwdocs/index.html.diff?cvsroot=rhdb&r1=NONE&r2=1.1
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2003-12-18 23:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-15 21:47 src/rhdb/installer ChangeLog com/redhat/rhdb/i djee
-- strict thread matches above, loose matches on Subject: below --
2003-12-18 23:10 djee
2003-12-17 21:07 djee
2003-12-17 21:03 djee
2003-12-16 20:40 djee
2003-12-12 22:00 djee
2003-12-11 19:15 djee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).