Re: [fpc-pascal] CMS in Pascal ?

2016-03-12 Thread Christian-W. Budde
Hello Michael, while not being an entire CMS you can use DWScript (see https://www.delphitools.info/dwscript/) to write your code in a nice Object Pascal dialect. With this there are plenty of options such as a server side solution with DWSCript Web Server (scroll further down for more info

Re: [fpc-pascal] CMem issue?

2016-03-12 Thread dinmil
Opitions are like that (defaults) - does not include -gh (no heap trace) -MObjFPC -Scghi -O1 -g -gl -l -vewnhibq -FiC:\codetyphon\typhonTemp\lib\i386-win32 -FUC:\codetyphon\typhonTemp\lib\i386-win32\ -FEC:\codetyphon\typhonTemp\ Note - this is first time that Typhon behave this was. Even, beta

Re: [fpc-pascal] Fpc 3.0 Bug: type specialization and operator overload

2016-03-12 Thread Sven Barth
Am 12.03.2016 22:45 schrieb "Mazola Winstrol" : > > Hello, > > Fpc version: 3.0 (the one provided by Lazarus). > > Please confirm if this is a bug regarding operator overloading and type specialization. It is a quite difficult to explain, but i will try. > [snip] > > It seems

Re: [fpc-pascal] CMem issue?

2016-03-12 Thread Michael Van Canneyt
On Fri, 11 Mar 2016, dinmil wrote: program project1; {$mode delphi} uses cmem, Classes, SysUtils; var VBuffer: TBytes; VStream: TStream; begin VStream := TBytesStream.Create; try VBuffer := TEncoding.UTF8.GetBytes('abc'); VStream.WriteBuffer(VBuffer[0], Length(VBuffer));

[fpc-pascal] CMS in Pascal ?

2016-03-12 Thread Michael Van Canneyt
Hi, I'm looking for a minimalist flat-file CMS. There are many floating around, I found a list on e.g. http://www.hongkiat.com/blog/flat-cms/ Is there one written in Object Pascal ? Michael. ___ fpc-pascal maillist -