/etc/simba/templates/cgi/mirror-new.tmpl is in websimba 0.8.4-4.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | <TMPL_INCLUDE NAME="header.tmpl">
<div class="content">
<form method="post" action="simba.cgi?action=add_new_mirror">
<fieldset>
<legend> Mirror details </legend>
<input type="hidden" name="m_id" value="0" />
<input type="hidden" name="action" value="add_new_mirror" />
<p>
<label for="m_Name">Name:</label>
<input type="text" id="m_Name" name="m_Name" value="<TMPL_VAR NAME="Name">" />
</p>
<p>
<label for="m_Description">Description:</label>
<textarea id="m_Description" name="m_Description" cols="40" rows="5"><TMPL_VAR NAME="Description"></textarea>
</p>
<p>
<label for="m_HomeSite">Website:</label>
<input type="text" name="m_HomeSite" id="m_HomeSite" value="<TMPL_VAR NAME="HomeSite">" size="40" />
</p>
<p>
<label for="m_LogoURL">Logo URL:</label>
<input type="text" name="m_LogoURL" id="m_LogoURL" value="<TMPL_VAR NAME="LogoURL">" size="40" />
</p>
<p>
<label for="m_LocalDir">Local directory:</label>
<input type="text" name="m_LocalDir" id="m_LocalDir" value="<TMPL_VAR NAME="LocalDir">" size="50" />
</p>
<p>
<label for="m_SyncMethod">Sync method:</label>
<input type="text" name="m_SyncMethod" id="m_SyncMethod" value="<TMPL_VAR NAME="SyncMethod">" size="10" />
</p>
<p>
<label for="m_CommandID">Command ID:</label>
<input type="text" name="m_CommandID" id="m_CommandID" value="<TMPL_VAR NAME="CommandID">" size="5" />
</p>
<p>
<label for="m_Active">Active:</label>
<input type="text" name="m_Active" id="m_Active" value="<TMPL_IF NAME="Active">yes<TMPL_ELSE>no</TMPL_IF>" size="4" />
</p>
<p>
<label for="m_InProgress">Running:</label>
<input type="text" name="m_InProgress" id="m_InProgress" value="<TMPL_IF NAME="InProgress">yes<TMPL_ELSE>no</TMPL_IF>" size="4" />
</p>
<p>
<label for="m_SyncSource">Sync source:</label>
<input type="text" name="m_SyncSource" id="m_SyncSource" value="<TMPL_VAR NAME="SyncSource">" size="40" />
</p>
<p>
<label for="m_SyncSourceUser">Sync source user:</label>
<input type="text" name="m_SyncSourceUser" id="m_SyncSourceUser" value="<TMPL_VAR NAME="SyncSourceUser">" size="40" />
</p>
<p>
<label for="m_SyncSourcePass">Sync source password:</label>
<input type="text" name="m_SyncSourcePass" id="m_SyncSourcePass" value="<TMPL_VAR NAME="SyncSourcePass">" size="40" />
</p>
<p>
<label for="m_SyncSourceModule">Sync source module:</label>
<input type="text" name="m_SyncSourceModule" id="m_SyncSourceModule" value="<TMPL_VAR NAME="SyncSourceModule">" size="40" />
</p>
<p>
<label for="m_Contact">Contact:</label>
<input type="text" name="m_Contact" id="m_Contact" value="<TMPL_VAR NAME="Contact">" size="40" />
</p>
<p>
<label for="m_LocalURL">Local URL:</label>
<input type="text" name="m_LocalURL" id="m_LocalURL" value="<TMPL_VAR NAME="LocalURL">" size="40" />
</p>
<p>
<input type="submit" name="m_submit" id="m_submit" value="Add" />
</p>
</fieldset>
</form>
</div>
</body>
</html>
|