Re: Please remove misleading examples from D's website

2011-12-01 Thread Marco Leise
Am 01.12.2011, 09:34 Uhr, schrieb Dejan Lekic : Then we need documentation versioning. Choose your version and get the current documentation. Things not in the current version shouldn't exist in its documentation. Again I disagree. Deprecated and/or removed things should be in every document

Re: Please remove misleading examples from D's website

2011-12-01 Thread Dejan Lekic
> Then we need documentation versioning. Choose your version and get the > current documentation. Things not in the current version shouldn't exist > in its documentation. Again I disagree. Deprecated and/or removed things should be in every documentation. Perhaps a whole section called "Removed

Re: Please remove misleading examples from D's website

2011-11-30 Thread Hans Uhlig
On 11/30/2011 9:53 AM, Dejan Lekic wrote: The reason why i wrote what i wrote is simple - so people who read legacy D code understand it has been removed or deprecated. Then we need documentation versioning. Choose your version and get the current documentation. Things not in the current vers

Re: Please remove misleading examples from D's website

2011-11-30 Thread Dejan Lekic
The reason why i wrote what i wrote is simple - so people who read legacy D code understand it has been removed or deprecated.

Re: Please remove misleading examples from D's website

2011-11-30 Thread Trass3r
Feel free to open a pull request. (1) No idea how :( For small and fast edits github provides a nifty feature: https://github.com/blog/844-forking-with-the-edit-button

Re: Please remove misleading examples from D's website

2011-11-30 Thread Timon Gehr
On 11/30/2011 05:04 PM, Mehrdad wrote: On 11/30/2011 7:07 AM, Dejan Lekic wrote: No please! Do not remove, but add a note that those are either deprecated or removed and what a developer should do with a modern implementation of D2! Uhm, what? "Deprecated" means that the feature is still usabl

Re: Please remove misleading examples from D's website

2011-11-30 Thread Mehrdad
On 11/30/2011 5:33 AM, Trass3r wrote: Mehrdad Wrote: Please remove this from the home page: // Automatic or explicit memory management delete cl; It is obviously not doing what it implies. Similarly, please remove "Allocating Class Instances On The Stack" from the memory.html page:

Re: Please remove misleading examples from D's website

2011-11-30 Thread Mehrdad
On 11/30/2011 7:07 AM, Dejan Lekic wrote: No please! Do not remove, but add a note that those are either deprecated or removed and what a developer should do with a modern implementation of D2! Uhm, what? "Deprecated" means that the feature is still usable, but discouraged. 'delete' and 'scope

Re: Please remove misleading examples from D's website

2011-11-30 Thread Dejan Lekic
No please! Do not remove, but add a note that those are either deprecated or removed and what a developer should do with a modern implementation of D2!

Re: Please remove misleading examples from D's website

2011-11-30 Thread Trass3r
Mehrdad Wrote: > Please remove this from the home page: > // Automatic or explicit memory management > delete cl; > It is obviously not doing what it implies. > > Similarly, please remove "Allocating Class Instances On The Stack" from > the memory.html page: > scope c = new C();

Re: Please remove misleading examples from D's website

2011-11-30 Thread maarten van damme
I don't know about the examples you mentioned but I agree. Last time I tried shared still didn't work and having not working examples not only leads to a lot of confusion but also on people disliking a perfectly fine language

Please remove misleading examples from D's website

2011-11-29 Thread Mehrdad
Please remove this from the home page: // Automatic or explicit memory management delete cl; It is obviously not doing what it implies. Similarly, please remove "Allocating Class Instances On The Stack" from the memory.html page: scope c = new C(); // c is allocated on the stack