digitalmars.D.learn - Ini parsing library in D ?
- Tarun Ramakrishna (7/7) Feb 27 2011 Hi,
- Bekenn (3/10) Feb 27 2011 You can give htod a try: http://www.digitalmars.com/d/2.0/htod.html
- Tarun Ramakrishna (2/15) Feb 27 2011
- Jacob Carlborg (4/11) Feb 28 2011 There is one in Tango, tango.io.stream.Map.
- Trass3r (1/1) Feb 28 2011 http://www.dprogramming.com/ini.php
- Tarun Ramakrishna (5/6) Feb 28 2011 Hi Trass,
- Tarun Ramakrishna (4/11) Feb 28 2011 Err ok, I got excited too soon. That seems to be a D1 module..anyways
- Jesse Phillips (2/19) Feb 28 2011 It doesn't take much to make it work with D2. I have a working one, and ...
- Jesse Phillips (4/5) Feb 28 2011 Here it is:
- Tarun Ramakrishna (6/11) Feb 28 2011 Hi Jesse,
- =?UTF-8?B?IkrDqXLDtG1lIE0uIEJlcmdlciI=?= (8/15) Feb 28 2011 Here (D1+phobos):
Hi, Do we have a ini parser in D somewhere ? If not, is there some documentation anywhere that tells one how to wrap a simple C++ library like simple ini ? (Of course it isn't difficult to build a quick parser, just that someone would done this already) Thanks, Tarun
Feb 27 2011
On 2/27/2011 11:04 PM, Tarun Ramakrishna wrote:Hi, Do we have a ini parser in D somewhere ? If not, is there some documentation anywhere that tells one how to wrap a simple C++ library like simple ini ? (Of course it isn't difficult to build a quick parser, just that someone would done this already) Thanks, TarunYou can give htod a try: http://www.digitalmars.com/d/2.0/htod.html It's not perfect, but it may give you a decent starting point to work from.
Feb 27 2011
Thanks Bekenn! On Mon, Feb 28, 2011 at 12:53 PM, Bekenn <leaveme alone.com> wrote:On 2/27/2011 11:04 PM, Tarun Ramakrishna wrote:Hi, Do we have a ini parser in D somewhere ? If not, is there some documentation anywhere that tells one how to wrap a simple C++ library like simple ini ? (Of course it isn't difficult to build a quick parser, just that someone would done this already) Thanks, TarunYou can give htod a try: http://www.digitalmars.com/d/2.0/htod.html It's not perfect, but it may give you a decent starting point to work from.
Feb 27 2011
On 2011-02-28 08:04, Tarun Ramakrishna wrote:Hi, Do we have a ini parser in D somewhere ? If not, is there some documentation anywhere that tells one how to wrap a simple C++ library like simple ini ? (Of course it isn't difficult to build a quick parser, just that someone would done this already) Thanks, TarunThere is one in Tango, tango.io.stream.Map. -- /Jacob Carlborg
Feb 28 2011
Hi Trass, Wow! A pure, plain simple D module for ini parsing. Nice :)) Thanks! Tarun On Mon, Feb 28, 2011 at 3:34 PM, Trass3r <un known.com> wrote:http://www.dprogramming.com/ini.php
Feb 28 2011
Err ok, I got excited too soon. That seems to be a D1 module..anyways I am already halfway through writing my D2 Ini parser, so I guess its fine On Mon, Feb 28, 2011 at 6:07 PM, Tarun Ramakrishna <lenkite gmail.com> wrote:Hi Trass, Wow! A pure, plain simple D module for ini parsing. Nice :)) Thanks! Tarun On Mon, Feb 28, 2011 at 3:34 PM, Trass3r <un known.com> wrote:http://www.dprogramming.com/ini.php
Feb 28 2011
Tarun Ramakrishna Wrote:Err ok, I got excited too soon. That seems to be a D1 module..anyways I am already halfway through writing my D2 Ini parser, so I guess its fine On Mon, Feb 28, 2011 at 6:07 PM, Tarun Ramakrishna <lenkite gmail.com> wrote:It doesn't take much to make it work with D2. I have a working one, and has mention of what I changed so I should be able to redistribute it. I'll double check though.Hi Trass, Wow! A pure, plain simple D module for ini parsing. Nice :)) Thanks! Tarun On Mon, Feb 28, 2011 at 3:34 PM, Trass3r <un known.com> wrote:http://www.dprogramming.com/ini.php
Feb 28 2011
Jesse Phillips Wrote:It doesn't take much to make it work with D2. I have a working one, and has mention of what I changed so I should be able to redistribute it. I'll double check though.Here it is: https://github.com/he-the-great/ini.d/tree/D2 The master branch should also work with D1 and D2 compilers before 2.052. Maybe I should just update the catch block to capture Throwable there. The D2 branch has annotations too.
Feb 28 2011
Hi Jesse, This list is filled with terrific people and you are one of them :) Thanks! Tarun On Tue, Mar 1, 2011 at 12:01 AM, Jesse Phillips <jessekphillips+D gmail.com> wrote:Jesse Phillips Wrote:It doesn't take much to make it work with D2. I have a working one, and has mention of what I changed so I should be able to redistribute it. I'll double check though.Here it is: https://github.com/he-the-great/ini.d/tree/D2 The master branch should also work with D1 and D2 compilers before 2.052. Maybe I should just update the catch block to capture Throwable there. The D2 branch has annotations too.
Feb 28 2011
Tarun Ramakrishna wrote:Hi, =20 Do we have a ini parser in D somewhere ? If not, is there some documentation anywhere that tells one how to wrap a simple C++ library like simple ini ? (Of course it isn't difficult to build a quick parser, just that someone would done this already) =20Here (D1+phobos): https://bitbucket.org/jmb/spacecuted/src/tip/src/scd/settings.d Jerome --=20 mailto:jeberger free.fr http://jeberger.free.fr Jabber: jeberger jabber.fr
Feb 28 2011