[fpc-pascal] Re: fpc-pascal Digest, Vol 24, Issue 40

2006-08-28 Thread S.Anıl Yılmaz




[EMAIL PROTECTED] yazmış:

  Send fpc-pascal mailing list submissions to
	fpc-pascal@lists.freepascal.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.freepascal.org/mailman/listinfo/fpc-pascal
or, via email, send a message with subject or body 'help' to
	[EMAIL PROTECTED]

You can reach the person managing the list at
	[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of fpc-pascal digest..."
  
  

Today's Topics:

   1.  International Characters in Console mode programs...
  (S.An?l Y?lmaz)
   2. Re:  International Characters in Console mode programs...
  (Marco van de Voort)
  
  
  
  

  

Konu: 
[fpc-pascal] International Characters in Console mode programs...
  
  

Kimden:

"S.Anıl Yılmaz" <[EMAIL PROTECTED]>
  
  

Tarih: 
Sat, 26 Aug 2006 17:29:15 +0300
  
  

Kime: 
Free Pascal Mailing List 
  

  
  

  

Kime: 
Free Pascal Mailing List 
  

  
  
Hi,
  
  
I cannot manage to print any Turkish characters in console. (Code Page
ISO-8859-9), I use Windows XP Turkish, I can type and display Turkish
characters, but if my FP program's output displays these kind of text,
only spaces or "?" appear instead of intended characters. I use
widestrings to represent these chars. There is something I don't do
right I am sure, but what is it? Thanks in advance.
  
Anil
  
  
  
  
  
  

  

Konu: 
Re: [fpc-pascal] International Characters in Console mode programs...
  
  

Kimden:

[EMAIL PROTECTED] (Marco van de Voort)
  
  

Tarih: 
Sat, 26 Aug 2006 17:26:14 +0200 (CEST)
  
  

Kime: 
FPC-Pascal users discussions 
  

  
  

  

Kime: 
FPC-Pascal users discussions 
  

  
  
  
I cannot manage to print any Turkish characters in console. (Code Page 
ISO-8859-9), I use Windows XP Turkish, I can type and display Turkish 
characters, but if my FP program's output displays these kind of text, 
only spaces or "?" appear instead of intended characters. I use 
widestrings to represent these chars. There is something I don't do 
right I am sure, but what is it? Thanks in advance.

  
  
This is one of the issues that 2.0.4 should at least improve upon. See the
2.0.4 versions on the FTP site.

  
  

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Thank you very much for this swift response. I'll try 2.0.4 as soon as
possible.
Anil


___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Fw: Ask about FPC

2006-08-28 Thread L505
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 27, 2006 7:12 PM
Subject: Ask about FPC


Hi!

I want ask something

i use PSP 1.6.0-release, but i don't know where i can find the tutorial, i just 
find
documentation for function.
Can you tell me how to using variabel function(getcgivar,getcgivar_s), md5enc 
and POST / GET ?

Thx




___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] International Characters in Console mode programs...

2006-08-28 Thread Rimgaudas Laucius

Hello,

i cast a look at 2.0.4 source - it does not solves this kind of problems. I 
guess you prepared program using FP IDE. It uses OEM CP (CP857 for Turkish) 
for source encoding. Compiler misencodes these strings because i guess it 
uses RTL widestring manager whitch assumes source encoded in ACP (Windows 
1254 for turkish).


Solution: Widestrings and FP IDE are not compatible. 1) use strings instead 
of widestrings 2) use unicode (UTF-8) enabled editor instead of FP.


For developers:
Do not you consider write(widestring) implementation without conversion into 
ansistring better? For example: writting into console may be implemented 
using WriteConsole(W) instead of WriteFile.




- Original Message - 
From: "Marco van de Voort" <[EMAIL PROTECTED]>

To: "FPC-Pascal users discussions" 
Sent: Saturday, August 26, 2006 6:26 PM
Subject: Re: [fpc-pascal] International Characters in Console mode 
programs...




I cannot manage to print any Turkish characters in console. (Code Page
ISO-8859-9), I use Windows XP Turkish, I can type and display Turkish
characters, but if my FP program's output displays these kind of text,
only spaces or "?" appear instead of intended characters. I use
widestrings to represent these chars. There is something I don't do
right I am sure, but what is it? Thanks in advance.


This is one of the issues that 2.0.4 should at least improve upon. See the
2.0.4 versions on the FTP site.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal




___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] International Characters in Console mode programs...

2006-08-28 Thread Rimgaudas Laucius



2) use unicode (UTF-8) enabled editor instead of FP.

Any windows editor will fit too.

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] Which ARM cpus are supported?

2006-08-28 Thread Marc Santhoff
Hi,

the subject tells most of what i want to know:

Which exact models of ARM-cores are supported?

Since there are several different ones even in the ARM9 area and I'm
thinking about using something like a 920T,  926xx or maybe even PXA255
I'd like to be sure if there is a chance of getting fpc running without
reinventing the world.

TIA,
Marc


___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] International Chars... Codepages...

2006-08-28 Thread S.Anıl Yılmaz

My previous post;

I cannot manage to print any Turkish characters in console. (Code Page 
ISO-8859-9), I use Windows XP Turkish, I can type and display Turkish 
characters, but if my FP program's output displays these kind of text, 
only spaces or "?" appear instead of intended characters. I use 
widestrings to represent these chars. There is something I don't do 
right I am sure, but what is it? Thanks in advance.
   


And Marco's reply...



This is one of the issues that 2.0.4 should at least improve upon. See the
2.0.4 versions on the FTP site.

 


I tried 2.0.4 and 2.1.1 today. No success though. My code is as follows...



program test_turkish;
uses crt;
const
   strtowritten:widestring='TÜRKÇE'; //There is 2 Turkish characters in 
this string
begin
writeln(strtowritten);
end.



I also read about the {$CODEPAGE UTF8} compiler global directive. But no use 
either...
Thanks.
Anil
 




___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] FPC 2.0.4 is out!

2006-08-28 Thread Tomas Hajny
Hello everybody,

I'm happy to announce that release 2.0.4 is 
finally out, bringing you lots of fixes and some 
enhancements over the previous officially 
released versions. I hope you'll enjoy the 
release, special thanks go to all of you who 
helped us with their all kinds of contributions 
(bug reports, patches and release candidate 
testing).

Greetings

Tomas
(on behalf of the whole FPC team)
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] Re: [fpc-devel] FPC 2.0.4 is out!

2006-08-28 Thread Daniël Mantione


Op Tue, 29 Aug 2006, schreef Rob van der Linde:

> Thank you very much, I was waiting for the release of 2.0.4 so I could
> compile .DEB packages for Ubuntu Dapper as I had previously compiled the
> 2.0.2 release for Ubuntu for people to download. I just found out that
> there are now official .DEB packages so it will no longer be necessary
> for me to build them, great stuff.
> 
> It would be nice to see 64 bit .DEB packages downloadable too, in the
> future maybe. I think .DEB packages are very important to support, since
> Ubuntu is now one of the top Linux distros.

.deb packages will only be available if there are volunteers to build 
them. There were for i386, but not x86_64.

One problem with .deb packages (and also with .rpm) is that one needs a 
full Latex installation on his system in order to be able to compile the 
documentation. With .tar this is not necessary, because people who build 
a package can use a pre-built documentation set.

The result is that most people who maintain a platform choose to build 
.tar only. Of course, another point is that not everyone in the team uses 
Debian or a Debian derivate. The x86_64 release was built by someone who 
uses SuSE.

Daniël___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal