The wiki
#1
Posted 03 December 2010 - 01:42 PM
would like to see something similar to
<!-- m -->http://www.autohotke...pic.php?t=47791<!-- m -->
but with comments and more examples
#2
Posted 03 December 2010 - 01:59 PM
Hugov's recent work on the FAQ in particular is fantastic.
It is links back to the forum but in a formatted way which is much easier than searching for the answer every time.
I'd like to see more attention paid to the wiki as it is easy to forget that it's there (I'm guilty of this in the initial excitement of seeing a question I can answer)
Wiki integration into the forum was mentioned as a possible outcome of the forum upgrade but I'm not familiar enough with phpBB v3 to know what form this would take.
I would be up for fixing parts of the wiki but my main problem at the moment is finding the time to do a proper job of it alongside my other projects and jobs. I did start a GUI tutorial but other things got in the way. It is on my ToDo list though.
#3
Posted 03 December 2010 - 02:13 PM
#4
Posted 03 December 2010 - 02:23 PM
Hugov's recent work on the FAQ in particular is fantastic.
he has indeed done a good job (:
#5
Posted 03 December 2010 - 02:38 PM
i am going to attempt to make a The-docs(html) to wiki conversion script so that i could run each page through it, allthough im not sure yet if it would work out
edit: changed my mind actually it would be pointless
#6
Posted 03 December 2010 - 05:42 PM
The index of a book just links back to the book, and is very useful.Atm the wiki is a bit pointless because all it does is link back to ahk forums...
#7
Posted 03 December 2010 - 09:31 PM
But remember static and client side dynamic content of any format can be created with your favorite html editor and uploaded to autohotkey.net
#8
gamax92
Posted 04 December 2010 - 12:52 AM
#9
Posted 04 December 2010 - 01:57 AM
Also, syntax highlighting would look nice. I don't know much about wikis, how hard would that be to implement?
#10
gamax92
Posted 04 December 2010 - 03:04 AM
#11
gamax92
#12
gamax92
#13
Posted 04 December 2010 - 03:18 AM
It's the colors the source code is in. It could be basic like on the forum where it highlights comments only, or more complicated where it highlights numbers, functions, strings, etc. each in their own color.Syntax highlighting?
Examples:
No syntax highlighting:
[color=darkblue];This is a comment
Func("This is text.", 50 * 2)
return
Func(String, Int)
{
Msgbox, %String% - %Int%
return
}[/color]Basic highlighting:
;This is a comment
Func("This is text.", 50 * 2)
return
Func(String, Int)
{
Msgbox, %String% - %Int%
return
}More advanced:
;This is a comment
[color=violet]Func[/color]([color=red]"This is text."[/color], [color=cyan]50[/color] * [color=cyan]2[/color])
[color=violet]return[/color]
[color=violet]Func[/color](String, Int)
{
[color=violet]Msgbox[/color], [color=indigo]%String%[/color] - [color=indigo]%Int%[/color]
[color=violet]return[/color]
}
#14
gamax92
Posted 04 December 2010 - 03:38 AM
#15
Posted 04 December 2010 - 04:59 AM
Edit:
So i changed control send using a converter of html to wiki
<!-- m -->http://www.uni-bonn.... ... s.php#wiki<!-- m -->
and it looks great except the command list makes it way down the bottom of the page. and now i cant edit it. Check it out:
<!-- m -->http://www.autohotke... ... ErrorLevel<!-- m -->




