Author: m0e.lnx
Date: Wed Aug 27 09:20:59 2008
New Revision: 148
Modified:
branches/iVL/.lang/FrmPartSel.pot
branches/iVL/.lang/FrmWinDrives.pot
branches/iVL/FrmPartSel.class
branches/iVL/FrmWinDrives.class
branches/iVL/MdlInstallSys.module
branches/iVL/MdlPkgSel.module
Log:
- Fixed description display ( had problems with package names like xine-ui)
Modified: branches/iVL/.lang/FrmPartSel.pot
==============================================================================
--- branches/iVL/.lang/FrmPartSel.pot (original)
+++ branches/iVL/.lang/FrmPartSel.pot Wed Aug 27 09:20:59 2008
@@ -14,19 +14,19 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmPartSel.class:172
+#: FrmPartSel.class:168
msgid "Please select the partitions you wish to use and how to use them"
msgstr ""
-#: FrmPartSel.class:181
+#: FrmPartSel.class:177
msgid "Check this box if you have a Windows installation on your system or
any other windows partition (FAT, FAT32, NTFS) that you want auto-mounted
as soon as your computer starts"
msgstr ""
-#: FrmPartSel.class:182
+#: FrmPartSel.class:178
msgid "Detect and Setup Windows partitions for auto-mounting at boot"
msgstr ""
-#: FrmPartSel.class:187
+#: FrmPartSel.class:183
msgid "Help"
msgstr ""
Modified: branches/iVL/.lang/FrmWinDrives.pot
==============================================================================
--- branches/iVL/.lang/FrmWinDrives.pot (original)
+++ branches/iVL/.lang/FrmWinDrives.pot Wed Aug 27 09:20:59 2008
@@ -14,7 +14,7 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: FrmWinDrives.class:74
+#: FrmWinDrives.class:69
msgid "Select the windows partitions you would like to mount during boot"
msgstr ""
Modified: branches/iVL/FrmPartSel.class
==============================================================================
--- branches/iVL/FrmPartSel.class (original)
+++ branches/iVL/FrmPartSel.class Wed Aug 27 09:20:59 2008
@@ -146,8 +146,4 @@
END
-PUBLIC SUB Form_Menu()
- MdlInstallSys.WRITE_NEW_FSTAB()
-
-END
Modified: branches/iVL/FrmWinDrives.class
==============================================================================
--- branches/iVL/FrmWinDrives.class (original)
+++ branches/iVL/FrmWinDrives.class Wed Aug 27 09:20:59 2008
@@ -45,8 +45,3 @@
END
-PUBLIC SUB Form_Menu()
-
- MdlInstallSys.WRITE_NEW_FSTAB()
-
-END
Modified: branches/iVL/MdlInstallSys.module
==============================================================================
--- branches/iVL/MdlInstallSys.module (original)
+++ branches/iVL/MdlInstallSys.module Wed Aug 27 09:20:59 2008
@@ -287,11 +287,11 @@
' now save the file to /etc/fstab
- ' ' ' IF Exist(ClsGlobal.sTargetMnt &/ "etc") = FALSE THEN
- ' ' ' MKDIR ClsGlobal.sTargetMnt &/ "etc"
- ' ' ' END IF
- ' ' ' File.Save(ClsGlobal.sTargetMnt &/ "etc" &/ "fstab",
SConv(sFstab))
- File.Save("/home/vluser/Area-51/fstab", SConv(sFstab))
+ IF Exist(ClsGlobal.sTargetMnt &/ "etc") = FALSE THEN
+ MKDIR ClsGlobal.sTargetMnt &/ "etc"
+ END IF
+ File.Save(ClsGlobal.sTargetMnt &/ "etc" &/ "fstab", SConv(sFstab))
+' ' ' ' ' ' ' ' ' ' ' ' ' File.Save("/home/vluser/Area-51/fstab",
SConv(sFstab)) ' test line
END
Modified: branches/iVL/MdlPkgSel.module
==============================================================================
--- branches/iVL/MdlPkgSel.module (original)
+++ branches/iVL/MdlPkgSel.module Wed Aug 27 09:20:59 2008
@@ -139,10 +139,12 @@
sSearch = Right(LAST.tag, Len(LAST.tag) - InStr(LAST.tag, "/"))
-
+ 'Message(sSearch)
+ SHELL "pkgname " & sSearch TO sSearch
+ sSearch = Trim(sSearch)
' IF InStr(sSearch, "-") = < 3 THEN
- sSearch = Left(sSearch, InStr(sSearch, "-") - 1)
+ 'sSearch = Left(sSearch, InStr(sSearch, "-") - 1)
' ELSE
|