Changeset 63


Ignore:
Timestamp:
Dec 19, 2011, 12:58:50 PM (12 years ago)
Author:
chronos
Message:
  • Upraveno: Načítání nastavení z registrů nahrazeno INI souborem.
Location:
trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        22bin
        33lib
         4Config.ini
  • trunk/.htaccess

    r58 r63  
    55# Disable access to source code files
    66# xml - config files in .config subdirectory
    7 <FilesMatch "\.(pas|o|ppu|lpi|a|xml)$">
     7<FilesMatch "\.(pas|o|ppu|lpi|a|xml|ini)$">
    88  Deny from all
    99</FilesMatch>
  • trunk/Modules/UMainModule.pas

    r62 r63  
    77uses
    88  Classes, SysUtils, FileUtil, LResources, UHTTPServerCGI, UHTTPSessionMySQL,
    9   UHTTPServer, USqlDatabase, URegistry, DateUtils, UWebPage, UWebApp,
     9  UHTTPServer, USqlDatabase, INIFiles, DateUtils, UWebPage, UWebApp,
    1010  UXmlClasses, UHtmlClasses, UCore, UHTTPServerTCP,
    1111  UHTTPSessionFile, UUser, SpecializedList, Registry;
     12
     13const
     14  ConfigFile = 'Config.ini';
    1215
    1316type
     
    115118  UserOnline := TWebOnlineUser.Create;
    116119  UserOnline.Database := Database;
     120  LoadFromRegistry;
    117121end;
    118122
    119123destructor TMainModule.Destroy;
    120124begin
     125  SaveToRegistry;
    121126  HtmlDocument.Free;
    122127  User.Free;
     
    229234
    230235procedure TMainModule.LoadFromRegistry;
    231 begin
    232   with TRegistryEx.Create do
     236const
     237  SectionGeneral = 'General';
     238  SectionDatabase = 'Database';
     239begin
     240  with TIniFile.Create(ConfigFile) do
    233241  try
    234     RootKey := HKEY_CURRENT_USER;
    235     OpenKey(ApplicationInfo.RegistryKey, True);
    236     Style := ReadStringWithDefault('Style', 'Basic');
    237     BaseURL := ReadStringWithDefault('BaseURL', 'http://localhost');
    238     Database.Hostname := ReadStringWithDefault('DatabaseHostName', 'localhost');
    239     Database.Database := ReadStringWithDefault('DatabaseDatabase', 'web');
    240     Database.UserName := ReadStringWithDefault('DatabaseUserName', 'user');
    241     Database.Password := ReadStringWithDefault('DatabasePassword', 'password');
    242     FormatHTML := ReadBoolWithDefault('FormatHTML', False);
    243     Application.LogException := not ReadBoolWithDefault('ShowException', False);
     242    //RootKey := HKEY_CURRENT_USER;
     243    //OpenKey(ApplicationInfo.RegistryKey, True);
     244    Style := ReadString(SectionGeneral, 'Style', 'Basic');
     245    BaseURL := ReadString(SectionGeneral, 'BaseURL', 'http://localhost');
     246    Database.Hostname := ReadString(SectionDatabase, 'DatabaseHostName', 'localhost');
     247    Database.Database := ReadString(SectionDatabase, 'DatabaseDatabase', 'web');
     248    Database.UserName := ReadString(SectionDatabase, 'DatabaseUserName', 'user');
     249    Database.Password := ReadString(SectionDatabase, 'DatabasePassword', 'password');
     250    FormatHTML := ReadBool(SectionGeneral, 'FormatHTML', False);
     251    Application.LogException := not ReadBool(SectionGeneral, 'ShowException', False);
    244252  finally
    245253    Free;
     
    248256
    249257procedure TMainModule.SaveToRegistry;
    250 begin
    251 
     258const
     259  SectionGeneral = 'General';
     260  SectionDatabase = 'Database';
     261begin
     262  with TIniFile.Create(ConfigFile) do
     263  try
     264    //RootKey := HKEY_CURRENT_USER;
     265    //OpenKey(ApplicationInfo.RegistryKey, True);
     266    WriteString(SectionGeneral, 'Style', Style);
     267    WriteString(SectionGeneral, 'BaseURL', BaseURL);
     268    WriteString(SectionDatabase, 'DatabaseHostName', Database.Hostname);
     269    WriteString(SectionDatabase, 'DatabaseDatabase', Database.Database);
     270    WriteString(SectionDatabase, 'DatabaseUserName', Database.UserName);
     271    WriteString(SectionDatabase, 'DatabasePassword', Database.Password);
     272    WriteBool(SectionGeneral, 'FormatHTML', FormatHTML);
     273    WriteBool(SectionGeneral, 'ShowException', not Application.LogException);
     274  finally
     275    Free;
     276  end;
    252277end;
    253278
    254279procedure TMainModule.Run;
    255280begin
    256   LoadFromRegistry;
    257281  InitDatabase;
    258282  //Database.Query('SELECT * FROM ssss');
  • trunk/ZdechovNET.lpi

    r62 r63  
    5252      </Item3>
    5353    </RequiredPackages>
    54     <Units Count="128">
     54    <Units Count="132">
    5555      <Unit0>
    5656        <Filename Value="ZdechovNET.lpr"/>
    5757        <IsPartOfProject Value="True"/>
    5858        <UnitName Value="ZdechovNET"/>
    59         <EditorIndex Value="2"/>
     59        <EditorIndex Value="0"/>
    6060        <WindowIndex Value="0"/>
    6161        <TopLine Value="13"/>
    62         <CursorPos X="59" Y="6"/>
     62        <CursorPos X="27" Y="30"/>
    6363        <UsageCount Value="203"/>
    6464        <Loaded Value="True"/>
     
    7171        <TopLine Value="1"/>
    7272        <CursorPos X="1" Y="11"/>
    73         <UsageCount Value="195"/>
     73        <UsageCount Value="194"/>
    7474        <DefaultSyntaxHighlighter Value="Delphi"/>
    7575      </Unit1>
     
    8080        <TopLine Value="291"/>
    8181        <CursorPos X="1" Y="311"/>
    82         <UsageCount Value="85"/>
     82        <UsageCount Value="84"/>
    8383        <DefaultSyntaxHighlighter Value="Delphi"/>
    8484      </Unit2>
    8585      <Unit3>
    8686        <Filename Value="UXmlClasses.pas"/>
    87         <UsageCount Value="85"/>
     87        <UsageCount Value="84"/>
    8888        <DefaultSyntaxHighlighter Value="Delphi"/>
    8989      </Unit3>
     
    9292        <IsPartOfProject Value="True"/>
    9393        <UnitName Value="UCore"/>
    94         <EditorIndex Value="1"/>
    95         <WindowIndex Value="0"/>
    96         <TopLine Value="1"/>
    97         <CursorPos X="32" Y="16"/>
     94        <EditorIndex Value="4"/>
     95        <WindowIndex Value="0"/>
     96        <TopLine Value="119"/>
     97        <CursorPos X="35" Y="14"/>
    9898        <UsageCount Value="203"/>
    9999        <Loaded Value="True"/>
     
    106106        <TopLine Value="217"/>
    107107        <CursorPos X="5" Y="236"/>
    108         <UsageCount Value="85"/>
     108        <UsageCount Value="84"/>
    109109        <DefaultSyntaxHighlighter Value="Delphi"/>
    110110      </Unit5>
     
    115115        <TopLine Value="10"/>
    116116        <CursorPos X="27" Y="19"/>
    117         <UsageCount Value="85"/>
     117        <UsageCount Value="84"/>
    118118        <DefaultSyntaxHighlighter Value="Delphi"/>
    119119      </Unit6>
     
    123123        <TopLine Value="17"/>
    124124        <CursorPos X="34" Y="30"/>
    125         <UsageCount Value="85"/>
     125        <UsageCount Value="84"/>
    126126        <DefaultSyntaxHighlighter Value="Delphi"/>
    127127      </Unit7>
     
    132132        <TopLine Value="204"/>
    133133        <CursorPos X="25" Y="226"/>
    134         <UsageCount Value="85"/>
     134        <UsageCount Value="84"/>
    135135        <DefaultSyntaxHighlighter Value="Delphi"/>
    136136      </Unit8>
     
    141141        <TopLine Value="102"/>
    142142        <CursorPos X="25" Y="107"/>
    143         <UsageCount Value="85"/>
     143        <UsageCount Value="84"/>
    144144        <DefaultSyntaxHighlighter Value="Delphi"/>
    145145      </Unit9>
     
    150150        <TopLine Value="40"/>
    151151        <CursorPos X="9" Y="59"/>
    152         <UsageCount Value="73"/>
     152        <UsageCount Value="72"/>
    153153        <DefaultSyntaxHighlighter Value="Delphi"/>
    154154      </Unit10>
     
    158158        <TopLine Value="91"/>
    159159        <CursorPos X="10" Y="110"/>
    160         <UsageCount Value="55"/>
     160        <UsageCount Value="54"/>
    161161        <DefaultSyntaxHighlighter Value="Delphi"/>
    162162      </Unit11>
     
    167167        <TopLine Value="15"/>
    168168        <CursorPos X="38" Y="30"/>
    169         <UsageCount Value="289"/>
     169        <UsageCount Value="288"/>
    170170        <DefaultSyntaxHighlighter Value="Delphi"/>
    171171      </Unit12>
     
    192192        <TopLine Value="608"/>
    193193        <CursorPos X="44" Y="627"/>
    194         <UsageCount Value="54"/>
     194        <UsageCount Value="53"/>
    195195        <DefaultSyntaxHighlighter Value="Delphi"/>
    196196      </Unit15>
     
    201201        <TopLine Value="39"/>
    202202        <CursorPos X="25" Y="58"/>
    203         <UsageCount Value="54"/>
     203        <UsageCount Value="53"/>
    204204        <DefaultSyntaxHighlighter Value="Delphi"/>
    205205      </Unit16>
     
    210210        <TopLine Value="1"/>
    211211        <CursorPos X="69" Y="19"/>
    212         <UsageCount Value="50"/>
     212        <UsageCount Value="49"/>
    213213        <DefaultSyntaxHighlighter Value="Delphi"/>
    214214      </Unit17>
     
    219219        <TopLine Value="1"/>
    220220        <CursorPos X="52" Y="124"/>
    221         <UsageCount Value="47"/>
     221        <UsageCount Value="46"/>
    222222        <DefaultSyntaxHighlighter Value="Delphi"/>
    223223      </Unit18>
     
    227227        <TopLine Value="677"/>
    228228        <CursorPos X="14" Y="691"/>
    229         <UsageCount Value="57"/>
     229        <UsageCount Value="56"/>
    230230        <DefaultSyntaxHighlighter Value="Delphi"/>
    231231      </Unit19>
     
    235235        <TopLine Value="10"/>
    236236        <CursorPos X="22" Y="23"/>
    237         <UsageCount Value="56"/>
     237        <UsageCount Value="55"/>
    238238        <DefaultSyntaxHighlighter Value="Delphi"/>
    239239      </Unit20>
     
    244244        <TopLine Value="1140"/>
    245245        <CursorPos X="26" Y="1143"/>
    246         <UsageCount Value="56"/>
     246        <UsageCount Value="55"/>
    247247        <DefaultSyntaxHighlighter Value="Delphi"/>
    248248      </Unit21>
     
    252252        <TopLine Value="43"/>
    253253        <CursorPos X="5" Y="61"/>
    254         <UsageCount Value="56"/>
     254        <UsageCount Value="55"/>
    255255        <DefaultSyntaxHighlighter Value="Delphi"/>
    256256      </Unit22>
     
    260260        <TopLine Value="50"/>
    261261        <CursorPos X="10" Y="63"/>
    262         <UsageCount Value="56"/>
     262        <UsageCount Value="55"/>
    263263        <DefaultSyntaxHighlighter Value="Delphi"/>
    264264      </Unit23>
     
    269269        <TopLine Value="17"/>
    270270        <CursorPos X="32" Y="36"/>
    271         <UsageCount Value="175"/>
     271        <UsageCount Value="174"/>
    272272        <DefaultSyntaxHighlighter Value="Delphi"/>
    273273      </Unit24>
     
    278278        <TopLine Value="8"/>
    279279        <CursorPos X="17" Y="19"/>
    280         <UsageCount Value="2"/>
     280        <UsageCount Value="1"/>
    281281        <DefaultSyntaxHighlighter Value="Delphi"/>
    282282      </Unit25>
     
    287287        <TopLine Value="25"/>
    288288        <CursorPos X="86" Y="94"/>
    289         <UsageCount Value="175"/>
     289        <UsageCount Value="174"/>
    290290        <DefaultSyntaxHighlighter Value="Delphi"/>
    291291      </Unit26>
     
    296296        <TopLine Value="549"/>
    297297        <CursorPos X="19" Y="569"/>
    298         <UsageCount Value="176"/>
     298        <UsageCount Value="175"/>
    299299        <DefaultSyntaxHighlighter Value="Delphi"/>
    300300      </Unit27>
     
    305305        <TopLine Value="1"/>
    306306        <CursorPos X="64" Y="14"/>
    307         <UsageCount Value="176"/>
     307        <UsageCount Value="175"/>
    308308        <DefaultSyntaxHighlighter Value="Delphi"/>
    309309      </Unit28>
     
    314314        <TopLine Value="6"/>
    315315        <CursorPos X="5" Y="33"/>
    316         <UsageCount Value="176"/>
     316        <UsageCount Value="175"/>
    317317        <DefaultSyntaxHighlighter Value="Delphi"/>
    318318      </Unit29>
     
    323323        <TopLine Value="99"/>
    324324        <CursorPos X="33" Y="117"/>
    325         <UsageCount Value="3"/>
     325        <UsageCount Value="2"/>
    326326        <DefaultSyntaxHighlighter Value="Delphi"/>
    327327      </Unit30>
     
    331331        <TopLine Value="61"/>
    332332        <CursorPos X="14" Y="78"/>
    333         <UsageCount Value="55"/>
     333        <UsageCount Value="54"/>
    334334        <DefaultSyntaxHighlighter Value="Delphi"/>
    335335      </Unit31>
     
    339339        <TopLine Value="519"/>
    340340        <CursorPos X="23" Y="526"/>
    341         <UsageCount Value="51"/>
     341        <UsageCount Value="50"/>
    342342        <DefaultSyntaxHighlighter Value="Delphi"/>
    343343      </Unit32>
     
    348348        <TopLine Value="11"/>
    349349        <CursorPos X="51" Y="27"/>
    350         <UsageCount Value="357"/>
     350        <UsageCount Value="356"/>
    351351        <DefaultSyntaxHighlighter Value="Delphi"/>
    352352      </Unit33>
     
    357357        <TopLine Value="1"/>
    358358        <CursorPos X="16" Y="164"/>
    359         <UsageCount Value="317"/>
     359        <UsageCount Value="316"/>
    360360        <DefaultSyntaxHighlighter Value="Delphi"/>
    361361      </Unit34>
     
    366366        <TopLine Value="81"/>
    367367        <CursorPos X="1" Y="96"/>
    368         <UsageCount Value="316"/>
     368        <UsageCount Value="315"/>
    369369        <DefaultSyntaxHighlighter Value="Delphi"/>
    370370      </Unit35>
     
    375375        <TopLine Value="1"/>
    376376        <CursorPos X="18" Y="45"/>
    377         <UsageCount Value="316"/>
     377        <UsageCount Value="315"/>
    378378        <DefaultSyntaxHighlighter Value="Delphi"/>
    379379      </Unit36>
     
    384384        <TopLine Value="142"/>
    385385        <CursorPos X="52" Y="165"/>
    386         <UsageCount Value="316"/>
     386        <UsageCount Value="315"/>
    387387        <DefaultSyntaxHighlighter Value="Delphi"/>
    388388      </Unit37>
     
    393393        <TopLine Value="109"/>
    394394        <CursorPos X="36" Y="96"/>
    395         <UsageCount Value="316"/>
     395        <UsageCount Value="315"/>
    396396        <DefaultSyntaxHighlighter Value="Delphi"/>
    397397      </Unit38>
     
    402402        <TopLine Value="44"/>
    403403        <CursorPos X="27" Y="61"/>
    404         <UsageCount Value="316"/>
     404        <UsageCount Value="315"/>
    405405        <DefaultSyntaxHighlighter Value="Delphi"/>
    406406      </Unit39>
     
    411411        <TopLine Value="1"/>
    412412        <CursorPos X="50" Y="8"/>
    413         <UsageCount Value="316"/>
     413        <UsageCount Value="315"/>
    414414        <DefaultSyntaxHighlighter Value="Delphi"/>
    415415      </Unit40>
     
    420420        <TopLine Value="1"/>
    421421        <CursorPos X="21" Y="1"/>
    422         <UsageCount Value="315"/>
     422        <UsageCount Value="314"/>
    423423        <DefaultSyntaxHighlighter Value="Delphi"/>
    424424      </Unit41>
     
    429429        <TopLine Value="1"/>
    430430        <CursorPos X="53" Y="8"/>
    431         <UsageCount Value="315"/>
     431        <UsageCount Value="314"/>
    432432        <DefaultSyntaxHighlighter Value="Delphi"/>
    433433      </Unit42>
     
    438438        <TopLine Value="1"/>
    439439        <CursorPos X="52" Y="92"/>
    440         <UsageCount Value="315"/>
     440        <UsageCount Value="314"/>
    441441        <DefaultSyntaxHighlighter Value="Delphi"/>
    442442      </Unit43>
     
    447447        <TopLine Value="83"/>
    448448        <CursorPos X="47" Y="106"/>
    449         <UsageCount Value="315"/>
     449        <UsageCount Value="314"/>
    450450        <DefaultSyntaxHighlighter Value="Delphi"/>
    451451      </Unit44>
     
    456456        <TopLine Value="1"/>
    457457        <CursorPos X="3" Y="687"/>
    458         <UsageCount Value="315"/>
     458        <UsageCount Value="314"/>
    459459        <DefaultSyntaxHighlighter Value="Delphi"/>
    460460      </Unit45>
     
    465465        <TopLine Value="383"/>
    466466        <CursorPos X="15" Y="397"/>
    467         <UsageCount Value="36"/>
     467        <UsageCount Value="35"/>
    468468        <DefaultSyntaxHighlighter Value="Delphi"/>
    469469      </Unit46>
     
    474474        <TopLine Value="1"/>
    475475        <CursorPos X="1" Y="15"/>
    476         <UsageCount Value="334"/>
     476        <UsageCount Value="333"/>
    477477        <DefaultSyntaxHighlighter Value="Delphi"/>
    478478      </Unit47>
     
    482482        <TopLine Value="690"/>
    483483        <CursorPos X="3" Y="695"/>
    484         <UsageCount Value="36"/>
     484        <UsageCount Value="35"/>
    485485        <DefaultSyntaxHighlighter Value="Delphi"/>
    486486      </Unit48>
     
    491491        <TopLine Value="1"/>
    492492        <CursorPos X="43" Y="79"/>
    493         <UsageCount Value="312"/>
     493        <UsageCount Value="311"/>
    494494        <DefaultSyntaxHighlighter Value="Delphi"/>
    495495      </Unit49>
     
    499499        <TopLine Value="29"/>
    500500        <CursorPos X="15" Y="46"/>
    501         <UsageCount Value="174"/>
     501        <UsageCount Value="173"/>
    502502        <DefaultSyntaxHighlighter Value="Delphi"/>
    503503      </Unit50>
     
    508508        <TopLine Value="1"/>
    509509        <CursorPos X="26" Y="18"/>
    510         <UsageCount Value="76"/>
     510        <UsageCount Value="75"/>
    511511        <DefaultSyntaxHighlighter Value="Delphi"/>
    512512      </Unit51>
     
    517517        <TopLine Value="1"/>
    518518        <CursorPos X="15" Y="20"/>
    519         <UsageCount Value="89"/>
     519        <UsageCount Value="88"/>
    520520        <DefaultSyntaxHighlighter Value="Delphi"/>
    521521      </Unit52>
     
    526526        <TopLine Value="1"/>
    527527        <CursorPos X="44" Y="17"/>
    528         <UsageCount Value="88"/>
     528        <UsageCount Value="87"/>
    529529        <DefaultSyntaxHighlighter Value="Delphi"/>
    530530      </Unit53>
     
    535535        <TopLine Value="1"/>
    536536        <CursorPos X="48" Y="25"/>
    537         <UsageCount Value="7"/>
     537        <UsageCount Value="6"/>
    538538        <DefaultSyntaxHighlighter Value="Delphi"/>
    539539      </Unit54>
     
    544544        <TopLine Value="1"/>
    545545        <CursorPos X="60" Y="11"/>
    546         <UsageCount Value="6"/>
     546        <UsageCount Value="5"/>
    547547        <DefaultSyntaxHighlighter Value="Delphi"/>
    548548      </Unit55>
     
    553553        <TopLine Value="92"/>
    554554        <CursorPos X="7" Y="119"/>
    555         <UsageCount Value="2"/>
     555        <UsageCount Value="1"/>
    556556        <DefaultSyntaxHighlighter Value="Delphi"/>
    557557      </Unit56>
     
    562562        <TopLine Value="27"/>
    563563        <CursorPos X="5" Y="44"/>
    564         <UsageCount Value="22"/>
     564        <UsageCount Value="21"/>
    565565        <DefaultSyntaxHighlighter Value="Delphi"/>
    566566      </Unit57>
     
    571571        <TopLine Value="159"/>
    572572        <CursorPos X="14" Y="176"/>
    573         <UsageCount Value="18"/>
     573        <UsageCount Value="17"/>
    574574        <DefaultSyntaxHighlighter Value="Delphi"/>
    575575      </Unit58>
     
    581581        <TopLine Value="12"/>
    582582        <CursorPos X="40" Y="12"/>
    583         <UsageCount Value="107"/>
     583        <UsageCount Value="113"/>
    584584        <DefaultSyntaxHighlighter Value="Delphi"/>
    585585      </Unit59>
     
    590590        <TopLine Value="1"/>
    591591        <CursorPos X="1" Y="1"/>
    592         <UsageCount Value="4"/>
     592        <UsageCount Value="3"/>
    593593        <DefaultSyntaxHighlighter Value="Delphi"/>
    594594      </Unit60>
     
    599599        <TopLine Value="1"/>
    600600        <CursorPos X="1" Y="1"/>
    601         <UsageCount Value="4"/>
     601        <UsageCount Value="3"/>
    602602        <DefaultSyntaxHighlighter Value="Delphi"/>
    603603      </Unit61>
     
    608608        <TopLine Value="379"/>
    609609        <CursorPos X="3" Y="423"/>
    610         <UsageCount Value="14"/>
     610        <UsageCount Value="13"/>
    611611        <DefaultSyntaxHighlighter Value="Delphi"/>
    612612      </Unit62>
     
    617617        <TopLine Value="19"/>
    618618        <CursorPos X="50" Y="76"/>
    619         <UsageCount Value="16"/>
     619        <UsageCount Value="15"/>
    620620        <DefaultSyntaxHighlighter Value="Delphi"/>
    621621      </Unit63>
     
    625625        <TopLine Value="168"/>
    626626        <CursorPos X="23" Y="185"/>
    627         <UsageCount Value="3"/>
     627        <UsageCount Value="2"/>
    628628        <DefaultSyntaxHighlighter Value="Delphi"/>
    629629      </Unit64>
     
    634634        <TopLine Value="54"/>
    635635        <CursorPos X="26" Y="71"/>
    636         <UsageCount Value="9"/>
     636        <UsageCount Value="8"/>
    637637        <DefaultSyntaxHighlighter Value="Delphi"/>
    638638      </Unit65>
     
    642642        <TopLine Value="1"/>
    643643        <CursorPos X="14" Y="3"/>
    644         <UsageCount Value="7"/>
     644        <UsageCount Value="6"/>
    645645        <DefaultSyntaxHighlighter Value="Delphi"/>
    646646      </Unit66>
     
    651651        <TopLine Value="35"/>
    652652        <CursorPos X="24" Y="63"/>
    653         <UsageCount Value="7"/>
     653        <UsageCount Value="6"/>
    654654        <DefaultSyntaxHighlighter Value="Delphi"/>
    655655      </Unit67>
     
    659659        <TopLine Value="61"/>
    660660        <CursorPos X="23" Y="61"/>
    661         <UsageCount Value="14"/>
     661        <UsageCount Value="13"/>
    662662        <DefaultSyntaxHighlighter Value="Delphi"/>
    663663      </Unit68>
     
    668668        <TopLine Value="1"/>
    669669        <CursorPos X="1" Y="1"/>
    670         <UsageCount Value="4"/>
     670        <UsageCount Value="3"/>
    671671        <DefaultSyntaxHighlighter Value="Delphi"/>
    672672      </Unit69>
     
    677677        <TopLine Value="1531"/>
    678678        <CursorPos X="1" Y="1545"/>
    679         <UsageCount Value="8"/>
     679        <UsageCount Value="7"/>
    680680        <DefaultSyntaxHighlighter Value="Delphi"/>
    681681      </Unit70>
     
    686686        <TopLine Value="1"/>
    687687        <CursorPos X="1" Y="1"/>
    688         <UsageCount Value="6"/>
     688        <UsageCount Value="5"/>
    689689        <DefaultSyntaxHighlighter Value="Delphi"/>
    690690      </Unit71>
     
    695695        <TopLine Value="1"/>
    696696        <CursorPos X="1" Y="1"/>
    697         <UsageCount Value="5"/>
     697        <UsageCount Value="4"/>
    698698        <DefaultSyntaxHighlighter Value="Delphi"/>
    699699      </Unit72>
     
    704704        <TopLine Value="10"/>
    705705        <CursorPos X="54" Y="31"/>
    706         <UsageCount Value="5"/>
     706        <UsageCount Value="4"/>
    707707        <DefaultSyntaxHighlighter Value="Delphi"/>
    708708      </Unit73>
     
    713713        <TopLine Value="1"/>
    714714        <CursorPos X="42" Y="14"/>
    715         <UsageCount Value="7"/>
     715        <UsageCount Value="6"/>
    716716        <DefaultSyntaxHighlighter Value="Delphi"/>
    717717      </Unit74>
     
    722722        <TopLine Value="1"/>
    723723        <CursorPos X="1" Y="1"/>
    724         <UsageCount Value="7"/>
     724        <UsageCount Value="6"/>
    725725        <DefaultSyntaxHighlighter Value="Delphi"/>
    726726      </Unit75>
     
    732732        <UnitName Value="UMainModule"/>
    733733        <IsVisibleTab Value="True"/>
    734         <EditorIndex Value="3"/>
    735         <WindowIndex Value="0"/>
    736         <TopLine Value="42"/>
    737         <CursorPos X="20" Y="57"/>
    738         <UsageCount Value="89"/>
     734        <EditorIndex Value="1"/>
     735        <WindowIndex Value="0"/>
     736        <TopLine Value="112"/>
     737        <CursorPos X="45" Y="130"/>
     738        <UsageCount Value="95"/>
    739739        <Loaded Value="True"/>
    740         <LoadedDesigner Value="True"/>
    741740        <DefaultSyntaxHighlighter Value="Delphi"/>
    742741      </Unit76>
     
    746745        <TopLine Value="291"/>
    747746        <CursorPos X="1" Y="1"/>
    748         <UsageCount Value="5"/>
     747        <UsageCount Value="4"/>
    749748        <DefaultSyntaxHighlighter Value="Delphi"/>
    750749      </Unit77>
     
    755754        <TopLine Value="55"/>
    756755        <CursorPos X="8" Y="80"/>
    757         <UsageCount Value="5"/>
     756        <UsageCount Value="4"/>
    758757        <DefaultSyntaxHighlighter Value="Delphi"/>
    759758      </Unit78>
     
    764763        <TopLine Value="59"/>
    765764        <CursorPos X="10" Y="61"/>
    766         <UsageCount Value="5"/>
     765        <UsageCount Value="4"/>
    767766        <DefaultSyntaxHighlighter Value="Delphi"/>
    768767      </Unit79>
     
    773772        <TopLine Value="10"/>
    774773        <CursorPos X="1" Y="35"/>
    775         <UsageCount Value="6"/>
     774        <UsageCount Value="5"/>
    776775        <DefaultSyntaxHighlighter Value="Delphi"/>
    777776      </Unit80>
     
    782781        <TopLine Value="22"/>
    783782        <CursorPos X="1" Y="43"/>
    784         <UsageCount Value="5"/>
     783        <UsageCount Value="4"/>
    785784        <DefaultSyntaxHighlighter Value="Delphi"/>
    786785      </Unit81>
     
    791790        <TopLine Value="2"/>
    792791        <CursorPos X="14" Y="19"/>
    793         <UsageCount Value="6"/>
     792        <UsageCount Value="5"/>
    794793        <DefaultSyntaxHighlighter Value="Delphi"/>
    795794      </Unit82>
     
    803802        <TopLine Value="1"/>
    804803        <CursorPos X="14" Y="21"/>
    805         <UsageCount Value="11"/>
     804        <UsageCount Value="10"/>
    806805        <DefaultSyntaxHighlighter Value="Delphi"/>
    807806      </Unit83>
     
    809808        <Filename Value="../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/>
    810809        <UnitName Value="USqlDatabase"/>
    811         <EditorIndex Value="0"/>
    812810        <WindowIndex Value="0"/>
    813811        <TopLine Value="15"/>
    814812        <CursorPos X="15" Y="70"/>
    815813        <UsageCount Value="26"/>
    816         <Loaded Value="True"/>
    817814        <DefaultSyntaxHighlighter Value="Delphi"/>
    818815      </Unit84>
     
    825822        <TopLine Value="48"/>
    826823        <CursorPos X="13" Y="342"/>
    827         <UsageCount Value="25"/>
     824        <UsageCount Value="24"/>
    828825        <DefaultSyntaxHighlighter Value="Delphi"/>
    829826      </Unit85>
     
    834831        <TopLine Value="33"/>
    835832        <CursorPos X="14" Y="50"/>
    836         <UsageCount Value="8"/>
     833        <UsageCount Value="7"/>
    837834        <DefaultSyntaxHighlighter Value="Delphi"/>
    838835      </Unit86>
     
    843840        <TopLine Value="179"/>
    844841        <CursorPos X="14" Y="199"/>
    845         <UsageCount Value="7"/>
     842        <UsageCount Value="6"/>
    846843        <DefaultSyntaxHighlighter Value="Delphi"/>
    847844      </Unit87>
     
    852849        <TopLine Value="1"/>
    853850        <CursorPos X="79" Y="4"/>
    854         <UsageCount Value="8"/>
     851        <UsageCount Value="7"/>
    855852        <DefaultSyntaxHighlighter Value="Delphi"/>
    856853      </Unit88>
     
    861858        <TopLine Value="184"/>
    862859        <CursorPos X="3" Y="199"/>
    863         <UsageCount Value="8"/>
     860        <UsageCount Value="7"/>
    864861        <DefaultSyntaxHighlighter Value="Delphi"/>
    865862      </Unit89>
     
    870867        <TopLine Value="1289"/>
    871868        <CursorPos X="36" Y="1307"/>
    872         <UsageCount Value="6"/>
     869        <UsageCount Value="5"/>
    873870        <DefaultSyntaxHighlighter Value="Delphi"/>
    874871      </Unit90>
     
    879876        <TopLine Value="34"/>
    880877        <CursorPos X="3" Y="51"/>
    881         <UsageCount Value="5"/>
     878        <UsageCount Value="4"/>
    882879        <DefaultSyntaxHighlighter Value="Delphi"/>
    883880      </Unit91>
     
    888885        <TopLine Value="174"/>
    889886        <CursorPos X="14" Y="191"/>
    890         <UsageCount Value="6"/>
     887        <UsageCount Value="5"/>
    891888        <DefaultSyntaxHighlighter Value="Delphi"/>
    892889      </Unit92>
     
    896893        <TopLine Value="538"/>
    897894        <CursorPos X="24" Y="555"/>
    898         <UsageCount Value="6"/>
     895        <UsageCount Value="5"/>
    899896        <DefaultSyntaxHighlighter Value="Delphi"/>
    900897      </Unit93>
     
    905902        <TopLine Value="137"/>
    906903        <CursorPos X="100" Y="154"/>
    907         <UsageCount Value="21"/>
     904        <UsageCount Value="20"/>
    908905        <DefaultSyntaxHighlighter Value="Delphi"/>
    909906      </Unit94>
     
    914911        <TopLine Value="49"/>
    915912        <CursorPos X="1" Y="53"/>
    916         <UsageCount Value="15"/>
     913        <UsageCount Value="14"/>
    917914        <DefaultSyntaxHighlighter Value="Delphi"/>
    918915      </Unit95>
     
    922919        <TopLine Value="2101"/>
    923920        <CursorPos X="3" Y="2108"/>
    924         <UsageCount Value="6"/>
     921        <UsageCount Value="5"/>
    925922        <DefaultSyntaxHighlighter Value="Delphi"/>
    926923      </Unit96>
     
    930927        <TopLine Value="180"/>
    931928        <CursorPos X="26" Y="197"/>
    932         <UsageCount Value="6"/>
     929        <UsageCount Value="5"/>
    933930        <DefaultSyntaxHighlighter Value="Delphi"/>
    934931      </Unit97>
     
    939936        <TopLine Value="3089"/>
    940937        <CursorPos X="27" Y="3106"/>
    941         <UsageCount Value="7"/>
     938        <UsageCount Value="6"/>
    942939        <DefaultSyntaxHighlighter Value="Delphi"/>
    943940      </Unit98>
     
    951948        <TopLine Value="17"/>
    952949        <CursorPos X="1" Y="47"/>
    953         <UsageCount Value="80"/>
     950        <UsageCount Value="86"/>
    954951        <DefaultSyntaxHighlighter Value="Delphi"/>
    955952      </Unit99>
     
    963960        <TopLine Value="26"/>
    964961        <CursorPos X="84" Y="45"/>
    965         <UsageCount Value="77"/>
     962        <UsageCount Value="83"/>
    966963        <DefaultSyntaxHighlighter Value="Delphi"/>
    967964      </Unit100>
     
    975972        <TopLine Value="66"/>
    976973        <CursorPos X="1" Y="97"/>
    977         <UsageCount Value="77"/>
     974        <UsageCount Value="83"/>
    978975        <DefaultSyntaxHighlighter Value="Delphi"/>
    979976      </Unit101>
     
    987984        <TopLine Value="26"/>
    988985        <CursorPos X="1" Y="53"/>
    989         <UsageCount Value="76"/>
     986        <UsageCount Value="82"/>
    990987        <DefaultSyntaxHighlighter Value="Delphi"/>
    991988      </Unit102>
     
    999996        <TopLine Value="24"/>
    1000997        <CursorPos X="1" Y="55"/>
    1001         <UsageCount Value="76"/>
     998        <UsageCount Value="82"/>
    1002999        <DefaultSyntaxHighlighter Value="Delphi"/>
    10031000      </Unit103>
     
    10111008        <TopLine Value="24"/>
    10121009        <CursorPos X="51" Y="42"/>
    1013         <UsageCount Value="76"/>
     1010        <UsageCount Value="82"/>
    10141011        <DefaultSyntaxHighlighter Value="Delphi"/>
    10151012      </Unit104>
     
    10231020        <TopLine Value="28"/>
    10241021        <CursorPos X="23" Y="40"/>
    1025         <UsageCount Value="76"/>
     1022        <UsageCount Value="82"/>
    10261023        <DefaultSyntaxHighlighter Value="Delphi"/>
    10271024      </Unit105>
     
    10351032        <TopLine Value="36"/>
    10361033        <CursorPos X="1" Y="67"/>
    1037         <UsageCount Value="76"/>
     1034        <UsageCount Value="82"/>
    10381035        <DefaultSyntaxHighlighter Value="Delphi"/>
    10391036      </Unit106>
     
    10471044        <TopLine Value="8"/>
    10481045        <CursorPos X="1" Y="39"/>
    1049         <UsageCount Value="76"/>
     1046        <UsageCount Value="82"/>
    10501047        <DefaultSyntaxHighlighter Value="Delphi"/>
    10511048      </Unit107>
     
    10591056        <TopLine Value="26"/>
    10601057        <CursorPos X="1" Y="47"/>
    1061         <UsageCount Value="76"/>
     1058        <UsageCount Value="82"/>
    10621059        <DefaultSyntaxHighlighter Value="Delphi"/>
    10631060      </Unit108>
     
    10711068        <TopLine Value="38"/>
    10721069        <CursorPos X="1" Y="68"/>
    1073         <UsageCount Value="76"/>
     1070        <UsageCount Value="82"/>
    10741071        <DefaultSyntaxHighlighter Value="Delphi"/>
    10751072      </Unit109>
     
    10831080        <TopLine Value="15"/>
    10841081        <CursorPos X="1" Y="46"/>
    1085         <UsageCount Value="76"/>
     1082        <UsageCount Value="82"/>
    10861083        <DefaultSyntaxHighlighter Value="Delphi"/>
    10871084      </Unit110>
     
    10951092        <TopLine Value="55"/>
    10961093        <CursorPos X="1" Y="83"/>
    1097         <UsageCount Value="76"/>
     1094        <UsageCount Value="82"/>
    10981095        <DefaultSyntaxHighlighter Value="Delphi"/>
    10991096      </Unit111>
     
    11091106          <CursorPos X="50" Y="4"/>
    11101107        </ExtraEditor1>
    1111         <UsageCount Value="5"/>
     1108        <UsageCount Value="4"/>
    11121109        <DefaultSyntaxHighlighter Value="LFM"/>
    11131110      </Unit112>
     
    11181115        <TopLine Value="344"/>
    11191116        <CursorPos X="30" Y="361"/>
    1120         <UsageCount Value="5"/>
     1117        <UsageCount Value="4"/>
    11211118        <DefaultSyntaxHighlighter Value="Delphi"/>
    11221119      </Unit113>
     
    11271124        <TopLine Value="475"/>
    11281125        <CursorPos X="34" Y="492"/>
    1129         <UsageCount Value="5"/>
     1126        <UsageCount Value="4"/>
    11301127        <DefaultSyntaxHighlighter Value="Delphi"/>
    11311128      </Unit114>
     
    11361133        <TopLine Value="23"/>
    11371134        <CursorPos X="37" Y="23"/>
    1138         <UsageCount Value="5"/>
     1135        <UsageCount Value="4"/>
    11391136        <DefaultSyntaxHighlighter Value="Delphi"/>
    11401137      </Unit115>
    11411138      <Unit116>
    11421139        <Filename Value="Common/URegistry.pas"/>
    1143         <IsPartOfProject Value="True"/>
    11441140        <UnitName Value="URegistry"/>
    1145         <EditorIndex Value="4"/>
    11461141        <WindowIndex Value="0"/>
    11471142        <TopLine Value="4"/>
    11481143        <CursorPos X="14" Y="17"/>
    1149         <UsageCount Value="70"/>
    1150         <Loaded Value="True"/>
     1144        <UsageCount Value="76"/>
    11511145        <DefaultSyntaxHighlighter Value="Delphi"/>
    11521146      </Unit116>
     
    11571151        <TopLine Value="72"/>
    11581152        <CursorPos X="62" Y="94"/>
    1159         <UsageCount Value="9"/>
     1153        <UsageCount Value="8"/>
    11601154        <DefaultSyntaxHighlighter Value="Delphi"/>
    11611155      </Unit117>
     
    11651159        <TopLine Value="35"/>
    11661160        <CursorPos X="22" Y="53"/>
    1167         <UsageCount Value="9"/>
     1161        <UsageCount Value="8"/>
    11681162        <DefaultSyntaxHighlighter Value="Delphi"/>
    11691163      </Unit118>
     
    11741168        <TopLine Value="27"/>
    11751169        <CursorPos X="14" Y="74"/>
    1176         <UsageCount Value="9"/>
     1170        <UsageCount Value="8"/>
    11771171        <DefaultSyntaxHighlighter Value="Delphi"/>
    11781172      </Unit119>
     
    11821176        <TopLine Value="1"/>
    11831177        <CursorPos X="3" Y="1"/>
    1184         <UsageCount Value="6"/>
     1178        <UsageCount Value="5"/>
    11851179        <DefaultSyntaxHighlighter Value="Delphi"/>
    11861180      </Unit120>
     
    11901184        <TopLine Value="153"/>
    11911185        <CursorPos X="13" Y="170"/>
    1192         <UsageCount Value="9"/>
     1186        <UsageCount Value="8"/>
    11931187        <DefaultSyntaxHighlighter Value="Delphi"/>
    11941188      </Unit121>
     
    11981192        <TopLine Value="337"/>
    11991193        <CursorPos X="3" Y="337"/>
    1200         <UsageCount Value="9"/>
     1194        <UsageCount Value="8"/>
    12011195        <DefaultSyntaxHighlighter Value="Delphi"/>
    12021196      </Unit122>
     
    12061200        <TopLine Value="11"/>
    12071201        <CursorPos X="2" Y="28"/>
    1208         <UsageCount Value="7"/>
     1202        <UsageCount Value="6"/>
    12091203        <DefaultSyntaxHighlighter Value="Delphi"/>
    12101204      </Unit123>
     
    12121206        <Filename Value="ReadMe.txt"/>
    12131207        <IsPartOfProject Value="True"/>
    1214         <UsageCount Value="53"/>
     1208        <UsageCount Value="59"/>
    12151209        <DefaultSyntaxHighlighter Value="None"/>
    12161210      </Unit124>
    12171211      <Unit125>
    12181212        <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/>
    1219         <EditorIndex Value="5"/>
    12201213        <WindowIndex Value="0"/>
    12211214        <TopLine Value="1"/>
    12221215        <CursorPos X="24" Y="4"/>
    12231216        <UsageCount Value="10"/>
    1224         <Loaded Value="True"/>
    12251217      </Unit125>
    12261218      <Unit126>
    12271219        <Filename Value="Components/TemplateGenerics/Generic/GenericList.inc"/>
    1228         <EditorIndex Value="6"/>
    12291220        <WindowIndex Value="0"/>
    12301221        <TopLine Value="31"/>
    12311222        <CursorPos X="50" Y="44"/>
    12321223        <UsageCount Value="10"/>
    1233         <Loaded Value="True"/>
    12341224      </Unit126>
    12351225      <Unit127>
     
    12371227        <IsPartOfProject Value="True"/>
    12381228        <UnitName Value="UApplicationInfo"/>
    1239         <EditorIndex Value="7"/>
    12401229        <WindowIndex Value="0"/>
    12411230        <TopLine Value="43"/>
    12421231        <CursorPos X="50" Y="65"/>
    1243         <UsageCount Value="20"/>
     1232        <UsageCount Value="27"/>
     1233        <DefaultSyntaxHighlighter Value="Delphi"/>
     1234      </Unit127>
     1235      <Unit128>
     1236        <Filename Value="Components/CoolWeb/Persistence/USqlDatabase.pas"/>
     1237        <UnitName Value="USqlDatabase"/>
     1238        <EditorIndex Value="3"/>
     1239        <WindowIndex Value="0"/>
     1240        <TopLine Value="1"/>
     1241        <CursorPos X="14" Y="1"/>
     1242        <UsageCount Value="10"/>
    12441243        <Loaded Value="True"/>
    1245         <DefaultSyntaxHighlighter Value="Delphi"/>
    1246       </Unit127>
     1244      </Unit128>
     1245      <Unit129>
     1246        <Filename Value="Components/CoolWeb/WebServer/UWebApp.pas"/>
     1247        <UnitName Value="UWebApp"/>
     1248        <EditorIndex Value="5"/>
     1249        <WindowIndex Value="0"/>
     1250        <TopLine Value="118"/>
     1251        <CursorPos X="3" Y="123"/>
     1252        <UsageCount Value="13"/>
     1253        <Loaded Value="True"/>
     1254      </Unit129>
     1255      <Unit130>
     1256        <Filename Value="Components/CoolWeb/Modules/UPageList.pas"/>
     1257        <UnitName Value="UPageList"/>
     1258        <EditorIndex Value="6"/>
     1259        <WindowIndex Value="0"/>
     1260        <TopLine Value="12"/>
     1261        <CursorPos X="1" Y="1"/>
     1262        <UsageCount Value="13"/>
     1263        <Loaded Value="True"/>
     1264      </Unit130>
     1265      <Unit131>
     1266        <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/>
     1267        <UnitName Value="IniFiles"/>
     1268        <EditorIndex Value="2"/>
     1269        <WindowIndex Value="0"/>
     1270        <TopLine Value="97"/>
     1271        <CursorPos X="20" Y="115"/>
     1272        <UsageCount Value="10"/>
     1273        <Loaded Value="True"/>
     1274      </Unit131>
    12471275    </Units>
    1248     <JumpHistory Count="7" HistoryIndex="6">
     1276    <JumpHistory Count="26" HistoryIndex="25">
    12491277      <Position1>
    1250         <Filename Value="Modules/UMainModule.pas"/>
    1251         <Caret Line="257" Column="1" TopLine="228"/>
     1278        <Filename Value="ZdechovNET.lpr"/>
     1279        <Caret Line="20" Column="1" TopLine="9"/>
    12521280      </Position1>
    12531281      <Position2>
    1254         <Filename Value="Modules/UMainModule.pas"/>
    1255         <Caret Line="235" Column="22" TopLine="226"/>
     1282        <Filename Value="ZdechovNET.lpr"/>
     1283        <Caret Line="21" Column="1" TopLine="9"/>
    12561284      </Position2>
    12571285      <Position3>
    1258         <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/>
    1259         <Caret Line="1" Column="1" TopLine="1"/>
     1286        <Filename Value="ZdechovNET.lpr"/>
     1287        <Caret Line="22" Column="1" TopLine="9"/>
    12601288      </Position3>
    12611289      <Position4>
    1262         <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/>
    1263         <Caret Line="20" Column="21" TopLine="7"/>
     1290        <Filename Value="ZdechovNET.lpr"/>
     1291        <Caret Line="23" Column="1" TopLine="9"/>
    12641292      </Position4>
    12651293      <Position5>
    1266         <Filename Value="Modules/UMainModule.pas"/>
    1267         <Caret Line="239" Column="42" TopLine="223"/>
     1294        <Filename Value="ZdechovNET.lpr"/>
     1295        <Caret Line="24" Column="1" TopLine="9"/>
    12681296      </Position5>
    12691297      <Position6>
    1270         <Filename Value="Modules/UMainModule.pas"/>
    1271         <Caret Line="235" Column="23" TopLine="223"/>
     1298        <Filename Value="ZdechovNET.lpr"/>
     1299        <Caret Line="25" Column="1" TopLine="9"/>
    12721300      </Position6>
    12731301      <Position7>
     1302        <Filename Value="ZdechovNET.lpr"/>
     1303        <Caret Line="26" Column="1" TopLine="9"/>
     1304      </Position7>
     1305      <Position8>
     1306        <Filename Value="ZdechovNET.lpr"/>
     1307        <Caret Line="27" Column="1" TopLine="9"/>
     1308      </Position8>
     1309      <Position9>
     1310        <Filename Value="ZdechovNET.lpr"/>
     1311        <Caret Line="28" Column="1" TopLine="9"/>
     1312      </Position9>
     1313      <Position10>
     1314        <Filename Value="ZdechovNET.lpr"/>
     1315        <Caret Line="29" Column="1" TopLine="9"/>
     1316      </Position10>
     1317      <Position11>
     1318        <Filename Value="ZdechovNET.lpr"/>
     1319        <Caret Line="30" Column="1" TopLine="9"/>
     1320      </Position11>
     1321      <Position12>
     1322        <Filename Value="ZdechovNET.lpr"/>
     1323        <Caret Line="31" Column="1" TopLine="10"/>
     1324      </Position12>
     1325      <Position13>
     1326        <Filename Value="ZdechovNET.lpr"/>
     1327        <Caret Line="32" Column="1" TopLine="11"/>
     1328      </Position13>
     1329      <Position14>
     1330        <Filename Value="ZdechovNET.lpr"/>
     1331        <Caret Line="34" Column="1" TopLine="13"/>
     1332      </Position14>
     1333      <Position15>
     1334        <Filename Value="ZdechovNET.lpr"/>
     1335        <Caret Line="36" Column="1" TopLine="13"/>
     1336      </Position15>
     1337      <Position16>
     1338        <Filename Value="ZdechovNET.lpr"/>
     1339        <Caret Line="15" Column="14" TopLine="1"/>
     1340      </Position16>
     1341      <Position17>
    12741342        <Filename Value="Modules/UMainModule.pas"/>
    1275         <Caret Line="13" Column="1" TopLine="1"/>
    1276       </Position7>
     1343        <Caret Line="232" Column="9" TopLine="230"/>
     1344      </Position17>
     1345      <Position18>
     1346        <Filename Value="Modules/UMainModule.pas"/>
     1347        <Caret Line="238" Column="20" TopLine="233"/>
     1348      </Position18>
     1349      <Position19>
     1350        <Filename Value="Modules/UMainModule.pas"/>
     1351        <Caret Line="260" Column="12" TopLine="250"/>
     1352      </Position19>
     1353      <Position20>
     1354        <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/>
     1355        <Caret Line="162" Column="29" TopLine="152"/>
     1356      </Position20>
     1357      <Position21>
     1358        <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/>
     1359        <Caret Line="123" Column="28" TopLine="111"/>
     1360      </Position21>
     1361      <Position22>
     1362        <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/>
     1363        <Caret Line="117" Column="39" TopLine="97"/>
     1364      </Position22>
     1365      <Position23>
     1366        <Filename Value="Modules/UMainModule.pas"/>
     1367        <Caret Line="1" Column="3" TopLine="1"/>
     1368      </Position23>
     1369      <Position24>
     1370        <Filename Value="Modules/UMainModule.pas"/>
     1371        <Caret Line="45" Column="31" TopLine="24"/>
     1372      </Position24>
     1373      <Position25>
     1374        <Filename Value="Modules/UMainModule.pas"/>
     1375        <Caret Line="233" Column="39" TopLine="212"/>
     1376      </Position25>
     1377      <Position26>
     1378        <Filename Value="Modules/UMainModule.pas"/>
     1379        <Caret Line="125" Column="1" TopLine="122"/>
     1380      </Position26>
    12771381    </JumpHistory>
    12781382  </ProjectOptions>
     
    12831387    </Target>
    12841388    <SearchPaths>
    1285       <OtherUnitFiles Value="/usr/lib/mysql;/usr/lib64/mysql;Common;Application;WebServer;Network;Modules;Pages"/>
     1389      <OtherUnitFiles Value="/usr/lib/mysql;/usr/lib64/mysql;Application;WebServer;Network;Modules;Pages"/>
    12861390      <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
    12871391    </SearchPaths>
Note: See TracChangeset for help on using the changeset viewer.