Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-25 Thread Jean SUZINEAU
Hello, I have a big bunch of freepascal code under lgpl, with little documentation and a lot of identifiers in French, I hesitated a long time before sending this message,  ;-) , but may be it could be useful for you. From 2002 to 2017 I've been developing functionalities for printing

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-07 Thread Michael Van Canneyt
On Sun, 7 Jul 2019, Sven Barth via fpc-pascal wrote: Graeme Geldenhuys schrieb am So., 7. Juli 2019, 11:45: Does FPC support annotations yet? In the Object Pascal world they are called custom attributes, are accessible through the RTTI and their syntax is [AttributeName(Arguments)].

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-07 Thread Graeme Geldenhuys
On 07/07/2019 11:09 am, Sven Barth via fpc-pascal wrote: > There exists a branch with them and it's "just" a matter of integrating > them into trunk. Nice, that will be a real game changer! Thanks for the info Sven. Regards, Graeme ___ fpc-pascal

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-07 Thread Sven Barth via fpc-pascal
Graeme Geldenhuys schrieb am So., 7. Juli 2019, 11:45: > Does FPC support annotations yet? > In the Object Pascal world they are called custom attributes, are accessible through the RTTI and their syntax is [AttributeName(Arguments)]. There exists a branch with them and it's "just" a matter of

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-07 Thread Graeme Geldenhuys
Hi, Does FPC support annotations yet? So in the future (or hopefully now), we could create something like what many Java frameworks allow. Simply annotate a plain class to do the magic for you - a massive reduction in boilerplate code. So we could end up with a RESTful resource/controller as

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-07-03 Thread silvioprog
Hi Darius. On Thu, Jun 27, 2019 at 1:10 PM Darius Blaszyk wrote: > Hi all, > > I have been asked to write a limited functionality / mini ERP type of > software for an NGO that is setting up a hospital. I'm doing this in my own > time and free of charge. The compiler and IDE of choice are of

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-28 Thread Zamrony P. Juhara via fpc-pascal
Live example of https://github.com/fanoframework/fano-app when deploy and setup correctly with web server can be access here  https://fano.juhara.id/ So you will be able to access for example https://fano.juhara.id/hello/darius or https://fano.juhara.id/hello/darius/json  (JSON output) Unless you

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-28 Thread Zamrony P. Juhara via fpc-pascal
Hi Darius, I am author of Fano Framework. I encourage people to try Fano Framework, but as of now, I would not advise you to use it on production setup. While many of web framework features are already built, they have not been tested on production. The error Exception class : 

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-28 Thread Michael Van Canneyt
On Fri, 28 Jun 2019, Michael Van Canneyt wrote: The demo's that were compiled, I tried to open locally and from the cgi-bin folder, but no succes. For instance the demobar example only shows: TChartJS Create bar charts using Pas2JS & ChartJS (view source ) It works here. What do you

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Marcos Douglas B. Santos
On Thu, Jun 27, 2019 at 7:58 PM Darius Blaszyk wrote: >> >> You can use fpWeb, which came with FPC. > > Great, is there any database master/detail example that I could use to learn? > I have no idea yet how to program the visuals for such an application. Any > tips > would be greatly

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Michael Van Canneyt
On Fri, 28 Jun 2019, Darius Blaszyk wrote: pas2js is used as the basis for TMS Web Core (a commercial product for Delphi/lazarus. pas2js is meanwhile very mature. (I use it myself extensively :)) You must use this if you wish to include a lot of browser-side functionality. What do you mean,

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Darius Blaszyk
> > You can use fpWeb, which came with FPC. > Great, is there any database master/detail example that I could use to learn? I have no idea yet how to program the visuals for such an application. Any tips would be greatly appreciated! > I've wrote two simple articles about it, however written in

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Darius Blaszyk
Thank you for the suggestions and tips. > I can't inform you about fano. > I sent out a mail to the developer. Let's see what comes back. I think he is also on this list. The demo fano-app did only crash here, see below: Exception class : *ERouteHandlerNotFound* Message : *Route not found.

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Marcos Douglas B. Santos
On Thu, Jun 27, 2019 at 1:10 PM Darius Blaszyk wrote: > > Hi all, > > I have been asked to write a limited functionality / mini ERP type of > software for an NGO that is setting up a hospital. I'm doing this in my own > time and free of charge. The compiler and IDE of choice are of course >

Re: [fpc-pascal] Developing a mini ERP / web based development

2019-06-27 Thread Michael Van Canneyt
On Thu, 27 Jun 2019, Darius Blaszyk wrote: Hi all, I have been asked to write a limited functionality / mini ERP type of software for an NGO that is setting up a hospital. I'm doing this in my own time and free of charge. The compiler and IDE of choice are of course FreePascal & Lazarus.