Index: bugzilla-org/src/developers/index.html =================================================================== RCS file: /www/bugzilla-org/src/developers/index.html,v retrieving revision 1.15 diff -u -r1.15 bugzilla-org/src/developers/index.html --- bugzilla-org/src/developers/index.html +++ bugzilla-org/src/developers/index.html @@ -81,9 +81,30 @@ anything.

How to Help

+[%- USE thefile = File("lib/releases-list.txt"); + USE data = datafile(thefile.path, delim = "\t"); + latest = 'unknown'; + others = []; + FOREACH item = data; + IF item.date == 'future'; + v = item.version.split('\.') + UNLESS v.2 > 0; + latest = item.version; + ELSE; + others.push(item.version); + END; + END; + END -%] +