Changeset 63
- Timestamp:
- Dec 19, 2011, 12:58:50 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 bin 3 3 lib 4 Config.ini
-
- Property svn:ignore
-
trunk/.htaccess
r58 r63 5 5 # Disable access to source code files 6 6 # xml - config files in .config subdirectory 7 <FilesMatch "\.(pas|o|ppu|lpi|a|xml )$">7 <FilesMatch "\.(pas|o|ppu|lpi|a|xml|ini)$"> 8 8 Deny from all 9 9 </FilesMatch> -
trunk/Modules/UMainModule.pas
r62 r63 7 7 uses 8 8 Classes, SysUtils, FileUtil, LResources, UHTTPServerCGI, UHTTPSessionMySQL, 9 UHTTPServer, USqlDatabase, URegistry, DateUtils, UWebPage, UWebApp,9 UHTTPServer, USqlDatabase, INIFiles, DateUtils, UWebPage, UWebApp, 10 10 UXmlClasses, UHtmlClasses, UCore, UHTTPServerTCP, 11 11 UHTTPSessionFile, UUser, SpecializedList, Registry; 12 13 const 14 ConfigFile = 'Config.ini'; 12 15 13 16 type … … 115 118 UserOnline := TWebOnlineUser.Create; 116 119 UserOnline.Database := Database; 120 LoadFromRegistry; 117 121 end; 118 122 119 123 destructor TMainModule.Destroy; 120 124 begin 125 SaveToRegistry; 121 126 HtmlDocument.Free; 122 127 User.Free; … … 229 234 230 235 procedure TMainModule.LoadFromRegistry; 231 begin 232 with TRegistryEx.Create do 236 const 237 SectionGeneral = 'General'; 238 SectionDatabase = 'Database'; 239 begin 240 with TIniFile.Create(ConfigFile) do 233 241 try 234 RootKey := HKEY_CURRENT_USER;235 OpenKey(ApplicationInfo.RegistryKey, True);236 Style := ReadString WithDefault('Style', 'Basic');237 BaseURL := ReadString WithDefault('BaseURL', 'http://localhost');238 Database.Hostname := ReadString WithDefault('DatabaseHostName', 'localhost');239 Database.Database := ReadString WithDefault('DatabaseDatabase', 'web');240 Database.UserName := ReadString WithDefault('DatabaseUserName', 'user');241 Database.Password := ReadString WithDefault('DatabasePassword', 'password');242 FormatHTML := ReadBool WithDefault('FormatHTML', False);243 Application.LogException := not ReadBool WithDefault('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); 244 252 finally 245 253 Free; … … 248 256 249 257 procedure TMainModule.SaveToRegistry; 250 begin 251 258 const 259 SectionGeneral = 'General'; 260 SectionDatabase = 'Database'; 261 begin 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; 252 277 end; 253 278 254 279 procedure TMainModule.Run; 255 280 begin 256 LoadFromRegistry;257 281 InitDatabase; 258 282 //Database.Query('SELECT * FROM ssss'); -
trunk/ZdechovNET.lpi
r62 r63 52 52 </Item3> 53 53 </RequiredPackages> 54 <Units Count="1 28">54 <Units Count="132"> 55 55 <Unit0> 56 56 <Filename Value="ZdechovNET.lpr"/> 57 57 <IsPartOfProject Value="True"/> 58 58 <UnitName Value="ZdechovNET"/> 59 <EditorIndex Value=" 2"/>59 <EditorIndex Value="0"/> 60 60 <WindowIndex Value="0"/> 61 61 <TopLine Value="13"/> 62 <CursorPos X=" 59" Y="6"/>62 <CursorPos X="27" Y="30"/> 63 63 <UsageCount Value="203"/> 64 64 <Loaded Value="True"/> … … 71 71 <TopLine Value="1"/> 72 72 <CursorPos X="1" Y="11"/> 73 <UsageCount Value="19 5"/>73 <UsageCount Value="194"/> 74 74 <DefaultSyntaxHighlighter Value="Delphi"/> 75 75 </Unit1> … … 80 80 <TopLine Value="291"/> 81 81 <CursorPos X="1" Y="311"/> 82 <UsageCount Value="8 5"/>82 <UsageCount Value="84"/> 83 83 <DefaultSyntaxHighlighter Value="Delphi"/> 84 84 </Unit2> 85 85 <Unit3> 86 86 <Filename Value="UXmlClasses.pas"/> 87 <UsageCount Value="8 5"/>87 <UsageCount Value="84"/> 88 88 <DefaultSyntaxHighlighter Value="Delphi"/> 89 89 </Unit3> … … 92 92 <IsPartOfProject Value="True"/> 93 93 <UnitName Value="UCore"/> 94 <EditorIndex Value=" 1"/>95 <WindowIndex Value="0"/> 96 <TopLine Value="1 "/>97 <CursorPos X="3 2" Y="16"/>94 <EditorIndex Value="4"/> 95 <WindowIndex Value="0"/> 96 <TopLine Value="119"/> 97 <CursorPos X="35" Y="14"/> 98 98 <UsageCount Value="203"/> 99 99 <Loaded Value="True"/> … … 106 106 <TopLine Value="217"/> 107 107 <CursorPos X="5" Y="236"/> 108 <UsageCount Value="8 5"/>108 <UsageCount Value="84"/> 109 109 <DefaultSyntaxHighlighter Value="Delphi"/> 110 110 </Unit5> … … 115 115 <TopLine Value="10"/> 116 116 <CursorPos X="27" Y="19"/> 117 <UsageCount Value="8 5"/>117 <UsageCount Value="84"/> 118 118 <DefaultSyntaxHighlighter Value="Delphi"/> 119 119 </Unit6> … … 123 123 <TopLine Value="17"/> 124 124 <CursorPos X="34" Y="30"/> 125 <UsageCount Value="8 5"/>125 <UsageCount Value="84"/> 126 126 <DefaultSyntaxHighlighter Value="Delphi"/> 127 127 </Unit7> … … 132 132 <TopLine Value="204"/> 133 133 <CursorPos X="25" Y="226"/> 134 <UsageCount Value="8 5"/>134 <UsageCount Value="84"/> 135 135 <DefaultSyntaxHighlighter Value="Delphi"/> 136 136 </Unit8> … … 141 141 <TopLine Value="102"/> 142 142 <CursorPos X="25" Y="107"/> 143 <UsageCount Value="8 5"/>143 <UsageCount Value="84"/> 144 144 <DefaultSyntaxHighlighter Value="Delphi"/> 145 145 </Unit9> … … 150 150 <TopLine Value="40"/> 151 151 <CursorPos X="9" Y="59"/> 152 <UsageCount Value="7 3"/>152 <UsageCount Value="72"/> 153 153 <DefaultSyntaxHighlighter Value="Delphi"/> 154 154 </Unit10> … … 158 158 <TopLine Value="91"/> 159 159 <CursorPos X="10" Y="110"/> 160 <UsageCount Value="5 5"/>160 <UsageCount Value="54"/> 161 161 <DefaultSyntaxHighlighter Value="Delphi"/> 162 162 </Unit11> … … 167 167 <TopLine Value="15"/> 168 168 <CursorPos X="38" Y="30"/> 169 <UsageCount Value="28 9"/>169 <UsageCount Value="288"/> 170 170 <DefaultSyntaxHighlighter Value="Delphi"/> 171 171 </Unit12> … … 192 192 <TopLine Value="608"/> 193 193 <CursorPos X="44" Y="627"/> 194 <UsageCount Value="5 4"/>194 <UsageCount Value="53"/> 195 195 <DefaultSyntaxHighlighter Value="Delphi"/> 196 196 </Unit15> … … 201 201 <TopLine Value="39"/> 202 202 <CursorPos X="25" Y="58"/> 203 <UsageCount Value="5 4"/>203 <UsageCount Value="53"/> 204 204 <DefaultSyntaxHighlighter Value="Delphi"/> 205 205 </Unit16> … … 210 210 <TopLine Value="1"/> 211 211 <CursorPos X="69" Y="19"/> 212 <UsageCount Value=" 50"/>212 <UsageCount Value="49"/> 213 213 <DefaultSyntaxHighlighter Value="Delphi"/> 214 214 </Unit17> … … 219 219 <TopLine Value="1"/> 220 220 <CursorPos X="52" Y="124"/> 221 <UsageCount Value="4 7"/>221 <UsageCount Value="46"/> 222 222 <DefaultSyntaxHighlighter Value="Delphi"/> 223 223 </Unit18> … … 227 227 <TopLine Value="677"/> 228 228 <CursorPos X="14" Y="691"/> 229 <UsageCount Value="5 7"/>229 <UsageCount Value="56"/> 230 230 <DefaultSyntaxHighlighter Value="Delphi"/> 231 231 </Unit19> … … 235 235 <TopLine Value="10"/> 236 236 <CursorPos X="22" Y="23"/> 237 <UsageCount Value="5 6"/>237 <UsageCount Value="55"/> 238 238 <DefaultSyntaxHighlighter Value="Delphi"/> 239 239 </Unit20> … … 244 244 <TopLine Value="1140"/> 245 245 <CursorPos X="26" Y="1143"/> 246 <UsageCount Value="5 6"/>246 <UsageCount Value="55"/> 247 247 <DefaultSyntaxHighlighter Value="Delphi"/> 248 248 </Unit21> … … 252 252 <TopLine Value="43"/> 253 253 <CursorPos X="5" Y="61"/> 254 <UsageCount Value="5 6"/>254 <UsageCount Value="55"/> 255 255 <DefaultSyntaxHighlighter Value="Delphi"/> 256 256 </Unit22> … … 260 260 <TopLine Value="50"/> 261 261 <CursorPos X="10" Y="63"/> 262 <UsageCount Value="5 6"/>262 <UsageCount Value="55"/> 263 263 <DefaultSyntaxHighlighter Value="Delphi"/> 264 264 </Unit23> … … 269 269 <TopLine Value="17"/> 270 270 <CursorPos X="32" Y="36"/> 271 <UsageCount Value="17 5"/>271 <UsageCount Value="174"/> 272 272 <DefaultSyntaxHighlighter Value="Delphi"/> 273 273 </Unit24> … … 278 278 <TopLine Value="8"/> 279 279 <CursorPos X="17" Y="19"/> 280 <UsageCount Value=" 2"/>280 <UsageCount Value="1"/> 281 281 <DefaultSyntaxHighlighter Value="Delphi"/> 282 282 </Unit25> … … 287 287 <TopLine Value="25"/> 288 288 <CursorPos X="86" Y="94"/> 289 <UsageCount Value="17 5"/>289 <UsageCount Value="174"/> 290 290 <DefaultSyntaxHighlighter Value="Delphi"/> 291 291 </Unit26> … … 296 296 <TopLine Value="549"/> 297 297 <CursorPos X="19" Y="569"/> 298 <UsageCount Value="17 6"/>298 <UsageCount Value="175"/> 299 299 <DefaultSyntaxHighlighter Value="Delphi"/> 300 300 </Unit27> … … 305 305 <TopLine Value="1"/> 306 306 <CursorPos X="64" Y="14"/> 307 <UsageCount Value="17 6"/>307 <UsageCount Value="175"/> 308 308 <DefaultSyntaxHighlighter Value="Delphi"/> 309 309 </Unit28> … … 314 314 <TopLine Value="6"/> 315 315 <CursorPos X="5" Y="33"/> 316 <UsageCount Value="17 6"/>316 <UsageCount Value="175"/> 317 317 <DefaultSyntaxHighlighter Value="Delphi"/> 318 318 </Unit29> … … 323 323 <TopLine Value="99"/> 324 324 <CursorPos X="33" Y="117"/> 325 <UsageCount Value=" 3"/>325 <UsageCount Value="2"/> 326 326 <DefaultSyntaxHighlighter Value="Delphi"/> 327 327 </Unit30> … … 331 331 <TopLine Value="61"/> 332 332 <CursorPos X="14" Y="78"/> 333 <UsageCount Value="5 5"/>333 <UsageCount Value="54"/> 334 334 <DefaultSyntaxHighlighter Value="Delphi"/> 335 335 </Unit31> … … 339 339 <TopLine Value="519"/> 340 340 <CursorPos X="23" Y="526"/> 341 <UsageCount Value="5 1"/>341 <UsageCount Value="50"/> 342 342 <DefaultSyntaxHighlighter Value="Delphi"/> 343 343 </Unit32> … … 348 348 <TopLine Value="11"/> 349 349 <CursorPos X="51" Y="27"/> 350 <UsageCount Value="35 7"/>350 <UsageCount Value="356"/> 351 351 <DefaultSyntaxHighlighter Value="Delphi"/> 352 352 </Unit33> … … 357 357 <TopLine Value="1"/> 358 358 <CursorPos X="16" Y="164"/> 359 <UsageCount Value="31 7"/>359 <UsageCount Value="316"/> 360 360 <DefaultSyntaxHighlighter Value="Delphi"/> 361 361 </Unit34> … … 366 366 <TopLine Value="81"/> 367 367 <CursorPos X="1" Y="96"/> 368 <UsageCount Value="31 6"/>368 <UsageCount Value="315"/> 369 369 <DefaultSyntaxHighlighter Value="Delphi"/> 370 370 </Unit35> … … 375 375 <TopLine Value="1"/> 376 376 <CursorPos X="18" Y="45"/> 377 <UsageCount Value="31 6"/>377 <UsageCount Value="315"/> 378 378 <DefaultSyntaxHighlighter Value="Delphi"/> 379 379 </Unit36> … … 384 384 <TopLine Value="142"/> 385 385 <CursorPos X="52" Y="165"/> 386 <UsageCount Value="31 6"/>386 <UsageCount Value="315"/> 387 387 <DefaultSyntaxHighlighter Value="Delphi"/> 388 388 </Unit37> … … 393 393 <TopLine Value="109"/> 394 394 <CursorPos X="36" Y="96"/> 395 <UsageCount Value="31 6"/>395 <UsageCount Value="315"/> 396 396 <DefaultSyntaxHighlighter Value="Delphi"/> 397 397 </Unit38> … … 402 402 <TopLine Value="44"/> 403 403 <CursorPos X="27" Y="61"/> 404 <UsageCount Value="31 6"/>404 <UsageCount Value="315"/> 405 405 <DefaultSyntaxHighlighter Value="Delphi"/> 406 406 </Unit39> … … 411 411 <TopLine Value="1"/> 412 412 <CursorPos X="50" Y="8"/> 413 <UsageCount Value="31 6"/>413 <UsageCount Value="315"/> 414 414 <DefaultSyntaxHighlighter Value="Delphi"/> 415 415 </Unit40> … … 420 420 <TopLine Value="1"/> 421 421 <CursorPos X="21" Y="1"/> 422 <UsageCount Value="31 5"/>422 <UsageCount Value="314"/> 423 423 <DefaultSyntaxHighlighter Value="Delphi"/> 424 424 </Unit41> … … 429 429 <TopLine Value="1"/> 430 430 <CursorPos X="53" Y="8"/> 431 <UsageCount Value="31 5"/>431 <UsageCount Value="314"/> 432 432 <DefaultSyntaxHighlighter Value="Delphi"/> 433 433 </Unit42> … … 438 438 <TopLine Value="1"/> 439 439 <CursorPos X="52" Y="92"/> 440 <UsageCount Value="31 5"/>440 <UsageCount Value="314"/> 441 441 <DefaultSyntaxHighlighter Value="Delphi"/> 442 442 </Unit43> … … 447 447 <TopLine Value="83"/> 448 448 <CursorPos X="47" Y="106"/> 449 <UsageCount Value="31 5"/>449 <UsageCount Value="314"/> 450 450 <DefaultSyntaxHighlighter Value="Delphi"/> 451 451 </Unit44> … … 456 456 <TopLine Value="1"/> 457 457 <CursorPos X="3" Y="687"/> 458 <UsageCount Value="31 5"/>458 <UsageCount Value="314"/> 459 459 <DefaultSyntaxHighlighter Value="Delphi"/> 460 460 </Unit45> … … 465 465 <TopLine Value="383"/> 466 466 <CursorPos X="15" Y="397"/> 467 <UsageCount Value="3 6"/>467 <UsageCount Value="35"/> 468 468 <DefaultSyntaxHighlighter Value="Delphi"/> 469 469 </Unit46> … … 474 474 <TopLine Value="1"/> 475 475 <CursorPos X="1" Y="15"/> 476 <UsageCount Value="33 4"/>476 <UsageCount Value="333"/> 477 477 <DefaultSyntaxHighlighter Value="Delphi"/> 478 478 </Unit47> … … 482 482 <TopLine Value="690"/> 483 483 <CursorPos X="3" Y="695"/> 484 <UsageCount Value="3 6"/>484 <UsageCount Value="35"/> 485 485 <DefaultSyntaxHighlighter Value="Delphi"/> 486 486 </Unit48> … … 491 491 <TopLine Value="1"/> 492 492 <CursorPos X="43" Y="79"/> 493 <UsageCount Value="31 2"/>493 <UsageCount Value="311"/> 494 494 <DefaultSyntaxHighlighter Value="Delphi"/> 495 495 </Unit49> … … 499 499 <TopLine Value="29"/> 500 500 <CursorPos X="15" Y="46"/> 501 <UsageCount Value="17 4"/>501 <UsageCount Value="173"/> 502 502 <DefaultSyntaxHighlighter Value="Delphi"/> 503 503 </Unit50> … … 508 508 <TopLine Value="1"/> 509 509 <CursorPos X="26" Y="18"/> 510 <UsageCount Value="7 6"/>510 <UsageCount Value="75"/> 511 511 <DefaultSyntaxHighlighter Value="Delphi"/> 512 512 </Unit51> … … 517 517 <TopLine Value="1"/> 518 518 <CursorPos X="15" Y="20"/> 519 <UsageCount Value="8 9"/>519 <UsageCount Value="88"/> 520 520 <DefaultSyntaxHighlighter Value="Delphi"/> 521 521 </Unit52> … … 526 526 <TopLine Value="1"/> 527 527 <CursorPos X="44" Y="17"/> 528 <UsageCount Value="8 8"/>528 <UsageCount Value="87"/> 529 529 <DefaultSyntaxHighlighter Value="Delphi"/> 530 530 </Unit53> … … 535 535 <TopLine Value="1"/> 536 536 <CursorPos X="48" Y="25"/> 537 <UsageCount Value=" 7"/>537 <UsageCount Value="6"/> 538 538 <DefaultSyntaxHighlighter Value="Delphi"/> 539 539 </Unit54> … … 544 544 <TopLine Value="1"/> 545 545 <CursorPos X="60" Y="11"/> 546 <UsageCount Value=" 6"/>546 <UsageCount Value="5"/> 547 547 <DefaultSyntaxHighlighter Value="Delphi"/> 548 548 </Unit55> … … 553 553 <TopLine Value="92"/> 554 554 <CursorPos X="7" Y="119"/> 555 <UsageCount Value=" 2"/>555 <UsageCount Value="1"/> 556 556 <DefaultSyntaxHighlighter Value="Delphi"/> 557 557 </Unit56> … … 562 562 <TopLine Value="27"/> 563 563 <CursorPos X="5" Y="44"/> 564 <UsageCount Value="2 2"/>564 <UsageCount Value="21"/> 565 565 <DefaultSyntaxHighlighter Value="Delphi"/> 566 566 </Unit57> … … 571 571 <TopLine Value="159"/> 572 572 <CursorPos X="14" Y="176"/> 573 <UsageCount Value="1 8"/>573 <UsageCount Value="17"/> 574 574 <DefaultSyntaxHighlighter Value="Delphi"/> 575 575 </Unit58> … … 581 581 <TopLine Value="12"/> 582 582 <CursorPos X="40" Y="12"/> 583 <UsageCount Value="1 07"/>583 <UsageCount Value="113"/> 584 584 <DefaultSyntaxHighlighter Value="Delphi"/> 585 585 </Unit59> … … 590 590 <TopLine Value="1"/> 591 591 <CursorPos X="1" Y="1"/> 592 <UsageCount Value=" 4"/>592 <UsageCount Value="3"/> 593 593 <DefaultSyntaxHighlighter Value="Delphi"/> 594 594 </Unit60> … … 599 599 <TopLine Value="1"/> 600 600 <CursorPos X="1" Y="1"/> 601 <UsageCount Value=" 4"/>601 <UsageCount Value="3"/> 602 602 <DefaultSyntaxHighlighter Value="Delphi"/> 603 603 </Unit61> … … 608 608 <TopLine Value="379"/> 609 609 <CursorPos X="3" Y="423"/> 610 <UsageCount Value="1 4"/>610 <UsageCount Value="13"/> 611 611 <DefaultSyntaxHighlighter Value="Delphi"/> 612 612 </Unit62> … … 617 617 <TopLine Value="19"/> 618 618 <CursorPos X="50" Y="76"/> 619 <UsageCount Value="1 6"/>619 <UsageCount Value="15"/> 620 620 <DefaultSyntaxHighlighter Value="Delphi"/> 621 621 </Unit63> … … 625 625 <TopLine Value="168"/> 626 626 <CursorPos X="23" Y="185"/> 627 <UsageCount Value=" 3"/>627 <UsageCount Value="2"/> 628 628 <DefaultSyntaxHighlighter Value="Delphi"/> 629 629 </Unit64> … … 634 634 <TopLine Value="54"/> 635 635 <CursorPos X="26" Y="71"/> 636 <UsageCount Value=" 9"/>636 <UsageCount Value="8"/> 637 637 <DefaultSyntaxHighlighter Value="Delphi"/> 638 638 </Unit65> … … 642 642 <TopLine Value="1"/> 643 643 <CursorPos X="14" Y="3"/> 644 <UsageCount Value=" 7"/>644 <UsageCount Value="6"/> 645 645 <DefaultSyntaxHighlighter Value="Delphi"/> 646 646 </Unit66> … … 651 651 <TopLine Value="35"/> 652 652 <CursorPos X="24" Y="63"/> 653 <UsageCount Value=" 7"/>653 <UsageCount Value="6"/> 654 654 <DefaultSyntaxHighlighter Value="Delphi"/> 655 655 </Unit67> … … 659 659 <TopLine Value="61"/> 660 660 <CursorPos X="23" Y="61"/> 661 <UsageCount Value="1 4"/>661 <UsageCount Value="13"/> 662 662 <DefaultSyntaxHighlighter Value="Delphi"/> 663 663 </Unit68> … … 668 668 <TopLine Value="1"/> 669 669 <CursorPos X="1" Y="1"/> 670 <UsageCount Value=" 4"/>670 <UsageCount Value="3"/> 671 671 <DefaultSyntaxHighlighter Value="Delphi"/> 672 672 </Unit69> … … 677 677 <TopLine Value="1531"/> 678 678 <CursorPos X="1" Y="1545"/> 679 <UsageCount Value=" 8"/>679 <UsageCount Value="7"/> 680 680 <DefaultSyntaxHighlighter Value="Delphi"/> 681 681 </Unit70> … … 686 686 <TopLine Value="1"/> 687 687 <CursorPos X="1" Y="1"/> 688 <UsageCount Value=" 6"/>688 <UsageCount Value="5"/> 689 689 <DefaultSyntaxHighlighter Value="Delphi"/> 690 690 </Unit71> … … 695 695 <TopLine Value="1"/> 696 696 <CursorPos X="1" Y="1"/> 697 <UsageCount Value=" 5"/>697 <UsageCount Value="4"/> 698 698 <DefaultSyntaxHighlighter Value="Delphi"/> 699 699 </Unit72> … … 704 704 <TopLine Value="10"/> 705 705 <CursorPos X="54" Y="31"/> 706 <UsageCount Value=" 5"/>706 <UsageCount Value="4"/> 707 707 <DefaultSyntaxHighlighter Value="Delphi"/> 708 708 </Unit73> … … 713 713 <TopLine Value="1"/> 714 714 <CursorPos X="42" Y="14"/> 715 <UsageCount Value=" 7"/>715 <UsageCount Value="6"/> 716 716 <DefaultSyntaxHighlighter Value="Delphi"/> 717 717 </Unit74> … … 722 722 <TopLine Value="1"/> 723 723 <CursorPos X="1" Y="1"/> 724 <UsageCount Value=" 7"/>724 <UsageCount Value="6"/> 725 725 <DefaultSyntaxHighlighter Value="Delphi"/> 726 726 </Unit75> … … 732 732 <UnitName Value="UMainModule"/> 733 733 <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"/> 739 739 <Loaded Value="True"/> 740 <LoadedDesigner Value="True"/>741 740 <DefaultSyntaxHighlighter Value="Delphi"/> 742 741 </Unit76> … … 746 745 <TopLine Value="291"/> 747 746 <CursorPos X="1" Y="1"/> 748 <UsageCount Value=" 5"/>747 <UsageCount Value="4"/> 749 748 <DefaultSyntaxHighlighter Value="Delphi"/> 750 749 </Unit77> … … 755 754 <TopLine Value="55"/> 756 755 <CursorPos X="8" Y="80"/> 757 <UsageCount Value=" 5"/>756 <UsageCount Value="4"/> 758 757 <DefaultSyntaxHighlighter Value="Delphi"/> 759 758 </Unit78> … … 764 763 <TopLine Value="59"/> 765 764 <CursorPos X="10" Y="61"/> 766 <UsageCount Value=" 5"/>765 <UsageCount Value="4"/> 767 766 <DefaultSyntaxHighlighter Value="Delphi"/> 768 767 </Unit79> … … 773 772 <TopLine Value="10"/> 774 773 <CursorPos X="1" Y="35"/> 775 <UsageCount Value=" 6"/>774 <UsageCount Value="5"/> 776 775 <DefaultSyntaxHighlighter Value="Delphi"/> 777 776 </Unit80> … … 782 781 <TopLine Value="22"/> 783 782 <CursorPos X="1" Y="43"/> 784 <UsageCount Value=" 5"/>783 <UsageCount Value="4"/> 785 784 <DefaultSyntaxHighlighter Value="Delphi"/> 786 785 </Unit81> … … 791 790 <TopLine Value="2"/> 792 791 <CursorPos X="14" Y="19"/> 793 <UsageCount Value=" 6"/>792 <UsageCount Value="5"/> 794 793 <DefaultSyntaxHighlighter Value="Delphi"/> 795 794 </Unit82> … … 803 802 <TopLine Value="1"/> 804 803 <CursorPos X="14" Y="21"/> 805 <UsageCount Value="1 1"/>804 <UsageCount Value="10"/> 806 805 <DefaultSyntaxHighlighter Value="Delphi"/> 807 806 </Unit83> … … 809 808 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 810 809 <UnitName Value="USqlDatabase"/> 811 <EditorIndex Value="0"/>812 810 <WindowIndex Value="0"/> 813 811 <TopLine Value="15"/> 814 812 <CursorPos X="15" Y="70"/> 815 813 <UsageCount Value="26"/> 816 <Loaded Value="True"/>817 814 <DefaultSyntaxHighlighter Value="Delphi"/> 818 815 </Unit84> … … 825 822 <TopLine Value="48"/> 826 823 <CursorPos X="13" Y="342"/> 827 <UsageCount Value="2 5"/>824 <UsageCount Value="24"/> 828 825 <DefaultSyntaxHighlighter Value="Delphi"/> 829 826 </Unit85> … … 834 831 <TopLine Value="33"/> 835 832 <CursorPos X="14" Y="50"/> 836 <UsageCount Value=" 8"/>833 <UsageCount Value="7"/> 837 834 <DefaultSyntaxHighlighter Value="Delphi"/> 838 835 </Unit86> … … 843 840 <TopLine Value="179"/> 844 841 <CursorPos X="14" Y="199"/> 845 <UsageCount Value=" 7"/>842 <UsageCount Value="6"/> 846 843 <DefaultSyntaxHighlighter Value="Delphi"/> 847 844 </Unit87> … … 852 849 <TopLine Value="1"/> 853 850 <CursorPos X="79" Y="4"/> 854 <UsageCount Value=" 8"/>851 <UsageCount Value="7"/> 855 852 <DefaultSyntaxHighlighter Value="Delphi"/> 856 853 </Unit88> … … 861 858 <TopLine Value="184"/> 862 859 <CursorPos X="3" Y="199"/> 863 <UsageCount Value=" 8"/>860 <UsageCount Value="7"/> 864 861 <DefaultSyntaxHighlighter Value="Delphi"/> 865 862 </Unit89> … … 870 867 <TopLine Value="1289"/> 871 868 <CursorPos X="36" Y="1307"/> 872 <UsageCount Value=" 6"/>869 <UsageCount Value="5"/> 873 870 <DefaultSyntaxHighlighter Value="Delphi"/> 874 871 </Unit90> … … 879 876 <TopLine Value="34"/> 880 877 <CursorPos X="3" Y="51"/> 881 <UsageCount Value=" 5"/>878 <UsageCount Value="4"/> 882 879 <DefaultSyntaxHighlighter Value="Delphi"/> 883 880 </Unit91> … … 888 885 <TopLine Value="174"/> 889 886 <CursorPos X="14" Y="191"/> 890 <UsageCount Value=" 6"/>887 <UsageCount Value="5"/> 891 888 <DefaultSyntaxHighlighter Value="Delphi"/> 892 889 </Unit92> … … 896 893 <TopLine Value="538"/> 897 894 <CursorPos X="24" Y="555"/> 898 <UsageCount Value=" 6"/>895 <UsageCount Value="5"/> 899 896 <DefaultSyntaxHighlighter Value="Delphi"/> 900 897 </Unit93> … … 905 902 <TopLine Value="137"/> 906 903 <CursorPos X="100" Y="154"/> 907 <UsageCount Value="2 1"/>904 <UsageCount Value="20"/> 908 905 <DefaultSyntaxHighlighter Value="Delphi"/> 909 906 </Unit94> … … 914 911 <TopLine Value="49"/> 915 912 <CursorPos X="1" Y="53"/> 916 <UsageCount Value="1 5"/>913 <UsageCount Value="14"/> 917 914 <DefaultSyntaxHighlighter Value="Delphi"/> 918 915 </Unit95> … … 922 919 <TopLine Value="2101"/> 923 920 <CursorPos X="3" Y="2108"/> 924 <UsageCount Value=" 6"/>921 <UsageCount Value="5"/> 925 922 <DefaultSyntaxHighlighter Value="Delphi"/> 926 923 </Unit96> … … 930 927 <TopLine Value="180"/> 931 928 <CursorPos X="26" Y="197"/> 932 <UsageCount Value=" 6"/>929 <UsageCount Value="5"/> 933 930 <DefaultSyntaxHighlighter Value="Delphi"/> 934 931 </Unit97> … … 939 936 <TopLine Value="3089"/> 940 937 <CursorPos X="27" Y="3106"/> 941 <UsageCount Value=" 7"/>938 <UsageCount Value="6"/> 942 939 <DefaultSyntaxHighlighter Value="Delphi"/> 943 940 </Unit98> … … 951 948 <TopLine Value="17"/> 952 949 <CursorPos X="1" Y="47"/> 953 <UsageCount Value="8 0"/>950 <UsageCount Value="86"/> 954 951 <DefaultSyntaxHighlighter Value="Delphi"/> 955 952 </Unit99> … … 963 960 <TopLine Value="26"/> 964 961 <CursorPos X="84" Y="45"/> 965 <UsageCount Value=" 77"/>962 <UsageCount Value="83"/> 966 963 <DefaultSyntaxHighlighter Value="Delphi"/> 967 964 </Unit100> … … 975 972 <TopLine Value="66"/> 976 973 <CursorPos X="1" Y="97"/> 977 <UsageCount Value=" 77"/>974 <UsageCount Value="83"/> 978 975 <DefaultSyntaxHighlighter Value="Delphi"/> 979 976 </Unit101> … … 987 984 <TopLine Value="26"/> 988 985 <CursorPos X="1" Y="53"/> 989 <UsageCount Value=" 76"/>986 <UsageCount Value="82"/> 990 987 <DefaultSyntaxHighlighter Value="Delphi"/> 991 988 </Unit102> … … 999 996 <TopLine Value="24"/> 1000 997 <CursorPos X="1" Y="55"/> 1001 <UsageCount Value=" 76"/>998 <UsageCount Value="82"/> 1002 999 <DefaultSyntaxHighlighter Value="Delphi"/> 1003 1000 </Unit103> … … 1011 1008 <TopLine Value="24"/> 1012 1009 <CursorPos X="51" Y="42"/> 1013 <UsageCount Value=" 76"/>1010 <UsageCount Value="82"/> 1014 1011 <DefaultSyntaxHighlighter Value="Delphi"/> 1015 1012 </Unit104> … … 1023 1020 <TopLine Value="28"/> 1024 1021 <CursorPos X="23" Y="40"/> 1025 <UsageCount Value=" 76"/>1022 <UsageCount Value="82"/> 1026 1023 <DefaultSyntaxHighlighter Value="Delphi"/> 1027 1024 </Unit105> … … 1035 1032 <TopLine Value="36"/> 1036 1033 <CursorPos X="1" Y="67"/> 1037 <UsageCount Value=" 76"/>1034 <UsageCount Value="82"/> 1038 1035 <DefaultSyntaxHighlighter Value="Delphi"/> 1039 1036 </Unit106> … … 1047 1044 <TopLine Value="8"/> 1048 1045 <CursorPos X="1" Y="39"/> 1049 <UsageCount Value=" 76"/>1046 <UsageCount Value="82"/> 1050 1047 <DefaultSyntaxHighlighter Value="Delphi"/> 1051 1048 </Unit107> … … 1059 1056 <TopLine Value="26"/> 1060 1057 <CursorPos X="1" Y="47"/> 1061 <UsageCount Value=" 76"/>1058 <UsageCount Value="82"/> 1062 1059 <DefaultSyntaxHighlighter Value="Delphi"/> 1063 1060 </Unit108> … … 1071 1068 <TopLine Value="38"/> 1072 1069 <CursorPos X="1" Y="68"/> 1073 <UsageCount Value=" 76"/>1070 <UsageCount Value="82"/> 1074 1071 <DefaultSyntaxHighlighter Value="Delphi"/> 1075 1072 </Unit109> … … 1083 1080 <TopLine Value="15"/> 1084 1081 <CursorPos X="1" Y="46"/> 1085 <UsageCount Value=" 76"/>1082 <UsageCount Value="82"/> 1086 1083 <DefaultSyntaxHighlighter Value="Delphi"/> 1087 1084 </Unit110> … … 1095 1092 <TopLine Value="55"/> 1096 1093 <CursorPos X="1" Y="83"/> 1097 <UsageCount Value=" 76"/>1094 <UsageCount Value="82"/> 1098 1095 <DefaultSyntaxHighlighter Value="Delphi"/> 1099 1096 </Unit111> … … 1109 1106 <CursorPos X="50" Y="4"/> 1110 1107 </ExtraEditor1> 1111 <UsageCount Value=" 5"/>1108 <UsageCount Value="4"/> 1112 1109 <DefaultSyntaxHighlighter Value="LFM"/> 1113 1110 </Unit112> … … 1118 1115 <TopLine Value="344"/> 1119 1116 <CursorPos X="30" Y="361"/> 1120 <UsageCount Value=" 5"/>1117 <UsageCount Value="4"/> 1121 1118 <DefaultSyntaxHighlighter Value="Delphi"/> 1122 1119 </Unit113> … … 1127 1124 <TopLine Value="475"/> 1128 1125 <CursorPos X="34" Y="492"/> 1129 <UsageCount Value=" 5"/>1126 <UsageCount Value="4"/> 1130 1127 <DefaultSyntaxHighlighter Value="Delphi"/> 1131 1128 </Unit114> … … 1136 1133 <TopLine Value="23"/> 1137 1134 <CursorPos X="37" Y="23"/> 1138 <UsageCount Value=" 5"/>1135 <UsageCount Value="4"/> 1139 1136 <DefaultSyntaxHighlighter Value="Delphi"/> 1140 1137 </Unit115> 1141 1138 <Unit116> 1142 1139 <Filename Value="Common/URegistry.pas"/> 1143 <IsPartOfProject Value="True"/>1144 1140 <UnitName Value="URegistry"/> 1145 <EditorIndex Value="4"/>1146 1141 <WindowIndex Value="0"/> 1147 1142 <TopLine Value="4"/> 1148 1143 <CursorPos X="14" Y="17"/> 1149 <UsageCount Value="70"/> 1150 <Loaded Value="True"/> 1144 <UsageCount Value="76"/> 1151 1145 <DefaultSyntaxHighlighter Value="Delphi"/> 1152 1146 </Unit116> … … 1157 1151 <TopLine Value="72"/> 1158 1152 <CursorPos X="62" Y="94"/> 1159 <UsageCount Value=" 9"/>1153 <UsageCount Value="8"/> 1160 1154 <DefaultSyntaxHighlighter Value="Delphi"/> 1161 1155 </Unit117> … … 1165 1159 <TopLine Value="35"/> 1166 1160 <CursorPos X="22" Y="53"/> 1167 <UsageCount Value=" 9"/>1161 <UsageCount Value="8"/> 1168 1162 <DefaultSyntaxHighlighter Value="Delphi"/> 1169 1163 </Unit118> … … 1174 1168 <TopLine Value="27"/> 1175 1169 <CursorPos X="14" Y="74"/> 1176 <UsageCount Value=" 9"/>1170 <UsageCount Value="8"/> 1177 1171 <DefaultSyntaxHighlighter Value="Delphi"/> 1178 1172 </Unit119> … … 1182 1176 <TopLine Value="1"/> 1183 1177 <CursorPos X="3" Y="1"/> 1184 <UsageCount Value=" 6"/>1178 <UsageCount Value="5"/> 1185 1179 <DefaultSyntaxHighlighter Value="Delphi"/> 1186 1180 </Unit120> … … 1190 1184 <TopLine Value="153"/> 1191 1185 <CursorPos X="13" Y="170"/> 1192 <UsageCount Value=" 9"/>1186 <UsageCount Value="8"/> 1193 1187 <DefaultSyntaxHighlighter Value="Delphi"/> 1194 1188 </Unit121> … … 1198 1192 <TopLine Value="337"/> 1199 1193 <CursorPos X="3" Y="337"/> 1200 <UsageCount Value=" 9"/>1194 <UsageCount Value="8"/> 1201 1195 <DefaultSyntaxHighlighter Value="Delphi"/> 1202 1196 </Unit122> … … 1206 1200 <TopLine Value="11"/> 1207 1201 <CursorPos X="2" Y="28"/> 1208 <UsageCount Value=" 7"/>1202 <UsageCount Value="6"/> 1209 1203 <DefaultSyntaxHighlighter Value="Delphi"/> 1210 1204 </Unit123> … … 1212 1206 <Filename Value="ReadMe.txt"/> 1213 1207 <IsPartOfProject Value="True"/> 1214 <UsageCount Value="5 3"/>1208 <UsageCount Value="59"/> 1215 1209 <DefaultSyntaxHighlighter Value="None"/> 1216 1210 </Unit124> 1217 1211 <Unit125> 1218 1212 <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/> 1219 <EditorIndex Value="5"/>1220 1213 <WindowIndex Value="0"/> 1221 1214 <TopLine Value="1"/> 1222 1215 <CursorPos X="24" Y="4"/> 1223 1216 <UsageCount Value="10"/> 1224 <Loaded Value="True"/>1225 1217 </Unit125> 1226 1218 <Unit126> 1227 1219 <Filename Value="Components/TemplateGenerics/Generic/GenericList.inc"/> 1228 <EditorIndex Value="6"/>1229 1220 <WindowIndex Value="0"/> 1230 1221 <TopLine Value="31"/> 1231 1222 <CursorPos X="50" Y="44"/> 1232 1223 <UsageCount Value="10"/> 1233 <Loaded Value="True"/>1234 1224 </Unit126> 1235 1225 <Unit127> … … 1237 1227 <IsPartOfProject Value="True"/> 1238 1228 <UnitName Value="UApplicationInfo"/> 1239 <EditorIndex Value="7"/>1240 1229 <WindowIndex Value="0"/> 1241 1230 <TopLine Value="43"/> 1242 1231 <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"/> 1244 1243 <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> 1247 1275 </Units> 1248 <JumpHistory Count=" 7" HistoryIndex="6">1276 <JumpHistory Count="26" HistoryIndex="25"> 1249 1277 <Position1> 1250 <Filename Value=" Modules/UMainModule.pas"/>1251 <Caret Line="2 57" Column="1" TopLine="228"/>1278 <Filename Value="ZdechovNET.lpr"/> 1279 <Caret Line="20" Column="1" TopLine="9"/> 1252 1280 </Position1> 1253 1281 <Position2> 1254 <Filename Value=" Modules/UMainModule.pas"/>1255 <Caret Line="2 35" Column="22" TopLine="226"/>1282 <Filename Value="ZdechovNET.lpr"/> 1283 <Caret Line="21" Column="1" TopLine="9"/> 1256 1284 </Position2> 1257 1285 <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"/> 1260 1288 </Position3> 1261 1289 <Position4> 1262 <Filename Value=" Components/TemplateGenerics/Generic/GenericListString.inc"/>1263 <Caret Line="2 0" Column="21" TopLine="7"/>1290 <Filename Value="ZdechovNET.lpr"/> 1291 <Caret Line="23" Column="1" TopLine="9"/> 1264 1292 </Position4> 1265 1293 <Position5> 1266 <Filename Value=" Modules/UMainModule.pas"/>1267 <Caret Line="2 39" Column="42" TopLine="223"/>1294 <Filename Value="ZdechovNET.lpr"/> 1295 <Caret Line="24" Column="1" TopLine="9"/> 1268 1296 </Position5> 1269 1297 <Position6> 1270 <Filename Value=" Modules/UMainModule.pas"/>1271 <Caret Line="2 35" Column="23" TopLine="223"/>1298 <Filename Value="ZdechovNET.lpr"/> 1299 <Caret Line="25" Column="1" TopLine="9"/> 1272 1300 </Position6> 1273 1301 <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> 1274 1342 <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> 1277 1381 </JumpHistory> 1278 1382 </ProjectOptions> … … 1283 1387 </Target> 1284 1388 <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"/> 1286 1390 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> 1287 1391 </SearchPaths>
Note:
See TracChangeset
for help on using the changeset viewer.