Hi, people!
Doubt:
Anyone with a better understanding of contents of page
TODO_Feature_Requests from the Wiki, could please explain where those code numbers beside every "todo" item come from?
I've checked the
Ingres bug tracking system, but didn't find any related numbers there.
Suggestion:- If that number is related to any accessible URL (GET) giving more info on the "todo", maybe It could be interesting transforming that number into a link to "more info". Maybe it could be wise to implement a simple "macro" ("template" in Mediawiki talk) receiving the number as a parameter em converting it into a link.
- Most of the content of this page come from other wiki pages where the same list of "todos" exist. Again, a template could be created and included/referenced on both pages: the topic page (e.g.: SQL_Enhancements) and the TODO comprehensive page. Each list would be edited only once, and instantly updating every page that references the template.
Samples:
Small template to link to more info (template page: TodoMoreInfoTmpl):
HTML Code:
[http://moreinfo.ingres.com/givemoreinfo.cgi?number={{{number}}} {{{number}}}]
Template with some "todos" for "SQL Enhancements" topic (template page: SQL_Enhancements_Tmpl):
HTML Code:
{|
|- valign="top" align="left"
! width="100"|'''DBMS Feature'''
! '''Description'''
|- valign="top"
|'''SQL Enhancements'''
|'''Extend Ingres SQL support to provide user requested functionality, implement SQL-2003 non-core functionality and support a broader range of applications'''
|- valign="top"
|{{TodoMoreInfoTmpl|number=108795}}
| update from aggregate
|-
|{{TodoMoreInfoTmpl|number=110960}}
| Order by in subselect
|-
|{{TodoMoreInfoTmpl|number=112485}}
| SQL -s (Completely) Silent Enhancement request.
|}
SQL Enhancements page includes the template:
HTML Code:
{{SQL_Enhancements_Tmpl}}
TODO Feature Requests page also includes the SQL_Enhancements_Tmpl and others to compose a comprehensive TODO page:
HTML Code:
{{SQL_Enhancements_Tmpl}}
...
{{Other_Tmpl}}