Changeset 137 for trunk/Application


Ignore:
Timestamp:
Sep 9, 2022, 1:16:58 AM (2 years ago)
Author:
chronos
Message:
  • Added: Robots page.
  • Modified: Canonical URL for webcams.
  • Modified: Removed compiler mode delphi as it is already set in project.
  • Modified: Updated Common package.
  • Modified: Use Generics.Collections instead of fgl.
Location:
trunk/Application
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UWebObjects.pas

    r132 r137  
    11unit UWebObjects;
    22
    3 {$mode delphi}
    4 
    53interface
    64
    75uses
    8   Classes, SysUtils, UHtmlClasses, UXmlClasses, SpecializedDictionary, fgl;
     6  Classes, SysUtils, UHtmlClasses, UXmlClasses, SpecializedDictionary,
     7  Generics.Collections;
    98
    109type
     
    3433  { TQueryFormItemList }
    3534
    36   TQueryFormItemList = class(TFPGObjectList<TQueryFormItem>)
     35  TQueryFormItemList = class(TObjectList<TQueryFormItem>)
    3736    function FindByName(AValue: string): TQueryFormItem;
    3837  end;
     
    4948  end;
    5049
    51   TQueryFormGroups = class(TFPGObjectList<TQueryFormGroup>)
     50  TQueryFormGroups = class(TObjectList<TQueryFormGroup>)
    5251  end;
    5352
     
    5756  end;
    5857
    59   TQueryActions = class(TFPGObjectList<TQueryAction>)
     58  TQueryActions = class(TObjectList<TQueryAction>)
    6059  end;
    6160
  • trunk/Application/UWebSession.pas

    r130 r137  
    11unit UWebSession;
    2 
    3 {$mode delphi}
    42
    53interface
     
    7068begin
    7169  with TModuleBase(ModuleManager.FindModuleByName('Base')) do
    72   if Assigned(GeneratePage) then GeneratePage(Self, Page)
     70  if Assigned(OnGeneratePage) then OnGeneratePage(Self, Page)
    7371    else GeneratePageDefault(Self, Page);
    7472end;
Note: See TracChangeset for help on using the changeset viewer.