<!DOCTYPE author [ <!ENTITY yes_re "qr/\Ay(es)?\z/i" > <!ENTITY no_re "qr/\Ano?\z/i" > <!ENTITY yes_no_re "qr/\A(y(es)?|no?)\z/i" > <!ENTITY non_empty_re "qr/./" > ]> <machine id="VCP::Dest::revml" xmlns="http://slaysys.com/StateML/1.0"> <!-- ================ TRANSITIONS =================== --> <state id="dest_revml_filespec_prompt" class-ids="prompt_class"> <name>revml filespec</name> <description> Enter the revml repo spec. 'revml:' will be prefixed to it then parsed as if it was entered on the vcp command line. </description> <arc from="dest_prompt" guard="'revml'" > <description>revml</description> <handler> require VCP::Dest::revml; $ui->{Dest} = VCP::Dest::revml->new; $ui->{Dest}->repo_scheme( 'revml' ); </handler> </arc> <arc to="convert" guard="&non_empty_re;"> <handler> $ui->{Dest}->parse_revml_repo_spec( "revml:" . $answer ); $ui->{Dest}->init; </handler> </arc> </state> </machine>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#12 | 4064 | Barrie Slaymaker |
- RevML is no longer offered in the UI - Sources and dests are given an id in the UI - The .vcp file name defaulting now works |
||
#11 | 3859 | Barrie Slaymaker | - New UI files | ||
#10 | 3666 | Barrie Slaymaker | - vcp can now edit existing .vcp files, for VSS sources and revml dests | ||
#9 | 3647 | Barrie Slaymaker |
- All UI prompts & descriptions rewritten. - Minor tweak to VCP::Dest::p4 P4USER defaulting |
||
#8 | 3644 | Barrie Slaymaker | - Add Save & Run options to end of UI | ||
#7 | 3640 | Barrie Slaymaker |
- xmllint no longer require to build UI - UI now offers multiple choices where appropriate |
||
#6 | 3502 | John Fetkovich | removed obsolete commented out (source,dest)->init calls in stml files | ||
#5 | 3501 | John Fetkovich | added ui_set_revml_repo_spec, and caller in the stml file | ||
#4 | 3486 | John Fetkovich | moved (source or dest)->init calls to bin/vcp | ||
#3 | 3395 | John Fetkovich | various ui refinements | ||
#2 | 3362 | John Fetkovich | revml source and dest now works through interactive UI | ||
#1 | 3330 | John Fetkovich | Added revml source and dest to ui state machines |