[Bps-public-commit] Path-Dispatcher-Debugger branch, master, updated. f37c57bad122b30e8a2a5a8390538c449fe348bb
sartak at bestpractical.com
sartak at bestpractical.com
Wed Dec 23 14:25:49 EST 2009
The branch, master has been updated
via f37c57bad122b30e8a2a5a8390538c449fe348bb (commit)
from 722ff476bd37803a2741be4e7519f8e1fd906024 (commit)
Summary of changes:
lib/Path/Dispatcher/Debugger/View.pm | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
- Log -----------------------------------------------------------------
commit f37c57bad122b30e8a2a5a8390538c449fe348bb
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Wed Dec 23 14:25:33 2009 -0500
Add radio buttons for the dispatch type
diff --git a/lib/Path/Dispatcher/Debugger/View.pm b/lib/Path/Dispatcher/Debugger/View.pm
index 7e07425..94e598b 100644
--- a/lib/Path/Dispatcher/Debugger/View.pm
+++ b/lib/Path/Dispatcher/Debugger/View.pm
@@ -46,6 +46,34 @@ template testing_form => sub {
size => 50,
}
}
+
+ input {
+ attr {
+ type => 'radio',
+ name => 'dispatch_type',
+ value => 'dispatch',
+ checked => 'checked',
+ }
+ }
+ label { 'Dispatch' }
+
+ input {
+ attr {
+ type => 'radio',
+ name => 'dispatch_type',
+ value => 'prefix',
+ }
+ }
+ label { 'Prefix' }
+
+ input {
+ attr {
+ type => 'radio',
+ name => 'dispatch_type',
+ value => 'completion',
+ }
+ }
+ label { 'Completion' }
};
template matching_rules => sub {
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list