settings-file-dialogs
Michael Urspringer 2022-07-01 16:52:58 +02:00
rodzic 236ff1097d
commit a62fe8349a
3 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -2627,6 +2627,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
size="12" size="12"
oninput=" ValidateText(this); adifTextValueChange(this);" oninput=" ValidateText(this); adifTextValueChange(this);"
/> />
<br />
Station Profile ID<input
id="CloudlogStationProfileID"
type="text"
class="inputTextValue"
size="12"
oninput=" ValidateText(this); adifTextValueChange(this);"
/>
</td> </td>
<td> <td>
<div <div

Wyświetl plik

@ -2619,7 +2619,7 @@ function sendCloudlogEntry(report)
{ {
if (typeof nw != "undefined") if (typeof nw != "undefined")
{ {
var postData = { key: CloudlogAPI.value, type: "adif", string: report }; var postData = { key: CloudlogAPI.value, station_profile_id: CloudlogStationProfileID.value, type: "adif", string: report };
getPostJSONBuffer( getPostJSONBuffer(
CloudlogURL.value, CloudlogURL.value,
CloudlogSendLogResult, CloudlogSendLogResult,

Wyświetl plik

@ -172,6 +172,7 @@ var def_adifLogSettings = {
HRDLOGUploadCode: "", HRDLOGUploadCode: "",
CloudlogURL: "http://127.0.0.1/index.php/api/qso", CloudlogURL: "http://127.0.0.1/index.php/api/qso",
CloudlogAPI: "", CloudlogAPI: "",
CloudlogStationProfileID: "1",
eQSLUser: "", eQSLUser: "",
eQSLPassword: "", eQSLPassword: "",
eQSLNickname: "" eQSLNickname: ""