Re: [Freedos-user] LFN support?

2004-02-09 Thread Steffen Kaiser
On Sat, 7 Feb 2004, Aitor SantamarĂ­a Merino wrote:

> In my understanding, there's no LFN support at all, except in the DIR
> command of FreeCOM, where an existing LFN is searched and displayed.

No. There is no LFN support in FreeCOM. And there will be none, unless
available for all commands.

Bye,

-- 

Steffen Kaiser


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Check for floppy without error

2004-02-11 Thread Steffen Kaiser
On Wed, 11 Feb 2004, John Price wrote:

> In my program, how can I check to see if there is a floppy
> disk in the drive without getting the "Abort, Retry, Fail"
> error???

Hook into INT-24 (Critical Error) and install:

mov al, 3  ;; Fail the request
iret

Bye,

-- 

Steffen Kaiser


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Can I learn more about critical error handler?

2004-02-12 Thread Steffen Kaiser
On Wed, 11 Feb 2004, [big5] maintainer freedospg wrote:

> I learned from a book to write a critical error
> handler, just to set AX to 0 and IRET.

Arrgh - 0 means "ignore", what is not useful in most cases.

A good description is in RBIL:
http://www-2.cs.cmu.edu/afs/cs.cmu.edu/user/ralf/pub/WWW/files.html

Quote:

Values for critical error handler action code:
 00hignore error and continue processing request
 01hretry operation
 02hterminate program as though INT 21/AH=4Ch called (INT 20h for DOS
1.x)
 03hfail system call in progress (DOS 3+)

If "fail" is not allowed, the kernel defaults to "abort" (02).

Bye,

-- 

Steffen Kaiser


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Check for floppy without error

2004-02-12 Thread Steffen Kaiser
On Wed, 11 Feb 2004, John Price wrote:

> On Wed, Feb 11, 2004 at 09:45:49AM +0100, Steffen Kaiser wrote:
> >
> > Hook into INT-24 (Critical Error) and install:
  ^^

> > mov al, 3  ;; Fail the request
> > iret
>
> This helped some, but when I am writing a file to the
> floppy, and in the middle of the write I pop the floppy
> out, I get

> What interrupt is printing that error?

You simply keep INT-24 hooked the whole lifetime of your program. It gets
automatically restored, when your program terminates.

BTW: If you start your shell with "/F", there is no interactive prompt,
the request is automatically failed.

Bye,

-- 

Steffen Kaiser


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Check for floppy without error

2004-02-13 Thread Steffen Kaiser
On Thu, 12 Feb 2004, John Price wrote:

> I have INT 24 hooked and I'm still getting the error. See
> code below.

> void RestoreCritErrorHandler(void)
>   setvect(24, OrigCritErrHandler);
   ^^^  INT-24 means the hexa-decimal 0x24 ;-)

Bye,

-- 

Steffen Kaiser


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Check for floppy without error

2004-02-13 Thread Steffen Kaiser
On Fri, 13 Feb 2004, [big5] maintainer freedospg wrote:

> Make sure inside CEH_TEXT AX=3.

The offical return value is AL, not AX. However, it should not matter if
you clobber AH.

Bye,

-- 

Steffen Kaiser


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] FreeDOS.org is getting a facelift

2004-02-17 Thread Steffen Kaiser
On Tue, 17 Feb 2004, Aitor SantamarĂ­a Merino wrote:

> Found it, sorry:
> http://texturizer.net/firefox/

Wow, this site makes my konqueror crash with a seg fault -- never seen
this before.

Bye,

-- 

Steffen Kaiser


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id56&alloc_id438&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] netbios/samba

2004-03-29 Thread Steffen Kaiser
On Mon, 29 Mar 2004, [EMAIL PROTECTED] wrote:

> im looking for some Netbios/SAMBA that i could install under
> FreeDOS. I tryed software made by microsoft ( Network Client 3.0 )
> and it works perfect but im not sure can i use it legally and prefer
> to use software made not by M$.

The MS Client is usually considered "Freeware" and freely downloadable
from MS FTP sites.

I know of only one other implementation: IBM LANMAN. When I tried it, it
looks more flexible, but with larger requirement of memory and disk space
-- however, I have no knowledge to tweak every bit herein.
Both client share a fair amount of tools, concepts and drivers - what a
wonder :-)

Anyway, maybe this page helps you:
http://www.jacco2.dds.nl/samba/index.html

Bye,

-- 

Steffen Kaiser


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Timezone troubles with ZIP

2004-06-07 Thread Steffen Kaiser
On Mon, 7 Jun 2004, Eric Auer wrote:
Hello Eric,
Hi, I found that the
set TZ=Europe/Berlin
or whatever else should be used as TZ string follows no
sane / recognizable system for the DOS version of ZIP:
Aehm, unzip parses the original POSIX TZ contents, which is like so:
CET1EET
the "1" is the offset from GMT (aka UTC). If the second timezone ID (3 
letters) is present, DST is active; if there are some more strings 
(delimited by commas or semicolons -- I don't remember), they specify when 
to activate DST (hence, they automatically honor the 2nd timezone or 
don't). Note: The DST-timezone is not the 4-letter code, e.g. CEST, but 
the 3-letter code of the "next" (or correspondning non-DST) timezone, in 
this case EET==GMT+2.

The description can be found in the POSIX docs, e.g.:
http://unixhelp.ed.ac.uk/CGI/man-cgi?tzset+3
Ignore anything about "directories", e.g. "TZ=Europe/Berlin" means 
directories. In this case your unzip had to be compiled by a compiler that 
ships the /etc/timezone-hierarchie.

However, the problem then is that the time() function has to return _GMT_. 
This involves that the RTL(!!) of the compiler mangles the local time, as 
I don't see that unzip implements anything in this regards. It, therefore, 
depends on the compiler, if TZ is honored correctly.

the timestamps. Maybe I have to tell Linux that DOS timestamps represent
local time? Which mount option can be used to do this?
Yeah, good luck ;-)
http://www.uwsg.iu.edu/hypermail/linux/kernel/9911.2/0626.html
Bye,
--
Steffen Kaiser
---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the one
installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Eric's new and shiny inofficial FreeDOS 1.0/2.0 TODO list ready

2004-07-20 Thread Steffen Kaiser
On Tue, 20 Jul 2004, Eric Auer wrote:
Hello Eric,
KEYB and MODE/DISPLAY are intentionally left out, and VERIFY is
actually a FreeCOM-internal command now. MKEYB is the unlucky
It might be good to keep those programs around, say like DOS 6's forth 
floppy (was it named "SUPPLEMENT DISK"??) containing various old or, from 
point of view of the distributor, out-dated programs; in case they might 
be handy again. e.g. one could exclude VERIFY from FreeCOM. There were 
others, but I don't remember.

Just an idea.
Bye,
--
Steffen Kaiser
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Please remove my message in Sourceforge

2004-07-28 Thread Steffen Kaiser
On Wed, 28 Jul 2004, Frederick Thomas wrote:
The problem with standards, is that they become standard. Then they
get incorporated into email ripping engines as standards.
Exactly. And to obscure email addresses is only a tip of a programmer's 
finger to get into a ripping machine (actually, I cannot believe that all 
the various @ -> at|(at)|-at-|ad| etc.pp. mappings are obscure enough).

Actually, I suggest you set up a specific mailbox for a specific purpose 
and protect it by a whitelist-only filter that bounces failed message with 
a descriptive message. Spamware of these days does not spam one individual 
personally, hence, they don't care about such errors and try to figure out 
how to bypass such filters.

Bye,
--
Steffen Kaiser
---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: *** SPAM *** [Freedos-user] can I bundle FreeDos with commercial application?

2004-08-10 Thread Steffen Kaiser
On Tue, 10 Aug 2004, dongfeng wang wrote:
Please see:
http://fd-doc.sourceforge.net/faq/cgi-bin/viewfaq.cgi?faq=General_Information/7
Bye,
Steffen
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] can I bundle FreeDos with commercial application?

2004-08-11 Thread Steffen Kaiser
On Tue, 10 Aug 2004, Luchezar Georgiev wrote:
Please see:
http://fd-doc.sourceforge.net/faq/cgi-bin/viewfaq.cgi?faq=General_Information/7
I see an empty page there.
Hmm, see: 
http://fd-doc.sourceforge.net/faq/cgi-bin/viewaudit.cgi?faq=Using_FreeDOS/7

on Tuesday the entry was moved from General Info into Using FreeDOS, 
hence, the URL is now:

http://fd-doc.sourceforge.net/faq/cgi-bin/viewfaq.cgi?faq=Using_FreeDOS/7
Hello Jim, is it possible to omit the category from the URLs in the 
browsers, so one captures just >>?faq=7<< and the server is acting like 
using the "Find faq # XYZ" form?

Bye,
--
Steffen Kaiser
---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
Freedos-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freedos-user