Feature Proposal: AUTOINC step value
Motivation
Creating a user maintained document repository. TREEVIEW/TREEBROWSER sorts on Topic name so I would like to leave gaps between autonumbered topics.
Description and Documentation
Replace
my $next = $list[$#list] + 1;
in Save.pm with:
my $step = $session->{prefs}->getPreferencesValue('AUTOINCSTEP') || 1;
my $next = $list[$#list] + $step;
Then add AUTOINCSTEP to prefs page.
Examples
Impact
Implementation
--
Contributors: AndyBeardsall - 30 May 2007
Discussion
This looks like a useful small enhancement. A no-brainer that does not need to go through the release process. We just started a code freeze on
FreetownRelease on Monday, e.g. this feature needs to wait for
GeorgeTown release.
--
PeterThoeny - 31 May 2007