Re: [fpc-pascal] Interface syntax: Is possible don't use specialize in mode objfpc?

2015-07-24 Thread Michael Van Canneyt
On Fri, 24 Jul 2015, silvioprog wrote: After that, we can still see about new modes. I'm not arguing about that. Michael. Are you talking about compatibility to Delphi 5/7? There are already many new great components available on network, however it uses some basic new Delphi features lik

[fpc-pascal] access a google spreadsheet

2015-07-24 Thread duilio foschi
Hi! I'd like to sync an Android database using a google spreadsheet. I am aware of this code pascal-googleapis-oauth2 However I dont see a pascal implementation of Google Data APIs. Will have to use Python or Java ? Thank you Peppe ___ fpc-pascal ma

Re: [fpc-pascal] access a google spreadsheet

2015-07-24 Thread Michael Van Canneyt
On Fri, 24 Jul 2015, duilio foschi wrote: Hi! I'd like to sync an Android database using a google spreadsheet. I am aware of this code pascal-googleapis-oauth2 However I dont see a pascal implementation of Google Data APIs. they are in subversion, but will compile and work with FPC 2.6.4.

Re: [fpc-pascal] Modems etc.

2015-07-24 Thread Mark Morgan Lloyd
Lukasz Sokol wrote: On 20/07/15 17:32, Mark Morgan Lloyd wrote: Lukasz Sokol wrote: It's been years since I had anything to do with DSP, unfortunately, but with the FFT running on the sliding 26-sample-long window, and a /reverse/ FFT to produce the 26-long sample from just having a byte or 2 w

Re: [fpc-pascal] access a google spreadsheet

2015-07-24 Thread duilio foschi
sorry to be so ignorant. I never used subversion. I tried the following, with no success: D:\Program Files\SlikSvn\bin>svn checkout http://svn.freepascal.org/svn/trunk//p ackages/googleapi svn: E175002: Unexpected HTTP status 405 'Method Not Allowed' on '/svn/trunk/pac kages/googleapi' svn: E17

[fpc-pascal] another xml question

2015-07-24 Thread Chris Moody
Hi all, For the app I'm writing, it will have 3 elements in the XML document it reads. The first 2 will only have one child element. The third one will be from 1 to whatever. I'm also designing the app that will create the XML file for the app to read also, so a couple of questions: Would

Re: [fpc-pascal] access a google spreadsheet

2015-07-24 Thread duilio foschi
I could download the needed files by using this nice application: DownloadSVN.exe It is only 19KB and all I need to enter is: 1. the URL of the repository 2. the name of the destination directory See http://i60.tinypic.com/ju8l6o.jpg No install, no manual, no stress :) Thank you Peppe 2015-0

Re: [fpc-pascal] another xml question

2015-07-24 Thread Marc Santhoff
On Fr, 2015-07-24 at 11:57 -0700, Chris Moody wrote: > Would it be easiest to introduce a fourth element to the XML that says > how many children the 3rd element has? Or is there an easy way already > to get this and just run a for next loop to read each child? Maybe sth. like this would do:

[fpc-pascal] Parsers and Unicode

2015-07-24 Thread Mark Morgan Lloyd
When writing something like a parser, does FPC have anything that exposes the properties of each Unicode codepoint? I'm thinking in particular of Unicode properties like BidiMirroring, which Perl6 uses to define bracketing characters. ftp://ftp.unicode.org/Public/UNIDATA/BidiMirroring.txt --