TODO 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. TODO - List of things to do as of 2005/01/29
  2. Suggestions for things to add are welcome, if you have a feature request you
  3. can either post it to the forums:
  4. http://qbnz.com/highlighter/forum.php
  5. Or to the feature request tracker:
  6. http://sourceforge.net/tracker/?group_id=114997&atid=670234
  7. TODO for version 1.0.8.x
  8. - Rework the load_from_file method and the one for getting a file extension,
  9. as documented in the source.
  10. - use analogous vars to $next_comment_regexp_pos for more GeSHi structures,
  11. should reduce number of functions called and hence improve performance
  12. - make a set of default colours which can be used in the language files.
  13. this way we can give languages a uniform look and maybe even add "themes"
  14. - Get better coverage in our coderepo
  15. - README / INSTALL / ... file for phpdoc integration => take geshi-doc.*?
  16. - rework HARDQUOTE + styles, currently this is a bit of a mess imo (milian)
  17. - Allow per-keywordgroup AutoCaps/NoCaps
  18. - Complete API to support latest features
  19. set_number_style ($key missing)
  20. set_string_style ($key missing)
  21. set_case_keywords (support for per_keywordgroup AutoCaps)
  22. TODO for version 1.2.0
  23. - Rewrite engine to use remove/replace method (will hopefully almost
  24. eliminate the need for regular expressions except for numbers/methods
  25. etc). This will also assist for making different output formats [DONE]
  26. - "Intelligent" output format - eg if the user doesn't want lines to
  27. wrap and wants line numbers don't use <ol>, use the <table> method
  28. instead. (This saves on output)
  29. - Clear split between "public" and "private" methods [DONE]
  30. - PHP5 version
  31. - "Themes" for styles - basically pre-made stylesheets that can be used
  32. to highlight code of any language in a similar manner [DONE]
  33. - "Dialects" for languages - eg php4, php5. One master language definition
  34. file, and a bunch of "specialised" dialect files for each language
  35. Ability to specify a "specialised" dialect as default? [DONE]
  36. - Look at load/memory usage and try to reduce
  37. - Make tabs into tab-stops like a normal editor [DONE]
  38. - Ability to add more than one multiline comment or string [DONE]
  39. - Ability to specify that strings cannot be multiline [DONE]
  40. - Create a "wrapper" class for ultra-easy use
  41. - Code written in a style that conforms to a phpdoc utility [DONE, PEAR]
  42. - Dig functions/methods out of code and where they are called make an internal
  43. link back to their definition
  44. TODO for version 2.0.0
  45. - Support for multiple output formats (XHTML, XML, PDF, RTF etc) [DONE IN 1.2]
  46. - Support for auto-indent/code "beautifing"
  47. - Option for "Lite" highlighting - aims for speed and low server load
  48. - "Intelligent" highlighting inside comments, and ability to highlight
  49. source in multiple languages at once (eg PHP+HTML) [DONE IN 1.2]
  50. - Perhaps a script on the GeSHi site that would map urls to appropriate
  51. definitions and relocate the user? (eg, java documentation is
  52. structured in such a way that urls are not able to be used with GeSHi.
  53. Instead the URL could become:
  54. http://qbnz.com/highlighter/redirect.php?lang=java&kw=KeyWord
  55. and that script would redirect to the correct location.
  56. [BETTER FIX IN 1.2]
  57. $Id: TODO 1725 2008-08-08 11:56:36Z benbe $