[fpc-pascal] xmlrpc unit

2010-06-30 Thread ik
Hello List,

It seems that the xmlrpc unit is missing from fpc source tree (trunk).
Was it renamed (to what) or was it remove (why was that) ?

Thanks,
Ido

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

Re: [fpc-pascal] xmlrpc unit

2010-06-30 Thread Jonas Maebe

On 30 Jun 2010, at 17:37, ik wrote:

> It seems that the xmlrpc unit is missing from fpc source tree (trunk).
> Was it renamed (to what) or was it remove (why was that) ?

r15346 | michael | 2010-05-30 16:14:18 +0200 (Sun, 30 May 2010) | 1 line
Changed paths:
   D /trunk/packages/fcl-net/src/httpbase.pp
   D /trunk/packages/fcl-net/src/httpclient.pp
   D /trunk/packages/fcl-net/src/mkxmlrpc.pp
   D /trunk/packages/fcl-net/src/servlets.pp
   D /trunk/packages/fcl-net/src/xmlrpc.pp

* Deprecated in favour of fcl-web and WST

How to find this sort of information:
cd fpc
svn log -v |less
/xmlrpc


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


Re: [fpc-pascal] xmlrpc unit

2010-06-30 Thread ik
Thanks,

I do not understand how do I create an xmlrpc server using fcl-web


Ido



On Wed, Jun 30, 2010 at 19:00, Jonas Maebe wrote:

>
> On 30 Jun 2010, at 17:37, ik wrote:
>
> > It seems that the xmlrpc unit is missing from fpc source tree (trunk).
> > Was it renamed (to what) or was it remove (why was that) ?
>
> r15346 | michael | 2010-05-30 16:14:18 +0200 (Sun, 30 May 2010) | 1 line
> Changed paths:
>   D /trunk/packages/fcl-net/src/httpbase.pp
>   D /trunk/packages/fcl-net/src/httpclient.pp
>   D /trunk/packages/fcl-net/src/mkxmlrpc.pp
>   D /trunk/packages/fcl-net/src/servlets.pp
>   D /trunk/packages/fcl-net/src/xmlrpc.pp
>
> * Deprecated in favour of fcl-web and WST
>
> How to find this sort of information:
> cd fpc
> svn log -v |less
> /xmlrpc
>
>
> Jonas
> ___
> 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] xmlrpc unit

2010-06-30 Thread Michael Van Canneyt



On Wed, 30 Jun 2010, ik wrote:


Thanks,

I do not understand how do I create an xmlrpc server using fcl-web



0. Start an fcl-web application.
1. Create an interface and an implementation using WST.
   (WST has plenty of examples. Easiest is to define an interface
MyInterface = Interface ['guid']
end;
and run ws_helper to create metadata, proxy and binder. Add these units
to your project.
2. Register the XML-RPC streaming method.
3. Create and register a WSTWebModule.
   See the demo that comes with WST on how to do that.

That's it.

Michael.



Ido



On Wed, Jun 30, 2010 at 19:00, Jonas Maebe wrote:



On 30 Jun 2010, at 17:37, ik wrote:


It seems that the xmlrpc unit is missing from fpc source tree (trunk).
Was it renamed (to what) or was it remove (why was that) ?


r15346 | michael | 2010-05-30 16:14:18 +0200 (Sun, 30 May 2010) | 1 line
Changed paths:
  D /trunk/packages/fcl-net/src/httpbase.pp
  D /trunk/packages/fcl-net/src/httpclient.pp
  D /trunk/packages/fcl-net/src/mkxmlrpc.pp
  D /trunk/packages/fcl-net/src/servlets.pp
  D /trunk/packages/fcl-net/src/xmlrpc.pp

* Deprecated in favour of fcl-web and WST

How to find this sort of information:
cd fpc
svn log -v |less
/xmlrpc


Jonas
___
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


[fpc-pascal] Converting a graphical DOS program to fpc

2010-06-30 Thread Simon Webster
Dear Free Pascallers,

I'm wanting to convert a Turbo Pascal program to fpc, to run
(ultimately) under linux, although I'm actually developing on a mac,
and using virtualbox to run ubuntu. The program in question is a
relatively large non OOP program which makes substantial use of BGI
graphics. I'm wondering what would be the best/easiest way of
achieving this?

I tried using the graph unit & svgalib under a virtualized ubuntu, but
even the simplest test program (InitGraph, putpixel, CloseGraph)
produces a runtime error 216. Even if I got this working, I get the
feeling that directly bashing the graphics hardware in such a
primitive way is not the best way to go.

Ideally I would like to be able to just open a large window that I can
use as a bitmap for all my graphics drawing, ideally using graph unit
syntax compatible functions. What's the simplest way to do this - I
tried looking in the documentation but don't really know where to
start. Do I need to use 'Lazarus' if I want to open a window? I've no
experience with Delphi or Object Pascal so that whole aspect of fpc is
completely alien to me.

Many thanks in advance for any help,
Simon
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] xmlrpc unit

2010-06-30 Thread Graeme Geldenhuys
Op 2010-06-30 18:00, Jonas Maebe het geskryf:
> 
> * Deprecated in favour of fcl-web and WST

In all fairness, deprecated normally means it is "marked" as deprecated at
least for one release *before* it gets deleted.  If I was ik, I'd be pretty
pissed off working on a project that might be released in a week or two.
Already tried and tested and passed QA, and then suddenly need to switch to
an unfamiliar technology that has not passed our QA yet.  Just my 2c worth.


> How to find this sort of information:
> cd fpc
> svn log -v |less
> /xmlrpc

Or if you were using the Git mirror:

  $ git log -Sxmlrpc --name-status


-S searches the actual patch (code) committed.
--name-status lists the actual files that matched the search term


Regards,
  - Graeme -

-- 
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://opensoft.homeip.net/fpgui/

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