mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-24 02:02:17 -05:00
Merge branch 'RunScript' of https://github.com/Dgby714/Simba into Dgby714-RunScript
This commit is contained in:
commit
d39c056108
@ -252,7 +252,7 @@ begin
|
||||
s := TStringList.Create;
|
||||
try
|
||||
s.LoadFromFile(TMenuItem(Sender).Hint);
|
||||
OpenScript(a, s.Text);
|
||||
OpenScript(a, s.Text, False);
|
||||
finally
|
||||
s.Free;
|
||||
end;
|
||||
|
@ -92,7 +92,7 @@ begin
|
||||
end;
|
||||
|
||||
WriteLn('Opening Paste #' + GetJSONValue(Data, 'paste_id') + ' in a new tab!');
|
||||
OpenScript('Paste #' + GetJSONValue(Data, 'paste_id'), GetJSONValue(Data, 'code'));
|
||||
OpenScript('Paste #' + GetJSONValue(Data, 'paste_id'), GetJSONValue(Data, 'code'), False);
|
||||
Result := True;
|
||||
end;
|
||||
end;
|
||||
|
@ -192,8 +192,8 @@ begin
|
||||
AddFunction(@ext_MessageDlg,'function MessageDlg(const aCaption, aMsg: string; DlgType: TMsgDlgType;Buttons: TMsgDlgButtons; HelpCtx: Longint): Integer;');
|
||||
AddFunction(@ext_InputQuery,'function InputQuery(const ACaption, APrompt : String; var Value : String) : Boolean;');
|
||||
AddFunction(@ext_ScriptText,'function ScriptText: string;');
|
||||
AddFunction(@ext_OpenScript,'procedure OpenScript(Name, Data: string);');
|
||||
AddFunction(@ext_OpenScriptEx,'procedure OpenScriptEx(FileName: string);');
|
||||
AddFunction(@ext_OpenScript,'procedure OpenScript(Name, Data: string; Run: boolean);');
|
||||
AddFunction(@ext_OpenScriptEx,'procedure OpenScriptEx(FileName: string; Run: boolean);');
|
||||
AddRegisteredPTRVariable('Settings','TMMLSettingsSandbox');
|
||||
AddFunction(@ext_GetPageEx,'function GetPageEx(const URL, PostData, MimeType: string): string;');
|
||||
AddFunction(@ext_GetJSONValue,'function GetJSONValue(const Data, Value: string): string;');
|
||||
|
@ -129,10 +129,10 @@ begin
|
||||
Result := ReplaceRegExpr('([N|n][A|a][M|m][E|e]|[P|p][A|a][S|s]{2}|[P|p][I|i][N|n])\s*\:\=\s*\''.*?\'';', Result, '$1 := ''*********'';', True);
|
||||
end;
|
||||
|
||||
procedure ext_OpenScript(Name, Data: string);
|
||||
procedure ext_OpenScript(vName, Data: string; Run: boolean);
|
||||
begin
|
||||
if (Name = '') then
|
||||
Name := 'Untitled';
|
||||
if (vName = '') then
|
||||
vName := 'Untitled';
|
||||
|
||||
with SimbaForm do
|
||||
begin
|
||||
@ -140,14 +140,18 @@ begin
|
||||
with CurrScript do
|
||||
begin
|
||||
SynEdit.Lines.Text := Data;
|
||||
ScriptName := Name;
|
||||
ScriptName := vName;
|
||||
ScriptChanged := True;
|
||||
end;
|
||||
RefreshTab();
|
||||
UpdateTitle();
|
||||
end;
|
||||
|
||||
if (Run) then
|
||||
SimbaForm.RunScript();
|
||||
end;
|
||||
|
||||
procedure ext_OpenScriptEx(FileName: string);
|
||||
procedure ext_OpenScriptEx(FileName: string; Run: boolean);
|
||||
begin
|
||||
FileName := SetDirSeparators(FileName);
|
||||
with SimbaForm do
|
||||
@ -164,6 +168,9 @@ begin
|
||||
RefreshTab();
|
||||
UpdateTitle();
|
||||
end;
|
||||
|
||||
if (Run) then
|
||||
SimbaForm.RunScript();
|
||||
end;
|
||||
|
||||
function ext_GetPageEx(const URL, PostData, MimeType: string): string;
|
||||
|
Loading…
Reference in New Issue
Block a user