mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-14 16:49:17 +02:00
* Implemented the 'RDXPORT_COMMAND_AUDIOSTORE' web API call in 'web/rdxport/audiostore.cpp', 'web/rdxport/rdxport.cpp' and 'web/rdxport/rdxport.h'. * Added an 'RDAudioStore' class in 'lib/rdaudiostore.cpp' and 'lib/rdaudiostore.h'. * Modified the Desk Gauge widget in 'rdlibrary/disk_gauge.cpp' and 'rdlibrary/disk_gauge.h' to use the 'RDAudioStore' class [fixes GitHub issue #000035].
26 lines
659 B
HTML
26 lines
659 B
HTML
<html>
|
|
<head>
|
|
<title>Rivendell AUDIOSTORE Service Test Harness</title>
|
|
<body>
|
|
<form action="/rd-bin/rdxport.cgi" method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="COMMAND" value="23">
|
|
<table cellpadding="0" cellspacing="2" border="0">
|
|
<tr>
|
|
<td align="right">LOGIN NAME:</td>
|
|
<td><input type="text" name="LOGIN_NAME" size="20" maxlength="255"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">PASSWORD:</td>
|
|
<td><input type="password" name="PASSWORD" size="20" maxlength="32"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"><input type="submit" value="OK"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|