Re: revamped candydoc

2012-10-13 Thread Jacob Carlborg
On 2012-10-12 17:05, Aziz K. wrote: Yeah, no disagreement there. It's working fine thanks to the awesome work SiegeLord put into porting it to D2. I'll definitely stay with Tango, but external dependencies can be quite annoying, so maybe I'll just copy the modules I need and leave the rest.

Re: revamped candydoc

2012-10-13 Thread Jacob Carlborg
On 2012-10-12 16:55, Aziz K. wrote: That was a good read, but unfortunately it deterred me from using submodules. Sounds like too much trouble for me. It's not worth the hassle if it requires that much care and attention. Only git can get away with such atrocious usability issues. lol Ok, I

Re: revamped candydoc

2012-10-13 Thread Jacob Carlborg
On 2012-10-12 21:06, Aziz K. wrote: What? You don't like my soft, green colours? Shame on you! :P Hehe :) Ok, I'm not happy with the style myself, but I want to concentrate on functionality more atm. Understandable. I'm not very good with design and graphics myself so I probably

Re: revamped candydoc

2012-10-12 Thread Jacob Carlborg
On 2012-10-11 22:16, Aziz K. wrote: Interesting, I didn't realize until now that you can do that with git. Is it possible to set the external git repo to a specific commit? I'll consider this option. Thanks! That's the whole point, it's locked to a specific commit and you need to force

Re: revamped candydoc

2012-10-12 Thread Jacob Carlborg
On 2012-10-11 22:16, Aziz K. wrote: On Thu, 11 Oct 2012 21:33:15 +0200, Jacob Carlborg d...@me.com wrote: If you're using git you could add Tango as a submodule. I'm talking about Tango-D2 here, I heard you're porting Dil to D2. It might be possible for D1 as well using git svn.

Re: revamped candydoc

2012-10-12 Thread Jakob Ovrum
On Thursday, 11 October 2012 at 14:26:54 UTC, Dan wrote: Also, pointers to any doc generation setup with decent styling that works out of the box would be great. bootDoc[1] uses Twitter's Bootstrap theme for styling, and has a lot of extra features implemented with JavaScript. It works right

Re: revamped candydoc

2012-10-12 Thread Dan
On Thursday, 11 October 2012 at 18:08:47 UTC, Aziz K. wrote: I'll be happy to help you compile DIL yourself. That way I can see where my assumptions are false and my instructions are lacking and make it work for different platforms and needs. I've been considering just copying Tango's files to

Re: revamped candydoc

2012-10-12 Thread Aziz K.
On Fri, 12 Oct 2012 08:16:54 +0200, Jacob Carlborg d...@me.com wrote: Why is that? Tango is working just fine and Phobos is still missing some stuff that Tango has. Actually, I'm using both and there's nothing wrong with that. Tango is just yet another third party library. Yeah, no

Re: revamped candydoc

2012-10-12 Thread Aziz K.
On Thu, 11 Oct 2012 21:30:11 +0200, Jacob Carlborg d...@me.com wrote: I liked the style that the Tango docs are using much better. What? You don't like my soft, green colours? Shame on you! :P Ok, I'm not happy with the style myself, but I want to concentrate on functionality more atm.

revamped candydoc

2012-10-11 Thread Dan
Looking to get nice D documentation generation setup. According to this, candydoc is revamped. http://www.digitalmars.com/d/archives/digitalmars/D/announce/Revamp_of_CandyDOC_23131.html I have vibed installed and tried to use this candydoc. I try to follow instructions and attempt to get a bit

Re: revamped candydoc

2012-10-11 Thread Aziz K.
Hi, You might also want to check out my solution to generating documentation for D projects. I've just run DIL on Phobos2 and uploaded the files to my Dropbox account: http://dl.dropbox.com/u/17101773/doc/phobos2/index.html Where else would you get a PDF of everything in Phobos2, but here

Re: revamped candydoc

2012-10-11 Thread Dan
On Thursday, 11 October 2012 at 15:25:37 UTC, Aziz K. wrote: Hi, You might also want to check out my solution to generating documentation for D projects. Many thanks Aziz. The produced documentation is very nice! How hard is it to set up to create that documentation. It may be what I'm

Re: revamped candydoc

2012-10-11 Thread Aziz K.
It's very easy to use DIL for doc generation (at least I try hard to make it so.) In your case you'd just have to run this command (use -I as well if required): dil ddoc path/to/output/ package1/*.d package2/*.d -v --kandil -hl Check out http://code.google.com/p/dil/wiki/Kandil for more

Re: revamped candydoc

2012-10-11 Thread Dan
On Thursday, 11 October 2012 at 16:45:08 UTC, Aziz K. wrote: It's very easy to use DIL for doc generation (at least I try hard to make it so.) In your case you'd just have to run this command (use -I as well if required): dil ddoc path/to/output/ package1/*.d package2/*.d -v --kandil -hl

Re: revamped candydoc

2012-10-11 Thread Aziz K.
I'll be happy to help you compile DIL yourself. That way I can see where my assumptions are false and my instructions are lacking and make it work for different platforms and needs. I've been considering just copying Tango's files to my src folder, because it would make compiling much

Re: revamped candydoc

2012-10-11 Thread Jacob Carlborg
On 2012-10-11 20:08, Aziz K. wrote: I'll be happy to help you compile DIL yourself. That way I can see where my assumptions are false and my instructions are lacking and make it work for different platforms and needs. I've been considering just copying Tango's files to my src folder, because it

Re: revamped candydoc

2012-10-11 Thread Jacob Carlborg
On 2012-10-11 17:01, Aziz K. wrote: Hi, You might also want to check out my solution to generating documentation for D projects. I've just run DIL on Phobos2 and uploaded the files to my Dropbox account: http://dl.dropbox.com/u/17101773/doc/phobos2/index.html I liked the style that the Tango

Re: revamped candydoc

2012-10-11 Thread Aziz K.
On Thu, 11 Oct 2012 21:33:15 +0200, Jacob Carlborg d...@me.com wrote: If you're using git you could add Tango as a submodule. I'm talking about Tango-D2 here, I heard you're porting Dil to D2. It might be possible for D1 as well using git svn. Interesting, I didn't realize until now that