inetremote-cvs Mailing List for iNetRemote
Status: Pre-Alpha
Brought to you by:
hennevl
You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: <he...@us...> - 2003-03-29 11:13:47
|
Update of /cvsroot/inetremote/plugins/fileman
In directory sc8-pr-cvs1:/tmp/cvs-serv20558
Modified Files:
fileman.dpr
Log Message:
Changed plugin API
Changed file transfer to stream
Index: fileman.dpr
===================================================================
RCS file: /cvsroot/inetremote/plugins/fileman/fileman.dpr,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fileman.dpr 9 Mar 2003 18:21:14 -0000 1.1
--- fileman.dpr 29 Mar 2003 11:13:43 -0000 1.2
***************
*** 15,19 ****
uses
! SysUtils, Classes, idHTTPServer, ShellApi, Windows;
{$R *.res}
--- 15,19 ----
uses
! SysUtils, Classes, idCustomHTTPServer, ShellApi, Windows;
{$R *.res}
***************
*** 29,34 ****
sr: TSearchRec;
filename: string;
- myfile: TFileStream;
- temp: char;
begin
filename := 'D:/'+command;
--- 29,32 ----
***************
*** 47,53 ****
else //File
begin
! myfile := TFileStream.Create(filename, fmOpenRead);
! responseinfo.ContentStream := myfile;
! myfile.Free;
responseinfo.ContentType := 'foo/bar';
end;
--- 45,49 ----
else //File
begin
! responseinfo.ContentStream := TFileStream.Create(filename, fmOpenRead);
responseinfo.ContentType := 'foo/bar';
end;
|
|
From: <he...@us...> - 2003-03-29 11:13:03
|
Update of /cvsroot/inetremote/plugins/shutdown_xp
In directory sc8-pr-cvs1:/tmp/cvs-serv20327
Modified Files:
shutdown_xp.dpr
Log Message:
Changed plugin API
Index: shutdown_xp.dpr
===================================================================
RCS file: /cvsroot/inetremote/plugins/shutdown_xp/shutdown_xp.dpr,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** shutdown_xp.dpr 9 Mar 2003 18:18:02 -0000 1.2
--- shutdown_xp.dpr 29 Mar 2003 11:13:00 -0000 1.3
***************
*** 15,19 ****
uses
! SysUtils, Classes, idHTTPServer, ShellApi, Windows;
{$R *.res}
--- 15,19 ----
uses
! SysUtils, Classes, idCustomHTTPServer, ShellApi, Windows;
{$R *.res}
|
|
From: <he...@us...> - 2003-03-29 11:12:48
|
Update of /cvsroot/inetremote/plugins/test
In directory sc8-pr-cvs1:/tmp/cvs-serv20230
Modified Files:
test.dpr
Log Message:
Changed plugin API
Index: test.dpr
===================================================================
RCS file: /cvsroot/inetremote/plugins/test/test.dpr,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** test.dpr 9 Mar 2003 18:18:02 -0000 1.4
--- test.dpr 29 Mar 2003 11:12:45 -0000 1.5
***************
*** 15,19 ****
uses
! SysUtils, Classes, idHTTPServer;
{$R *.res}
--- 15,19 ----
uses
! SysUtils, Classes, idCustomHTTPServer;
{$R *.res}
|
|
From: <he...@us...> - 2003-03-29 11:12:08
|
Update of /cvsroot/inetremote/lang In directory sc8-pr-cvs1:/tmp/cvs-serv20017 Modified Files: lang_German.ini lang_English.ini Log Message: - Added no plugins loaded message Index: lang_German.ini =================================================================== RCS file: /cvsroot/inetremote/lang/lang_German.ini,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_German.ini 1 Mar 2003 19:51:41 -0000 1.2 --- lang_German.ini 29 Mar 2003 11:12:05 -0000 1.3 *************** *** 39,42 **** --- 39,43 ---- [web] title=iNetRemote + no_plugins=Keine Plugins geladen! [plugin] Index: lang_English.ini =================================================================== RCS file: /cvsroot/inetremote/lang/lang_English.ini,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_English.ini 1 Mar 2003 19:51:41 -0000 1.2 --- lang_English.ini 29 Mar 2003 11:12:05 -0000 1.3 *************** *** 39,42 **** --- 39,43 ---- [web] title=iNetRemote + no_plugins=No Plugins loaded! [plugin] |
|
From: <he...@us...> - 2003-03-29 11:11:24
|
Update of /cvsroot/inetremote/inetremote
In directory sc8-pr-cvs1:/tmp/cvs-serv19747
Modified Files:
plugin.pas main.pas
Log Message:
- Added no plugins loaded message
- Changed several things
Index: plugin.pas
===================================================================
RCS file: /cvsroot/inetremote/inetremote/plugin.pas,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** plugin.pas 9 Mar 2003 18:18:19 -0000 1.4
--- plugin.pas 29 Mar 2003 11:11:14 -0000 1.5
***************
*** 17,21 ****
uses
! IdBaseComponent, IdComponent, IdTCPServer, IdHTTPServer, StdCtrls, Controls, ExtCtrls, Classes,Windows, Messages, SysUtils, Variants, Graphics, Forms,
Dialogs, ComCtrls, lang;
--- 17,21 ----
uses
! IdCustomHTTPServer, StdCtrls, Controls, ExtCtrls, Classes,Windows, Messages, SysUtils, Variants, Graphics, Forms,
Dialogs, ComCtrls, lang;
Index: main.pas
===================================================================
RCS file: /cvsroot/inetremote/inetremote/main.pas,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** main.pas 10 Mar 2003 17:54:12 -0000 1.9
--- main.pas 29 Mar 2003 11:11:14 -0000 1.10
***************
*** 17,24 ****
uses
- IdBaseComponent, IdComponent, IdTCPServer, IdHTTPServer,
StdCtrls, Controls, ExtCtrls, Classes,Windows, Messages, SysUtils, Variants, Graphics, Forms,
! Dialogs, ComCtrls, lang, IniFiles, Grids, log_prop, plugin, url;
!
type
Tfrm_main = class(TForm)
--- 17,24 ----
uses
StdCtrls, Controls, ExtCtrls, Classes,Windows, Messages, SysUtils, Variants, Graphics, Forms,
! Dialogs, ComCtrls, lang, IniFiles, Grids, log_prop, plugin, url,
! IdComponent, IdTCPServer, IdCustomHTTPServer,
! IdHTTPServer, IdBaseComponent;
type
Tfrm_main = class(TForm)
***************
*** 221,224 ****
--- 221,230 ----
if (url = '/html/') OR (url = '/html') OR (url = '/wap/') OR (url = '/wap') then
begin
+ if (plugins.Count = 0) then
+ begin
+ AResponseInfo.ContentText := trans('web','no_plugins');
+ exit;
+ end;
+
for i := 0 to plugins.Count-1 DO
begin
|
|
From: <he...@us...> - 2003-03-10 17:54:16
|
Update of /cvsroot/inetremote/inetremote
In directory sc8-pr-cvs1:/tmp/cvs-serv6299
Modified Files:
main.pas
Log Message:
Fixed bug when closing with 0 plugins
Index: main.pas
===================================================================
RCS file: /cvsroot/inetremote/inetremote/main.pas,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** main.pas 9 Mar 2003 18:18:19 -0000 1.8
--- main.pas 10 Mar 2003 17:54:12 -0000 1.9
***************
*** 326,336 ****
temp: ^TPlugin;
begin
! for i := plugins.Count-1 to 0 DO //Reverse, because otherwise list is decremented but i incremented
begin
! temp := plugins.Items[i];
! temp.plug_close;
! lb_plugins.DeleteSelected;
! temp.Free;
! plugins.Delete(i);
end;
--- 326,339 ----
temp: ^TPlugin;
begin
! if (plugins.Count > 0) then
begin
! for i := plugins.Count-1 to 0 DO //Reverse, because otherwise list is decremented but i incremented
! begin
! temp := plugins.Items[i];
! temp.plug_close;
! lb_plugins.DeleteSelected;
! temp.Free;
! plugins.Delete(i);
! end;
end;
|
|
From: <he...@us...> - 2003-03-05 12:23:31
|
Update of /cvsroot/inetremote/lang In directory sc8-pr-cvs1:/tmp/cvs-serv8830 Modified Files: README.txt Log Message: Updated Readme Index: README.txt =================================================================== RCS file: /cvsroot/inetremote/lang/README.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README.txt 2 Mar 2003 13:45:47 -0000 1.1 --- README.txt 5 Mar 2003 12:23:28 -0000 1.2 *************** *** 1,2 **** Copy these language files to the program directory. They will be used if you select a language. ! If you don't copy any of these files, even english will not work!! \ No newline at end of file --- 1,2 ---- Copy these language files to the program directory. They will be used if you select a language. ! If you don't copy any of these files, even english will not work and you'll have empty labels!! \ No newline at end of file |