913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
|
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
|
-
+
|
@ <p>The main skin of Fossil cannot be edited directly. Instead,
@ edits are made to one of nine draft skins. A draft skin can then
@ be published to become the default skin.
@ Nine separate drafts are available to facilitate A/B testing.</p>
@
@ <form method='POST' action='%R/setup_skin#step2' id='f01'>
@ <p class='skinInput'>Draft skin to edit:
@ <select size='1' name='sk' onchange='gebi("f01").submit()'>
@ <select size='1' name='sk' id='skStep1'>
for(i=1; i<=9; i++){
if( i==iSkin ){
@ <option value='%d(i)' selected>draft%d(i)</option>
}else{
@ <option value='%d(i)'>draft%d(i)</option>
}
}
|
1054
1055
1056
1057
1058
1059
1060
1061
1062
|
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
|
+
|
if( !g.perm.Setup ){
@ <p>Administrators can optionally remove save legacy skins, or
@ undo a prior publish
}else{
@ <p>Visit the <a href='%R/setup_skin_admin'>Skin Admin</a> page
@ for cleanup and recovery actions.
}
style_load_one_js_file("skin.js");
style_footer();
}
|