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 -%]
+
- Patches to Fix Bugs/Implement New Features. These are very welcome,
- especially if they are targetted for the 2.22 milestone! They need
+ especially if they are targetted for the [% latest %] milestone!
+[% IF others %]
+ Bugs targetted at [% others.join(', ') %]
+ milestone[% IF others.length > 1 %]s[% END %] are limited to security
+ and regression fixes, patches for these are also welcome.
+[% END %]
+ They need
to be appropriately generic for all Bugzilla installations and conform
to our other requirements (see the Developers' Guide)
before they can appear in CVS, but if you don't wish to do this, anything