summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-04-25 14:57:05 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-04-25 14:57:05 +0000
commit4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d (patch)
tree81200526fc7a0ed3d298322e1fbcbf1d1973701b
parent474da8895db5db93cd95874506acb87eda9d1fbf (diff)
downloaddrakx-backup-do-not-use-4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d.tar
drakx-backup-do-not-use-4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d.tar.gz
drakx-backup-do-not-use-4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d.tar.bz2
drakx-backup-do-not-use-4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d.tar.xz
drakx-backup-do-not-use-4a62fb92b80fad9ba61cf0b4dd74fc5b03dcd94d.zip
no_comment
-rw-r--r--docs/TODO18
-rw-r--r--perl-install/ChangeLog6
-rw-r--r--perl-install/common.pm2
3 files changed, 15 insertions, 11 deletions
diff --git a/docs/TODO b/docs/TODO
index d1e72d86b..8910adf84 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -1,7 +1,4 @@
-URGENT---------------------------------------------------------------------------------
-compssList
-compssUsers
-
check for fpons/pixel BOTH that resize_fat is clean for current version
relative to 7.0-2.
@@ -11,8 +8,6 @@ partition is Ok (fixme? allow primary partition inside extended one, but with
warning on diskdrake startup, made them as warning ?).
-features-------------------------------------------------------------------------------
-handle NT (add entry for it in lilo, put it in fstab)
-
(NEED 7.1) auto-install for corporate, very important (need consolidation).
(7.1 or later) clean SCSI CDROM autoboot.
@@ -28,11 +23,6 @@ PPPoE install and configuration (SuSE includes it, DHCP-like)
(7.1)standalone applications for configuration (netdrake, timetool, authentificationconf, soundcard)
(7.1) improve printerdrake to at least have the same functionalities as printtool.
-(7.1, other persons)rescue:
-- small modification for stage1 to get the rescue stage2
-- create a stage2 with many tools (fdisk, bash...)
-the rescue could be on another cd (if multi-cd)
-! care must be taken about modules (if ide is in module...)
----
(7.2 or later)horizontal sub-steps
@@ -195,6 +185,8 @@ hibernation on laptop -> clock not restored
possibility to specify the mouse
-(?)---------------------------------------------------------------------------------
+(?) handle NT (add entry for it in lilo, put it in fstab)
+
(?) lilo-0.22-19mdk is buggy with boot=/dev/hde & root=/dev/sda13, it needs
disk=/dev/hde bios=0x80 & disk=/dev/sda bios=0x81
@@ -504,3 +496,9 @@ already hda1 with /boot/vmlinuz
(done)crypto: add a cancel & progress bar while downloading
(done)error handling (like reading hdlist)
(done)(7.1)progression bar on crypto.
+
+(done, daouda&pix,7.1, other persons)rescue:
+- small modification for stage1 to get the rescue stage2
+- create a stage2 with many tools (fdisk, bash...)
+the rescue could be on another cd (if multi-cd)
+! care must be taken about modules (if ide is in module...)
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index 523967e70..774747810 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,5 +1,11 @@
2000-04-25 Pixel <pixel@mandrakesoft.com>
+ * lilo.pm (suggest): moved the generation of the keytable here. It
+ is used by both lilo & grub (lilo is not always installed as was
+ assumed)
+
+ * common.pm (formatAlaTeX): remove bounding spaces
+
* pkgs.pm (setSelectedFromCompssList): remove the hack for min
mark 25 in beginner
* install_steps_interactive.pm (choosePackages): set $min_mark to
diff --git a/perl-install/common.pm b/perl-install/common.pm
index 4e368c058..9442e97f9 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -330,7 +330,7 @@ sub formatAlaTeX($) {
$t .= ($t && "\n") . $tmp;
$tmp = '';
} else {
- $tmp = ($tmp && "$tmp ") . $_;
+ $tmp = ($tmp && "$tmp ") . first(/^\s*(.*?)\s*$/);
}
}
$t . ($t && $tmp && "\n") . $tmp;