[interchange-cvs] CVS notice: activity by mheins

interchange-core@interchange.redhat.com interchange-core@interchange.redhat.com
Tue Sep 4 19:32:00 2001


CVS activity by user 'mheins':
interchange/dist/lib/UI/usertag filters.tag,2.0,2.1
Update of /anon_cvs/repository/interchange/dist/lib/UI/usertag
In directory interchange.redhat.com:/tmp/cvs-serv15561

Modified Files:
	filters.tag 
Log Message:
	* Change $Tag->filters to allow definable description at the time 
	  a user-added filter is added. I.E.:

		GlobalSub <<EOF
		sub filter_add_1 {
			BEGIN {
				$Vend::Interpolate::Filter{cameron_filter} = sub {
					my $val = shift;
					return $val . ' -- by Cameron';
				};
				$Vend::Interpolate::Filter_desc{cameron_filter} = "By Cameron";
			}
			return;
		}
		EOF

	   This allows user-added filters to be presented on the list
	   in the meta editor.

	   Developed the idea in discussions with Cameron. Will merge
	   into stable branch, as should have no downside.