Changeset 71
- Timestamp:
- Feb 11, 2012, 10:43:06 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UApplicationInfo.pas
r67 r71 53 53 Name := 'ZděchovNET'; 54 54 Identification := 1; 55 ReleaseDate := EncodeDate(201 1, 12, 25);55 ReleaseDate := EncodeDate(2012, 2, 11); 56 56 MajorVersion := 1; 57 57 MinorVersion := 0; -
trunk/Application/UWebObjects.pas
r69 r71 161 161 with THtmlCell(Row.Cells.AddNew(THtmlCell.Create)) do begin 162 162 Value := THtmlString.Create; 163 THtmlString(Value).Text := Caption + ': '; 163 THtmlString(Value).Text := Caption; 164 if Required then THtmlString(Value).Text := THtmlString(Value).Text + '*'; 165 THtmlString(Value).Text := THtmlString(Value).Text + ': '; 164 166 end; 165 167 with THtmlCell(Row.Cells.AddNew(THtmlCell.Create)) do begin -
trunk/Modules/UMainModule.pas
r69 r71 215 215 '<li><a href="http://wiki.zdechov.net/">Wiki</a></li>' + 216 216 '</ul><ul class="MenuItem2">'; //<li> </li>'; 217 if UserOnline.User = AnonymousUserId then begin 218 Text := Text + '</ul>' + 219 '<ul class="MenuItem2">' + 220 '<li>' + MakeLink('Přihlášení', NavigationLink('/uzivatel/prihlaseni/')) + '</li>' + 221 '<li>' + MakeLink('Registrace', NavigationLink('/uzivatel/registrace/')) + '</li>' + 222 '<li></li>'; 223 // $Output .= '<li>'.$this->System->HTML->MakeLink($this->System->Translate('UserRegistration'), $this->System->MakeLink('UserList', 'Register')).'</li>'; 224 end else begin 225 Text := Text + '</ul>' + 226 '<ul class="MenuItem2">' + 227 '<li>' + User.FullName + '</li>' + 228 '<li>' + MakeLink('Odhlášení', NavigationLink('/uzivatel/odhlaseni/')) + '</li>' + 229 '<li>' + MakeLink('Profil', NavigationLink('/uzivatel/profil/')) + '</li>'; 230 end; 217 if Assigned(Application.Pages.FindByName('uzivatel')) then begin 218 if UserOnline.User = AnonymousUserId then begin 219 Text := Text + '</ul>' + 220 '<ul class="MenuItem2">' + 221 '<li>' + MakeLink('Přihlášení', NavigationLink('/uzivatel/prihlaseni/')) + '</li>' + 222 '<li>' + MakeLink('Registrace', NavigationLink('/uzivatel/registrace/')) + '</li>' + 223 '<li></li>'; 224 // $Output .= '<li>'.$this->System->HTML->MakeLink($this->System->Translate('UserRegistration'), $this->System->MakeLink('UserList', 'Register')).'</li>'; 225 end else begin 226 Text := Text + '</ul>' + 227 '<ul class="MenuItem2">' + 228 '<li>' + User.FullName + '</li>' + 229 '<li>' + MakeLink('Odhlášení', NavigationLink('/uzivatel/odhlaseni/')) + '</li>' + 230 '<li>' + MakeLink('Profil', NavigationLink('/uzivatel/profil/')) + '</li>'; 231 end; 232 end else Text := Text + '</ul><ul class="MenuItem2"> '; 231 233 Text := Text + '</ul></div>'; 232 234 end; -
trunk/Pages/ULinksPage.pas
r56 r71 39 39 '<a href="http://www.zdechov.cz/">Obec Zděchov</a> - oficiální stránky obce<br/>' + 40 40 '<a href="http://zdechovskagrapa.sweb.cz/">Zděchovská grapa</a> - místní motokrosové závody<br/>' + 41 '<a href="http://www.snbzdechov.com/zavod.htm">Zděchovská třicítka</a> - tradiční běžkařský závod<br/>' + 42 '<a href="http://www.snbzdechov.com/">Snowpark Zděchov</a> - areál se sjezdovkou pro lyžaře i snowboardisty<br/>' + 41 '<a href="http://skiareal.zdechov.net/">Skiareál</a> - areál se sjezdovkou pro lyžaře i snowboardisty<br/>' + 43 42 '<a href="http://sdh.zdechov.net/">SDH Zděchov</a> - Sbor Dobrovolných Hasičů Zděchov<br/>' + 44 43 '<a href="http://fotbal.zdechov.net/">TJ Sokol Zděchov</a> - stránky věnované Zděchovskému fotbalovému týmu<br/>' + -
trunk/Pages/UUserControlPage.pas
r69 r71 170 170 171 171 procedure TUserControlPage.HandleProfile(HandlerData: THTTPHandlerData); 172 begin 173 172 var 173 Form: TQueryForm; 174 begin 175 with MainModule, HtmlDocument.Body do begin 176 Form := TQueryForm.Create; 177 with Form do begin 178 Title := 'Nastavení profilu'; 179 ClassId := 'WideTable'; 180 with AddNewGroup do begin 181 Title := ''; 182 with AddNewItem do begin 183 Caption := 'Jméno'; 184 Name := 'UserName'; 185 Hint := 'Zadejte vaše přihlašovací jméno'; 186 Required := True; 187 end; 188 with AddNewItem do begin 189 Caption := 'Heslo'; 190 Name := 'Password'; 191 Hint := 'Zadejte vaše heslo'; 192 Required := True; 193 ItemType := fitPassword; 194 end; 195 with AddNewItem do begin 196 Caption := 'Email'; 197 Name := 'Email'; 198 Hint := 'Zadejte vaši emailovou adresu'; 199 Required := True; 200 ItemType := fitText; 201 end; 202 with AddNewItem do begin 203 Caption := 'Celé jméno'; 204 Name := 'FullName'; 205 Hint := 'Zadejte vaše celé jméno'; 206 Required := False; 207 ItemType := fitText; 208 end; 209 end; 210 with AddNewAction do begin 211 Caption := 'Uložit'; 212 Action := 'Save'; 213 end; 214 end; 215 if HandlerData.Request.Post.IndexOfName('Save') <> -1 then 216 with HandlerData.Request do begin 217 Form.Load(HandlerData.Request.Post); 218 with THtmlString(SubItems.AddNew(THtmlString.Create)) do 219 Text := 'Profil uživatele: ' + TQueryFormGroup(Form.Groups[0]).Rows.FindByName('UserName').Value.Value + ' uložen'; 220 Form.Free; 221 end else SubItems.AddNew(Form); 222 end; 174 223 end; 175 224 -
trunk/Pages/UWebCamPage.pas
r67 r71 40 40 I: Integer; 41 41 Id: Integer; 42 LastFileDate: string; 42 43 ImageWidth, ImageHeight: string; 43 44 begin … … 115 116 116 117 if FileExists(WebCamImage) then begin 118 DateTimeToString(LastFileDate, 'hh:mm:ss d.m.yyyy', FileDateToDateTime(FileAge(WebCamImage))); 117 119 Text := Text + '<script language="JavaScript">' + #13#10 + 118 120 ' var ImageURL= "' + NavigationLink('/' + WebCamImage) + '";' + #13#10 + … … 129 131 ' // The above dummy cgi-parameter enforce a bypass of the browser image cache.' + #13#10 + 130 132 ' // Here we actually load the image' + #13#10 + 131 ' document.theImage.src = url;' + #13#10 + 133 ' document.theImage.src = document.theImageTemp.src;' + #13#10 + 134 ' document.theImageTemp.src = url;' + #13#10 + 132 135 '' + #13#10 + 133 136 ' // Reload the image every defined period' + #13#10 + … … 137 140 138 141 '<br /><div align="center">' + DbRows[0].Values['Name'] + '<br/>' + 139 '<img name="theImage" src="" width="' + ImageWidth + '" height="' + ImageHeight + '" alt="' + 140 DbRows[0].Values['Name'] + '"/><br/>Aktualizace: ' + 141 DateTimeToStr(FileDateToDateTime(FileAge(WebCamImage))) + ' Perioda: ' + 142 IntToStr(RefreshInterval) + ' sekund Typ: ' + DbRows[0].Values['DeviceType'] + '<br />' + 142 '<img name="theImageTemp" src="' + NavigationLink('/' + WebCamImage) + '" width="0" height="0" alt="Temp image"/>' + 143 '<img name="theImage" src="' + NavigationLink('/' + WebCamImage) + '" width="' + ImageWidth + '" height="' + ImageHeight + '" alt="' + 144 DbRows[0].Values['Name'] + '"/><br/>Aktualizace: <span id="lasttime">' + 145 LastFileDate + '</span>, Perioda: ' + 146 IntToStr(RefreshInterval) + ' sekund, Typ: ' + DbRows[0].Values['DeviceType'] + '<br />' + 143 147 '<br/>' + DbRows[0].Values['Description'] + '</div>'; 144 148 end else Text := Text + '<br />Obrázek nenalezen.<br /><br />'; -
trunk/ZdechovNET.lpi
r69 r71 60 60 </Item5> 61 61 </RequiredPackages> 62 <Units Count="1 50">62 <Units Count="146"> 63 63 <Unit0> 64 64 <Filename Value="ZdechovNET.lpr"/> … … 68 68 <WindowIndex Value="0"/> 69 69 <TopLine Value="11"/> 70 <CursorPos X=" 35" Y="20"/>70 <CursorPos X="5" Y="35"/> 71 71 <UsageCount Value="203"/> 72 72 <Loaded Value="True"/> … … 79 79 <TopLine Value="1"/> 80 80 <CursorPos X="1" Y="11"/> 81 <UsageCount Value="18 8"/>81 <UsageCount Value="186"/> 82 82 <DefaultSyntaxHighlighter Value="Delphi"/> 83 83 </Unit1> … … 88 88 <TopLine Value="291"/> 89 89 <CursorPos X="1" Y="311"/> 90 <UsageCount Value="7 8"/>90 <UsageCount Value="76"/> 91 91 <DefaultSyntaxHighlighter Value="Delphi"/> 92 92 </Unit2> 93 93 <Unit3> 94 94 <Filename Value="UXmlClasses.pas"/> 95 <UsageCount Value="7 8"/>95 <UsageCount Value="76"/> 96 96 <DefaultSyntaxHighlighter Value="Delphi"/> 97 97 </Unit3> … … 100 100 <IsPartOfProject Value="True"/> 101 101 <UnitName Value="UCore"/> 102 <EditorIndex Value="15"/> 102 103 <WindowIndex Value="0"/> 103 104 <TopLine Value="1"/> 104 105 <CursorPos X="55" Y="9"/> 105 106 <UsageCount Value="203"/> 107 <Loaded Value="True"/> 106 108 <DefaultSyntaxHighlighter Value="Delphi"/> 107 109 </Unit4> … … 112 114 <TopLine Value="217"/> 113 115 <CursorPos X="5" Y="236"/> 114 <UsageCount Value="7 8"/>116 <UsageCount Value="76"/> 115 117 <DefaultSyntaxHighlighter Value="Delphi"/> 116 118 </Unit5> … … 121 123 <TopLine Value="10"/> 122 124 <CursorPos X="27" Y="19"/> 123 <UsageCount Value="7 8"/>125 <UsageCount Value="76"/> 124 126 <DefaultSyntaxHighlighter Value="Delphi"/> 125 127 </Unit6> … … 129 131 <TopLine Value="17"/> 130 132 <CursorPos X="34" Y="30"/> 131 <UsageCount Value="7 8"/>133 <UsageCount Value="76"/> 132 134 <DefaultSyntaxHighlighter Value="Delphi"/> 133 135 </Unit7> … … 138 140 <TopLine Value="204"/> 139 141 <CursorPos X="25" Y="226"/> 140 <UsageCount Value="7 8"/>142 <UsageCount Value="76"/> 141 143 <DefaultSyntaxHighlighter Value="Delphi"/> 142 144 </Unit8> … … 147 149 <TopLine Value="102"/> 148 150 <CursorPos X="25" Y="107"/> 149 <UsageCount Value="7 8"/>151 <UsageCount Value="76"/> 150 152 <DefaultSyntaxHighlighter Value="Delphi"/> 151 153 </Unit9> … … 156 158 <TopLine Value="40"/> 157 159 <CursorPos X="9" Y="59"/> 158 <UsageCount Value="6 6"/>160 <UsageCount Value="64"/> 159 161 <DefaultSyntaxHighlighter Value="Delphi"/> 160 162 </Unit10> … … 164 166 <TopLine Value="91"/> 165 167 <CursorPos X="10" Y="110"/> 166 <UsageCount Value="4 8"/>168 <UsageCount Value="46"/> 167 169 <DefaultSyntaxHighlighter Value="Delphi"/> 168 170 </Unit11> … … 173 175 <TopLine Value="15"/> 174 176 <CursorPos X="38" Y="30"/> 175 <UsageCount Value="28 2"/>177 <UsageCount Value="280"/> 176 178 <DefaultSyntaxHighlighter Value="Delphi"/> 177 179 </Unit12> … … 198 200 <TopLine Value="608"/> 199 201 <CursorPos X="44" Y="627"/> 200 <UsageCount Value="4 7"/>202 <UsageCount Value="45"/> 201 203 <DefaultSyntaxHighlighter Value="Delphi"/> 202 204 </Unit15> … … 207 209 <TopLine Value="39"/> 208 210 <CursorPos X="25" Y="58"/> 209 <UsageCount Value="4 7"/>211 <UsageCount Value="45"/> 210 212 <DefaultSyntaxHighlighter Value="Delphi"/> 211 213 </Unit16> … … 216 218 <TopLine Value="1"/> 217 219 <CursorPos X="69" Y="19"/> 218 <UsageCount Value="4 3"/>220 <UsageCount Value="41"/> 219 221 <DefaultSyntaxHighlighter Value="Delphi"/> 220 222 </Unit17> … … 225 227 <TopLine Value="1"/> 226 228 <CursorPos X="52" Y="124"/> 227 <UsageCount Value=" 40"/>229 <UsageCount Value="38"/> 228 230 <DefaultSyntaxHighlighter Value="Delphi"/> 229 231 </Unit18> … … 233 235 <TopLine Value="677"/> 234 236 <CursorPos X="14" Y="691"/> 235 <UsageCount Value=" 50"/>237 <UsageCount Value="48"/> 236 238 <DefaultSyntaxHighlighter Value="Delphi"/> 237 239 </Unit19> … … 241 243 <TopLine Value="10"/> 242 244 <CursorPos X="22" Y="23"/> 243 <UsageCount Value="4 9"/>245 <UsageCount Value="47"/> 244 246 <DefaultSyntaxHighlighter Value="Delphi"/> 245 247 </Unit20> … … 250 252 <TopLine Value="1140"/> 251 253 <CursorPos X="26" Y="1143"/> 252 <UsageCount Value="4 9"/>254 <UsageCount Value="47"/> 253 255 <DefaultSyntaxHighlighter Value="Delphi"/> 254 256 </Unit21> … … 258 260 <TopLine Value="43"/> 259 261 <CursorPos X="5" Y="61"/> 260 <UsageCount Value="4 9"/>262 <UsageCount Value="47"/> 261 263 <DefaultSyntaxHighlighter Value="Delphi"/> 262 264 </Unit22> … … 266 268 <TopLine Value="50"/> 267 269 <CursorPos X="10" Y="63"/> 268 <UsageCount Value="4 9"/>270 <UsageCount Value="47"/> 269 271 <DefaultSyntaxHighlighter Value="Delphi"/> 270 272 </Unit23> … … 275 277 <TopLine Value="17"/> 276 278 <CursorPos X="32" Y="36"/> 277 <UsageCount Value="16 8"/>279 <UsageCount Value="166"/> 278 280 <DefaultSyntaxHighlighter Value="Delphi"/> 279 281 </Unit24> … … 284 286 <TopLine Value="25"/> 285 287 <CursorPos X="86" Y="94"/> 286 <UsageCount Value="16 8"/>288 <UsageCount Value="166"/> 287 289 <DefaultSyntaxHighlighter Value="Delphi"/> 288 290 </Unit25> … … 293 295 <TopLine Value="549"/> 294 296 <CursorPos X="19" Y="569"/> 295 <UsageCount Value="16 9"/>297 <UsageCount Value="167"/> 296 298 <DefaultSyntaxHighlighter Value="Delphi"/> 297 299 </Unit26> … … 302 304 <TopLine Value="1"/> 303 305 <CursorPos X="64" Y="14"/> 304 <UsageCount Value="16 9"/>306 <UsageCount Value="167"/> 305 307 <DefaultSyntaxHighlighter Value="Delphi"/> 306 308 </Unit27> … … 311 313 <TopLine Value="6"/> 312 314 <CursorPos X="5" Y="33"/> 313 <UsageCount Value="16 9"/>315 <UsageCount Value="167"/> 314 316 <DefaultSyntaxHighlighter Value="Delphi"/> 315 317 </Unit28> … … 319 321 <TopLine Value="61"/> 320 322 <CursorPos X="14" Y="78"/> 321 <UsageCount Value="4 8"/>323 <UsageCount Value="46"/> 322 324 <DefaultSyntaxHighlighter Value="Delphi"/> 323 325 </Unit29> … … 327 329 <TopLine Value="519"/> 328 330 <CursorPos X="23" Y="526"/> 329 <UsageCount Value="4 4"/>331 <UsageCount Value="42"/> 330 332 <DefaultSyntaxHighlighter Value="Delphi"/> 331 333 </Unit30> … … 336 338 <TopLine Value="11"/> 337 339 <CursorPos X="51" Y="27"/> 338 <UsageCount Value="3 50"/>340 <UsageCount Value="348"/> 339 341 <DefaultSyntaxHighlighter Value="Delphi"/> 340 342 </Unit31> … … 345 347 <TopLine Value="1"/> 346 348 <CursorPos X="16" Y="164"/> 347 <UsageCount Value="3 10"/>349 <UsageCount Value="308"/> 348 350 <DefaultSyntaxHighlighter Value="Delphi"/> 349 351 </Unit32> … … 354 356 <TopLine Value="81"/> 355 357 <CursorPos X="1" Y="96"/> 356 <UsageCount Value="30 9"/>358 <UsageCount Value="307"/> 357 359 <DefaultSyntaxHighlighter Value="Delphi"/> 358 360 </Unit33> … … 363 365 <TopLine Value="1"/> 364 366 <CursorPos X="18" Y="45"/> 365 <UsageCount Value="30 9"/>367 <UsageCount Value="307"/> 366 368 <DefaultSyntaxHighlighter Value="Delphi"/> 367 369 </Unit34> … … 372 374 <TopLine Value="142"/> 373 375 <CursorPos X="52" Y="165"/> 374 <UsageCount Value="30 9"/>376 <UsageCount Value="307"/> 375 377 <DefaultSyntaxHighlighter Value="Delphi"/> 376 378 </Unit35> … … 381 383 <TopLine Value="109"/> 382 384 <CursorPos X="36" Y="96"/> 383 <UsageCount Value="30 9"/>385 <UsageCount Value="307"/> 384 386 <DefaultSyntaxHighlighter Value="Delphi"/> 385 387 </Unit36> … … 390 392 <TopLine Value="44"/> 391 393 <CursorPos X="27" Y="61"/> 392 <UsageCount Value="30 9"/>394 <UsageCount Value="307"/> 393 395 <DefaultSyntaxHighlighter Value="Delphi"/> 394 396 </Unit37> … … 399 401 <TopLine Value="1"/> 400 402 <CursorPos X="50" Y="8"/> 401 <UsageCount Value="30 9"/>403 <UsageCount Value="307"/> 402 404 <DefaultSyntaxHighlighter Value="Delphi"/> 403 405 </Unit38> … … 408 410 <TopLine Value="1"/> 409 411 <CursorPos X="21" Y="1"/> 410 <UsageCount Value="30 8"/>412 <UsageCount Value="306"/> 411 413 <DefaultSyntaxHighlighter Value="Delphi"/> 412 414 </Unit39> … … 417 419 <TopLine Value="1"/> 418 420 <CursorPos X="53" Y="8"/> 419 <UsageCount Value="30 8"/>421 <UsageCount Value="306"/> 420 422 <DefaultSyntaxHighlighter Value="Delphi"/> 421 423 </Unit40> … … 426 428 <TopLine Value="1"/> 427 429 <CursorPos X="52" Y="92"/> 428 <UsageCount Value="30 8"/>430 <UsageCount Value="306"/> 429 431 <DefaultSyntaxHighlighter Value="Delphi"/> 430 432 </Unit41> … … 435 437 <TopLine Value="83"/> 436 438 <CursorPos X="47" Y="106"/> 437 <UsageCount Value="30 8"/>439 <UsageCount Value="306"/> 438 440 <DefaultSyntaxHighlighter Value="Delphi"/> 439 441 </Unit42> … … 444 446 <TopLine Value="1"/> 445 447 <CursorPos X="3" Y="687"/> 446 <UsageCount Value="30 8"/>448 <UsageCount Value="306"/> 447 449 <DefaultSyntaxHighlighter Value="Delphi"/> 448 450 </Unit43> … … 453 455 <TopLine Value="383"/> 454 456 <CursorPos X="15" Y="397"/> 455 <UsageCount Value="2 9"/>457 <UsageCount Value="27"/> 456 458 <DefaultSyntaxHighlighter Value="Delphi"/> 457 459 </Unit44> … … 462 464 <TopLine Value="1"/> 463 465 <CursorPos X="1" Y="15"/> 464 <UsageCount Value="32 7"/>466 <UsageCount Value="325"/> 465 467 <DefaultSyntaxHighlighter Value="Delphi"/> 466 468 </Unit45> … … 470 472 <TopLine Value="690"/> 471 473 <CursorPos X="3" Y="695"/> 472 <UsageCount Value="2 9"/>474 <UsageCount Value="27"/> 473 475 <DefaultSyntaxHighlighter Value="Delphi"/> 474 476 </Unit46> … … 479 481 <TopLine Value="1"/> 480 482 <CursorPos X="43" Y="79"/> 481 <UsageCount Value="30 5"/>483 <UsageCount Value="303"/> 482 484 <DefaultSyntaxHighlighter Value="Delphi"/> 483 485 </Unit47> … … 487 489 <TopLine Value="29"/> 488 490 <CursorPos X="15" Y="46"/> 489 <UsageCount Value="16 7"/>491 <UsageCount Value="165"/> 490 492 <DefaultSyntaxHighlighter Value="Delphi"/> 491 493 </Unit48> … … 496 498 <TopLine Value="1"/> 497 499 <CursorPos X="26" Y="18"/> 498 <UsageCount Value="6 9"/>500 <UsageCount Value="67"/> 499 501 <DefaultSyntaxHighlighter Value="Delphi"/> 500 502 </Unit49> … … 505 507 <TopLine Value="1"/> 506 508 <CursorPos X="15" Y="20"/> 507 <UsageCount Value="8 2"/>509 <UsageCount Value="80"/> 508 510 <DefaultSyntaxHighlighter Value="Delphi"/> 509 511 </Unit50> … … 514 516 <TopLine Value="1"/> 515 517 <CursorPos X="44" Y="17"/> 516 <UsageCount Value=" 81"/>518 <UsageCount Value="79"/> 517 519 <DefaultSyntaxHighlighter Value="Delphi"/> 518 520 </Unit51> … … 523 525 <TopLine Value="1"/> 524 526 <CursorPos X="48" Y="25"/> 525 <UsageCount Value=" 10"/>527 <UsageCount Value="8"/> 526 528 <DefaultSyntaxHighlighter Value="Delphi"/> 527 529 </Unit52> … … 532 534 <TopLine Value="1"/> 533 535 <CursorPos X="60" Y="11"/> 534 <UsageCount Value=" 9"/>536 <UsageCount Value="7"/> 535 537 <DefaultSyntaxHighlighter Value="Delphi"/> 536 538 </Unit53> … … 541 543 <TopLine Value="27"/> 542 544 <CursorPos X="5" Y="44"/> 543 <UsageCount Value="1 5"/>545 <UsageCount Value="13"/> 544 546 <DefaultSyntaxHighlighter Value="Delphi"/> 545 547 </Unit54> … … 550 552 <TopLine Value="159"/> 551 553 <CursorPos X="14" Y="176"/> 552 <UsageCount Value=" 11"/>554 <UsageCount Value="9"/> 553 555 <DefaultSyntaxHighlighter Value="Delphi"/> 554 556 </Unit55> … … 557 559 <IsPartOfProject Value="True"/> 558 560 <UnitName Value="UWebObjects"/> 559 <EditorIndex Value="1 2"/>560 <WindowIndex Value="0"/> 561 <TopLine Value="1 97"/>562 <CursorPos X=" 3" Y="201"/>563 <UsageCount Value="1 68"/>561 <EditorIndex Value="13"/> 562 <WindowIndex Value="0"/> 563 <TopLine Value="139"/> 564 <CursorPos X="51" Y="158"/> 565 <UsageCount Value="184"/> 564 566 <Loaded Value="True"/> 565 567 <DefaultSyntaxHighlighter Value="Delphi"/> … … 571 573 <TopLine Value="379"/> 572 574 <CursorPos X="3" Y="423"/> 573 <UsageCount Value=" 7"/>575 <UsageCount Value="5"/> 574 576 <DefaultSyntaxHighlighter Value="Delphi"/> 575 577 </Unit57> … … 580 582 <TopLine Value="19"/> 581 583 <CursorPos X="50" Y="76"/> 582 <UsageCount Value=" 9"/>584 <UsageCount Value="7"/> 583 585 <DefaultSyntaxHighlighter Value="Delphi"/> 584 586 </Unit58> … … 589 591 <TopLine Value="54"/> 590 592 <CursorPos X="26" Y="71"/> 591 <UsageCount Value=" 2"/>593 <UsageCount Value="10"/> 592 594 <DefaultSyntaxHighlighter Value="Delphi"/> 593 595 </Unit59> … … 597 599 <TopLine Value="1"/> 598 600 <CursorPos X="14" Y="3"/> 599 <UsageCount Value=" 10"/>601 <UsageCount Value="8"/> 600 602 <DefaultSyntaxHighlighter Value="Delphi"/> 601 603 </Unit60> … … 606 608 <TopLine Value="35"/> 607 609 <CursorPos X="24" Y="63"/> 608 <UsageCount Value=" 10"/>610 <UsageCount Value="8"/> 609 611 <DefaultSyntaxHighlighter Value="Delphi"/> 610 612 </Unit61> … … 614 616 <TopLine Value="61"/> 615 617 <CursorPos X="23" Y="61"/> 616 <UsageCount Value=" 7"/>618 <UsageCount Value="5"/> 617 619 <DefaultSyntaxHighlighter Value="Delphi"/> 618 620 </Unit62> 619 621 <Unit63> 620 <Filename Value="../../../lazarus/ library/synapse/source/lib/cryptlib.pas"/>621 <UnitName Value=" cryptlib"/>622 <WindowIndex Value="0"/> 623 <TopLine Value="1 531"/>624 <CursorPos X="1" Y="1 545"/>625 <UsageCount Value=" 1"/>622 <Filename Value="../../../lazarus/trunk/lcl/fileutil.pas"/> 623 <UnitName Value="FileUtil"/> 624 <WindowIndex Value="0"/> 625 <TopLine Value="1"/> 626 <CursorPos X="1" Y="1"/> 627 <UsageCount Value="7"/> 626 628 <DefaultSyntaxHighlighter Value="Delphi"/> 627 629 </Unit63> 628 630 <Unit64> 629 <Filename Value=" ../../../lazarus/trunk/lcl/fileutil.pas"/>630 <UnitName Value=" FileUtil"/>631 <Filename Value="/usr/lib/lazarus/0.9.30/ide/lazconf.pp"/> 632 <UnitName Value="LazConf"/> 631 633 <WindowIndex Value="0"/> 632 634 <TopLine Value="1"/> 633 635 <CursorPos X="1" Y="1"/> 634 <UsageCount Value=" 9"/>636 <UsageCount Value="6"/> 635 637 <DefaultSyntaxHighlighter Value="Delphi"/> 636 638 </Unit64> 637 639 <Unit65> 638 <Filename Value="/usr/lib/lazarus/0.9.30/ide/lazconf.pp"/> 639 <UnitName Value="LazConf"/> 640 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/UCDWindowList.pas"/> 641 <UnitName Value="UCDWindowList"/> 642 <WindowIndex Value="0"/> 643 <TopLine Value="10"/> 644 <CursorPos X="54" Y="31"/> 645 <UsageCount Value="6"/> 646 <DefaultSyntaxHighlighter Value="Delphi"/> 647 </Unit65> 648 <Unit66> 649 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/UCDClient.pas"/> 650 <UnitName Value="UCDClient"/> 651 <WindowIndex Value="0"/> 652 <TopLine Value="1"/> 653 <CursorPos X="42" Y="14"/> 654 <UsageCount Value="8"/> 655 <DefaultSyntaxHighlighter Value="Delphi"/> 656 </Unit66> 657 <Unit67> 658 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/CoolDocking.pas"/> 659 <UnitName Value="CoolDocking"/> 640 660 <WindowIndex Value="0"/> 641 661 <TopLine Value="1"/> … … 643 663 <UsageCount Value="8"/> 644 664 <DefaultSyntaxHighlighter Value="Delphi"/> 645 </Unit65>646 <Unit66>647 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/UCDWindowList.pas"/>648 <UnitName Value="UCDWindowList"/>649 <WindowIndex Value="0"/>650 <TopLine Value="10"/>651 <CursorPos X="54" Y="31"/>652 <UsageCount Value="8"/>653 <DefaultSyntaxHighlighter Value="Delphi"/>654 </Unit66>655 <Unit67>656 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/UCDClient.pas"/>657 <UnitName Value="UCDClient"/>658 <WindowIndex Value="0"/>659 <TopLine Value="1"/>660 <CursorPos X="42" Y="14"/>661 <UsageCount Value="10"/>662 <DefaultSyntaxHighlighter Value="Delphi"/>663 665 </Unit67> 664 666 <Unit68> 665 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/CoolDocking.pas"/>666 <UnitName Value="CoolDocking"/>667 <WindowIndex Value="0"/>668 <TopLine Value="1"/>669 <CursorPos X="1" Y="1"/>670 <UsageCount Value="10"/>671 <DefaultSyntaxHighlighter Value="Delphi"/>672 </Unit68>673 <Unit69>674 667 <Filename Value="Modules/UMainModule.pas"/> 675 668 <IsPartOfProject Value="True"/> … … 677 670 <ResourceBaseClass Value="DataModule"/> 678 671 <UnitName Value="UMainModule"/> 672 <IsVisibleTab Value="True"/> 679 673 <EditorIndex Value="1"/> 680 674 <WindowIndex Value="0"/> 681 <TopLine Value="2 22"/>682 <CursorPos X=" 56" Y="234"/>683 <UsageCount Value="1 50"/>675 <TopLine Value="201"/> 676 <CursorPos X="29" Y="232"/> 677 <UsageCount Value="166"/> 684 678 <Loaded Value="True"/> 685 679 <LoadedDesigner Value="True"/> 680 <DefaultSyntaxHighlighter Value="Delphi"/> 681 </Unit68> 682 <Unit69> 683 <Filename Value="../../../lazarus/lcl/interfaces/android/androidobject.inc"/> 684 <WindowIndex Value="0"/> 685 <TopLine Value="291"/> 686 <CursorPos X="1" Y="1"/> 687 <UsageCount Value="6"/> 686 688 <DefaultSyntaxHighlighter Value="Delphi"/> 687 689 </Unit69> 688 690 <Unit70> 689 <Filename Value="../../../lazarus/lcl/interfaces/android/androidobject.inc"/> 690 <WindowIndex Value="0"/> 691 <TopLine Value="291"/> 692 <CursorPos X="1" Y="1"/> 693 <UsageCount Value="8"/> 691 <Filename Value="../../../lazarus/packager/registration/registerfcl.pas"/> 692 <UnitName Value="RegisterFCL"/> 693 <WindowIndex Value="0"/> 694 <TopLine Value="55"/> 695 <CursorPos X="8" Y="80"/> 696 <UsageCount Value="6"/> 694 697 <DefaultSyntaxHighlighter Value="Delphi"/> 695 698 </Unit70> 696 699 <Unit71> 697 <Filename Value="../../../lazarus/packager/registration/ registerfcl.pas"/>698 <UnitName Value=" RegisterFCL"/>699 <WindowIndex Value="0"/> 700 <TopLine Value="5 5"/>701 <CursorPos X=" 8" Y="80"/>702 <UsageCount Value=" 8"/>700 <Filename Value="../../../lazarus/packager/registration/lazaruspackageintf.pas"/> 701 <UnitName Value="LazarusPackageIntf"/> 702 <WindowIndex Value="0"/> 703 <TopLine Value="59"/> 704 <CursorPos X="10" Y="61"/> 705 <UsageCount Value="6"/> 703 706 <DefaultSyntaxHighlighter Value="Delphi"/> 704 707 </Unit71> 705 708 <Unit72> 706 <Filename Value="../../ ../lazarus/packager/registration/lazaruspackageintf.pas"/>707 <UnitName Value=" LazarusPackageIntf"/>708 <WindowIndex Value="0"/> 709 <TopLine Value=" 59"/>710 <CursorPos X="1 0" Y="61"/>711 <UsageCount Value=" 8"/>709 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPServerTCP.pas"/> 710 <UnitName Value="UHTTPServerTCP"/> 711 <WindowIndex Value="0"/> 712 <TopLine Value="10"/> 713 <CursorPos X="1" Y="35"/> 714 <UsageCount Value="7"/> 712 715 <DefaultSyntaxHighlighter Value="Delphi"/> 713 716 </Unit72> 714 717 <Unit73> 715 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSe rverTCP.pas"/>716 <UnitName Value="UHTTPSe rverTCP"/>717 <WindowIndex Value="0"/> 718 <TopLine Value=" 10"/>719 <CursorPos X="1" Y=" 35"/>720 <UsageCount Value=" 9"/>718 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSessionFile.pas"/> 719 <UnitName Value="UHTTPSessionFile"/> 720 <WindowIndex Value="0"/> 721 <TopLine Value="22"/> 722 <CursorPos X="1" Y="43"/> 723 <UsageCount Value="6"/> 721 724 <DefaultSyntaxHighlighter Value="Delphi"/> 722 725 </Unit73> 723 726 <Unit74> 724 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSession File.pas"/>725 <UnitName Value="UHTTPSession File"/>726 <WindowIndex Value="0"/> 727 <TopLine Value="2 2"/>728 <CursorPos X="1 " Y="43"/>729 <UsageCount Value=" 8"/>727 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSessionMySQL.pas"/> 728 <UnitName Value="UHTTPSessionMySQL"/> 729 <WindowIndex Value="0"/> 730 <TopLine Value="2"/> 731 <CursorPos X="14" Y="19"/> 732 <UsageCount Value="7"/> 730 733 <DefaultSyntaxHighlighter Value="Delphi"/> 731 734 </Unit74> 732 735 <Unit75> 733 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UHTTPSessionMySQL.pas"/>734 <UnitName Value="UHTTPSessionMySQL"/>735 <WindowIndex Value="0"/>736 <TopLine Value="2"/>737 <CursorPos X="14" Y="19"/>738 <UsageCount Value="9"/>739 <DefaultSyntaxHighlighter Value="Delphi"/>740 </Unit75>741 <Unit76>742 736 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UWebPage.pas"/> 743 737 <ComponentName Value="WebPage"/> … … 748 742 <TopLine Value="1"/> 749 743 <CursorPos X="14" Y="21"/> 750 <UsageCount Value="4"/> 744 <UsageCount Value="2"/> 745 <DefaultSyntaxHighlighter Value="Delphi"/> 746 </Unit75> 747 <Unit76> 748 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/> 749 <UnitName Value="USqlDatabase"/> 750 <WindowIndex Value="0"/> 751 <TopLine Value="15"/> 752 <CursorPos X="15" Y="70"/> 753 <UsageCount Value="18"/> 751 754 <DefaultSyntaxHighlighter Value="Delphi"/> 752 755 </Unit76> 753 756 <Unit77> 754 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/Persistence/USqlDatabase.pas"/>755 <UnitName Value="USqlDatabase"/>756 <WindowIndex Value="0"/>757 <TopLine Value="15"/>758 <CursorPos X="15" Y="70"/>759 <UsageCount Value="20"/>760 <DefaultSyntaxHighlighter Value="Delphi"/>761 </Unit77>762 <Unit78>763 757 <Filename Value="Modules/UPagesModule.pas"/> 764 758 <ComponentName Value="PagesModule"/> … … 768 762 <TopLine Value="48"/> 769 763 <CursorPos X="13" Y="342"/> 770 <UsageCount Value="18"/> 764 <UsageCount Value="16"/> 765 <DefaultSyntaxHighlighter Value="Delphi"/> 766 </Unit77> 767 <Unit78> 768 <Filename Value="../../../lazarus/ideintf/projectintf.pas"/> 769 <UnitName Value="ProjectIntf"/> 770 <WindowIndex Value="0"/> 771 <TopLine Value="179"/> 772 <CursorPos X="14" Y="199"/> 773 <UsageCount Value="8"/> 771 774 <DefaultSyntaxHighlighter Value="Delphi"/> 772 775 </Unit78> 773 776 <Unit79> 774 <Filename Value="../../../lazarus/ components/fpweb/reglazwebextra.pp"/>775 <UnitName Value=" reglazwebextra"/>776 <WindowIndex Value="0"/> 777 <TopLine Value=" 33"/>778 <CursorPos X=" 14" Y="50"/>779 <UsageCount Value=" 1"/>777 <Filename Value="../../../lazarus/lcl/forms.pp"/> 778 <UnitName Value="Forms"/> 779 <WindowIndex Value="0"/> 780 <TopLine Value="1289"/> 781 <CursorPos X="36" Y="1307"/> 782 <UsageCount Value="7"/> 780 783 <DefaultSyntaxHighlighter Value="Delphi"/> 781 784 </Unit79> 782 785 <Unit80> 783 <Filename Value="../../../lazarus/ ideintf/projectintf.pas"/>784 <UnitName Value=" ProjectIntf"/>785 <WindowIndex Value="0"/> 786 <TopLine Value=" 179"/>787 <CursorPos X=" 14" Y="199"/>788 <UsageCount Value=" 10"/>786 <Filename Value="../../../lazarus/lcl/controls.pp"/> 787 <UnitName Value="Controls"/> 788 <WindowIndex Value="0"/> 789 <TopLine Value="34"/> 790 <CursorPos X="3" Y="51"/> 791 <UsageCount Value="6"/> 789 792 <DefaultSyntaxHighlighter Value="Delphi"/> 790 793 </Unit80> 791 794 <Unit81> 792 <Filename Value="../../ PascalClassLibrary/Network/CoolWeb/LazIDEReg.pas"/>793 <UnitName Value="LazIDE Reg"/>794 <WindowIndex Value="0"/> 795 <TopLine Value="1 "/>796 <CursorPos X=" 79" Y="4"/>797 <UsageCount Value=" 1"/>795 <Filename Value="../../../lazarus/ideintf/lazideintf.pas"/> 796 <UnitName Value="LazIDEIntf"/> 797 <WindowIndex Value="0"/> 798 <TopLine Value="174"/> 799 <CursorPos X="14" Y="191"/> 800 <UsageCount Value="7"/> 798 801 <DefaultSyntaxHighlighter Value="Delphi"/> 799 802 </Unit81> 800 803 <Unit82> 801 <Filename Value="../../../lazarus/components/fpcunit/ide/fpcunitlazideintf.pas"/> 802 <UnitName Value="FPCUnitLazIDEIntf"/> 803 <WindowIndex Value="0"/> 804 <TopLine Value="184"/> 805 <CursorPos X="3" Y="199"/> 806 <UsageCount Value="1"/> 804 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/objpas/classes/classesh.inc"/> 805 <WindowIndex Value="0"/> 806 <TopLine Value="538"/> 807 <CursorPos X="24" Y="555"/> 808 <UsageCount Value="7"/> 807 809 <DefaultSyntaxHighlighter Value="Delphi"/> 808 810 </Unit82> 809 811 <Unit83> 810 <Filename Value="../../ ../lazarus/lcl/forms.pp"/>811 <UnitName Value=" Forms"/>812 <WindowIndex Value="0"/> 813 <TopLine Value="1 289"/>814 <CursorPos X=" 36" Y="1307"/>815 <UsageCount Value=" 9"/>812 <Filename Value="../../PascalClassLibrary/Network/CoolWeb/WebServer/UWebApp.pas"/> 813 <UnitName Value="UWebApp"/> 814 <WindowIndex Value="0"/> 815 <TopLine Value="137"/> 816 <CursorPos X="100" Y="154"/> 817 <UsageCount Value="12"/> 816 818 <DefaultSyntaxHighlighter Value="Delphi"/> 817 819 </Unit83> 818 820 <Unit84> 819 <Filename Value=" ../../../lazarus/lcl/controls.pp"/>820 <UnitName Value="C ontrols"/>821 <WindowIndex Value="0"/> 822 <TopLine Value=" 34"/>823 <CursorPos X=" 3" Y="51"/>824 <UsageCount Value=" 8"/>821 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-base/src/custapp.pp"/> 822 <UnitName Value="CustApp"/> 823 <WindowIndex Value="0"/> 824 <TopLine Value="49"/> 825 <CursorPos X="1" Y="53"/> 826 <UsageCount Value="6"/> 825 827 <DefaultSyntaxHighlighter Value="Delphi"/> 826 828 </Unit84> 827 829 <Unit85> 828 <Filename Value="../../../lazarus/ideintf/lazideintf.pas"/> 829 <UnitName Value="LazIDEIntf"/> 830 <WindowIndex Value="0"/> 831 <TopLine Value="174"/> 832 <CursorPos X="14" Y="191"/> 833 <UsageCount Value="9"/> 830 <Filename Value="../../../lazarus/lcl/include/application.inc"/> 831 <WindowIndex Value="0"/> 832 <TopLine Value="2101"/> 833 <CursorPos X="3" Y="2108"/> 834 <UsageCount Value="7"/> 834 835 <DefaultSyntaxHighlighter Value="Delphi"/> 835 836 </Unit85> 836 837 <Unit86> 837 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/ objpas/classes/classesh.inc"/>838 <WindowIndex Value="0"/> 839 <TopLine Value=" 538"/>840 <CursorPos X="2 4" Y="555"/>841 <UsageCount Value=" 9"/>838 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/inc/objpash.inc"/> 839 <WindowIndex Value="0"/> 840 <TopLine Value="180"/> 841 <CursorPos X="26" Y="197"/> 842 <UsageCount Value="7"/> 842 843 <DefaultSyntaxHighlighter Value="Delphi"/> 843 844 </Unit86> 844 845 <Unit87> 845 <Filename Value="../../ PascalClassLibrary/Network/CoolWeb/WebServer/UWebApp.pas"/>846 <UnitName Value=" UWebApp"/>847 <WindowIndex Value="0"/> 848 <TopLine Value=" 137"/>849 <CursorPos X=" 100" Y="154"/>850 <UsageCount Value=" 14"/>846 <Filename Value="../../../lazarus/lcl/lresources.pp"/> 847 <UnitName Value="LResources"/> 848 <WindowIndex Value="0"/> 849 <TopLine Value="3089"/> 850 <CursorPos X="27" Y="3106"/> 851 <UsageCount Value="8"/> 851 852 <DefaultSyntaxHighlighter Value="Delphi"/> 852 853 </Unit87> 853 854 <Unit88> 854 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-base/src/custapp.pp"/>855 <UnitName Value="CustApp"/>856 <WindowIndex Value="0"/>857 <TopLine Value="49"/>858 <CursorPos X="1" Y="53"/>859 <UsageCount Value="8"/>860 <DefaultSyntaxHighlighter Value="Delphi"/>861 </Unit88>862 <Unit89>863 <Filename Value="../../../lazarus/lcl/include/application.inc"/>864 <WindowIndex Value="0"/>865 <TopLine Value="2101"/>866 <CursorPos X="3" Y="2108"/>867 <UsageCount Value="9"/>868 <DefaultSyntaxHighlighter Value="Delphi"/>869 </Unit89>870 <Unit90>871 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/inc/objpash.inc"/>872 <WindowIndex Value="0"/>873 <TopLine Value="180"/>874 <CursorPos X="26" Y="197"/>875 <UsageCount Value="9"/>876 <DefaultSyntaxHighlighter Value="Delphi"/>877 </Unit90>878 <Unit91>879 <Filename Value="../../../lazarus/lcl/lresources.pp"/>880 <UnitName Value="LResources"/>881 <WindowIndex Value="0"/>882 <TopLine Value="3089"/>883 <CursorPos X="27" Y="3106"/>884 <UsageCount Value="10"/>885 <DefaultSyntaxHighlighter Value="Delphi"/>886 </Unit91>887 <Unit92>888 855 <Filename Value="Pages/UContactPage.pas"/> 889 856 <IsPartOfProject Value="True"/> … … 894 861 <TopLine Value="17"/> 895 862 <CursorPos X="1" Y="47"/> 896 <UsageCount Value="1 41"/>897 <DefaultSyntaxHighlighter Value="Delphi"/> 898 </Unit 92>899 <Unit 93>863 <UsageCount Value="157"/> 864 <DefaultSyntaxHighlighter Value="Delphi"/> 865 </Unit88> 866 <Unit89> 900 867 <Filename Value="Pages/UInternetPage.pas"/> 901 868 <IsPartOfProject Value="True"/> … … 906 873 <TopLine Value="26"/> 907 874 <CursorPos X="84" Y="45"/> 908 <UsageCount Value="1 38"/>909 <DefaultSyntaxHighlighter Value="Delphi"/> 910 </Unit 93>911 <Unit9 4>875 <UsageCount Value="154"/> 876 <DefaultSyntaxHighlighter Value="Delphi"/> 877 </Unit89> 878 <Unit90> 912 879 <Filename Value="Pages/UHostingPage.pas"/> 913 880 <IsPartOfProject Value="True"/> … … 918 885 <TopLine Value="66"/> 919 886 <CursorPos X="1" Y="97"/> 920 <UsageCount Value="1 38"/>921 <DefaultSyntaxHighlighter Value="Delphi"/> 922 </Unit9 4>923 <Unit9 5>887 <UsageCount Value="154"/> 888 <DefaultSyntaxHighlighter Value="Delphi"/> 889 </Unit90> 890 <Unit91> 924 891 <Filename Value="Pages/UHistoryPage.pas"/> 925 892 <IsPartOfProject Value="True"/> … … 930 897 <TopLine Value="26"/> 931 898 <CursorPos X="40" Y="44"/> 932 <UsageCount Value="1 37"/>933 <DefaultSyntaxHighlighter Value="Delphi"/> 934 </Unit9 5>935 <Unit9 6>899 <UsageCount Value="153"/> 900 <DefaultSyntaxHighlighter Value="Delphi"/> 901 </Unit91> 902 <Unit92> 936 903 <Filename Value="Pages/UDocumentsPage.pas"/> 937 904 <IsPartOfProject Value="True"/> … … 942 909 <TopLine Value="24"/> 943 910 <CursorPos X="1" Y="55"/> 944 <UsageCount Value="1 37"/>945 <DefaultSyntaxHighlighter Value="Delphi"/> 946 </Unit9 6>947 <Unit9 7>911 <UsageCount Value="153"/> 912 <DefaultSyntaxHighlighter Value="Delphi"/> 913 </Unit92> 914 <Unit93> 948 915 <Filename Value="Pages/UVoIPPage.pas"/> 949 916 <IsPartOfProject Value="True"/> … … 954 921 <TopLine Value="24"/> 955 922 <CursorPos X="51" Y="42"/> 956 <UsageCount Value="1 37"/>957 <DefaultSyntaxHighlighter Value="Delphi"/> 958 </Unit9 7>959 <Unit9 8>923 <UsageCount Value="153"/> 924 <DefaultSyntaxHighlighter Value="Delphi"/> 925 </Unit93> 926 <Unit94> 960 927 <Filename Value="Pages/UPlansPage.pas"/> 961 928 <IsPartOfProject Value="True"/> … … 966 933 <TopLine Value="28"/> 967 934 <CursorPos X="23" Y="40"/> 968 <UsageCount Value="1 37"/>969 <DefaultSyntaxHighlighter Value="Delphi"/> 970 </Unit9 8>971 <Unit9 9>935 <UsageCount Value="153"/> 936 <DefaultSyntaxHighlighter Value="Delphi"/> 937 </Unit94> 938 <Unit95> 972 939 <Filename Value="Pages/ULinksPage.pas"/> 973 940 <IsPartOfProject Value="True"/> … … 975 942 <ResourceBaseClass Value="DataModule"/> 976 943 <UnitName Value="ULinksPage"/> 944 <EditorIndex Value="16"/> 977 945 <WindowIndex Value="0"/> 978 946 <TopLine Value="32"/> 979 <CursorPos X="38" Y="51"/> 980 <UsageCount Value="137"/> 981 <DefaultSyntaxHighlighter Value="Delphi"/> 982 </Unit99> 983 <Unit100> 947 <CursorPos X="42" Y="55"/> 948 <UsageCount Value="153"/> 949 <Loaded Value="True"/> 950 <DefaultSyntaxHighlighter Value="Delphi"/> 951 </Unit95> 952 <Unit96> 984 953 <Filename Value="Pages/UServerInfoPage.pas"/> 985 954 <IsPartOfProject Value="True"/> … … 990 959 <TopLine Value="8"/> 991 960 <CursorPos X="1" Y="39"/> 992 <UsageCount Value="1 37"/>993 <DefaultSyntaxHighlighter Value="Delphi"/> 994 </Unit 100>995 <Unit 101>961 <UsageCount Value="153"/> 962 <DefaultSyntaxHighlighter Value="Delphi"/> 963 </Unit96> 964 <Unit97> 996 965 <Filename Value="Pages/UWebCamPage.pas"/> 997 966 <IsPartOfProject Value="True"/> … … 999 968 <ResourceBaseClass Value="DataModule"/> 1000 969 <UnitName Value="UWebCamPage"/> 1001 <WindowIndex Value="0"/> 1002 <TopLine Value="26"/> 1003 <CursorPos X="1" Y="47"/> 1004 <UsageCount Value="137"/> 1005 <DefaultSyntaxHighlighter Value="Delphi"/> 1006 </Unit101> 1007 <Unit102> 970 <EditorIndex Value="14"/> 971 <WindowIndex Value="0"/> 972 <TopLine Value="122"/> 973 <CursorPos X="52" Y="144"/> 974 <UsageCount Value="153"/> 975 <Loaded Value="True"/> 976 <DefaultSyntaxHighlighter Value="Delphi"/> 977 </Unit97> 978 <Unit98> 1008 979 <Filename Value="Pages/UUserControlPage.pas"/> 1009 980 <IsPartOfProject Value="True"/> … … 1011 982 <ResourceBaseClass Value="DataModule"/> 1012 983 <UnitName Value="UUserControlPage"/> 1013 < IsVisibleTab Value="True"/>1014 < EditorIndex Value="8"/>1015 < WindowIndex Value="0"/>1016 < TopLine Value="140"/>1017 < CursorPos X="5" Y="165"/>1018 < UsageCount Value="137"/>1019 <Loaded Value="True"/>1020 <DefaultSyntaxHighlighter Value="Delphi"/> 1021 </Unit 102>1022 <Unit 103>984 <EditorIndex Value="9"/> 985 <WindowIndex Value="0"/> 986 <TopLine Value="167"/> 987 <CursorPos X="28" Y="214"/> 988 <UsageCount Value="153"/> 989 <Loaded Value="True"/> 990 <LoadedDesigner Value="True"/> 991 <DefaultSyntaxHighlighter Value="Delphi"/> 992 </Unit98> 993 <Unit99> 1023 994 <Filename Value="Pages/UNetworkPage.pas"/> 1024 995 <IsPartOfProject Value="True"/> … … 1029 1000 <TopLine Value="15"/> 1030 1001 <CursorPos X="1" Y="46"/> 1031 <UsageCount Value="1 37"/>1032 <DefaultSyntaxHighlighter Value="Delphi"/> 1033 </Unit 103>1034 <Unit10 4>1002 <UsageCount Value="153"/> 1003 <DefaultSyntaxHighlighter Value="Delphi"/> 1004 </Unit99> 1005 <Unit100> 1035 1006 <Filename Value="Pages/UAboutPage.pas"/> 1036 1007 <IsPartOfProject Value="True"/> … … 1041 1012 <TopLine Value="52"/> 1042 1013 <CursorPos X="59" Y="62"/> 1043 <UsageCount Value="1 37"/>1044 <DefaultSyntaxHighlighter Value="Delphi"/> 1045 </Unit10 4>1046 <Unit10 5>1014 <UsageCount Value="153"/> 1015 <DefaultSyntaxHighlighter Value="Delphi"/> 1016 </Unit100> 1017 <Unit101> 1047 1018 <Filename Value="Pages/UAboutPage.lfm"/> 1048 1019 <WindowIndex Value="0"/> … … 1055 1026 <CursorPos X="50" Y="4"/> 1056 1027 </ExtraEditor1> 1057 <UsageCount Value=" 8"/>1028 <UsageCount Value="6"/> 1058 1029 <DefaultSyntaxHighlighter Value="LFM"/> 1030 </Unit101> 1031 <Unit102> 1032 <Filename Value="../../PascalClassLibrary/Docking/CoolDocking/Managers/UCDManagerTabs.pas"/> 1033 <UnitName Value="UCDManagerTabs"/> 1034 <WindowIndex Value="0"/> 1035 <TopLine Value="344"/> 1036 <CursorPos X="30" Y="361"/> 1037 <UsageCount Value="6"/> 1038 <DefaultSyntaxHighlighter Value="Delphi"/> 1039 </Unit102> 1040 <Unit103> 1041 <Filename Value="../../../lazarus/lcl/comctrls.pp"/> 1042 <UnitName Value="ComCtrls"/> 1043 <WindowIndex Value="0"/> 1044 <TopLine Value="475"/> 1045 <CursorPos X="34" Y="492"/> 1046 <UsageCount Value="6"/> 1047 <DefaultSyntaxHighlighter Value="Delphi"/> 1048 </Unit103> 1049 <Unit104> 1050 <Filename Value="../../../lazarus/components/daemon/reglazdaemon.pp"/> 1051 <UnitName Value="RegLazDaemon"/> 1052 <WindowIndex Value="0"/> 1053 <TopLine Value="23"/> 1054 <CursorPos X="37" Y="23"/> 1055 <UsageCount Value="6"/> 1056 <DefaultSyntaxHighlighter Value="Delphi"/> 1057 </Unit104> 1058 <Unit105> 1059 <Filename Value="Common/URegistry.pas"/> 1060 <UnitName Value="URegistry"/> 1061 <WindowIndex Value="0"/> 1062 <TopLine Value="4"/> 1063 <CursorPos X="14" Y="17"/> 1064 <UsageCount Value="68"/> 1065 <DefaultSyntaxHighlighter Value="Delphi"/> 1059 1066 </Unit105> 1060 1067 <Unit106> 1061 <Filename Value=" ../../PascalClassLibrary/Docking/CoolDocking/Managers/UCDManagerTabs.pas"/>1062 <UnitName Value=" UCDManagerTabs"/>1063 <WindowIndex Value="0"/> 1064 <TopLine Value=" 344"/>1065 <CursorPos X=" 30" Y="361"/>1066 <UsageCount Value=" 8"/>1068 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-registry/src/registry.pp"/> 1069 <UnitName Value="registry"/> 1070 <WindowIndex Value="0"/> 1071 <TopLine Value="72"/> 1072 <CursorPos X="62" Y="94"/> 1073 <UsageCount Value="10"/> 1067 1074 <DefaultSyntaxHighlighter Value="Delphi"/> 1068 1075 </Unit106> 1069 1076 <Unit107> 1070 <Filename Value="../../../lazarus/lcl/comctrls.pp"/> 1071 <UnitName Value="ComCtrls"/> 1072 <WindowIndex Value="0"/> 1073 <TopLine Value="475"/> 1074 <CursorPos X="34" Y="492"/> 1075 <UsageCount Value="8"/> 1077 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-registry/src/xregreg.inc"/> 1078 <WindowIndex Value="0"/> 1079 <TopLine Value="35"/> 1080 <CursorPos X="22" Y="53"/> 1081 <UsageCount Value="10"/> 1076 1082 <DefaultSyntaxHighlighter Value="Delphi"/> 1077 1083 </Unit107> 1078 1084 <Unit108> 1079 <Filename Value=" ../../../lazarus/components/daemon/reglazdaemon.pp"/>1080 <UnitName Value=" RegLazDaemon"/>1081 <WindowIndex Value="0"/> 1082 <TopLine Value="2 3"/>1083 <CursorPos X=" 37" Y="23"/>1084 <UsageCount Value=" 8"/>1085 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-registry/src/xmlreg.pp"/> 1086 <UnitName Value="xmlreg"/> 1087 <WindowIndex Value="0"/> 1088 <TopLine Value="27"/> 1089 <CursorPos X="14" Y="74"/> 1090 <UsageCount Value="10"/> 1085 1091 <DefaultSyntaxHighlighter Value="Delphi"/> 1086 1092 </Unit108> 1087 1093 <Unit109> 1088 <Filename Value="Common/URegistry.pas"/> 1089 <UnitName Value="URegistry"/> 1090 <WindowIndex Value="0"/> 1091 <TopLine Value="4"/> 1092 <CursorPos X="14" Y="17"/> 1093 <UsageCount Value="70"/> 1094 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/objpas/classes/stringl.inc"/> 1095 <WindowIndex Value="0"/> 1096 <TopLine Value="1"/> 1097 <CursorPos X="3" Y="1"/> 1098 <UsageCount Value="7"/> 1094 1099 <DefaultSyntaxHighlighter Value="Delphi"/> 1095 1100 </Unit109> 1096 1101 <Unit110> 1097 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-registry/src/registry.pp"/> 1098 <UnitName Value="registry"/> 1099 <WindowIndex Value="0"/> 1100 <TopLine Value="72"/> 1101 <CursorPos X="62" Y="94"/> 1102 <UsageCount Value="2"/> 1102 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/objpas/sysutils/sysutilh.inc"/> 1103 <WindowIndex Value="0"/> 1104 <TopLine Value="153"/> 1105 <CursorPos X="13" Y="170"/> 1106 <UsageCount Value="10"/> 1103 1107 <DefaultSyntaxHighlighter Value="Delphi"/> 1104 1108 </Unit110> 1105 1109 <Unit111> 1106 <Filename Value="/usr/share/fpcsrc/2.4.2/ packages/fcl-registry/src/xregreg.inc"/>1107 <WindowIndex Value="0"/> 1108 <TopLine Value="3 5"/>1109 <CursorPos X=" 22" Y="53"/>1110 <UsageCount Value=" 2"/>1110 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/inc/systemh.inc"/> 1111 <WindowIndex Value="0"/> 1112 <TopLine Value="337"/> 1113 <CursorPos X="3" Y="337"/> 1114 <UsageCount Value="10"/> 1111 1115 <DefaultSyntaxHighlighter Value="Delphi"/> 1112 1116 </Unit111> 1113 1117 <Unit112> 1114 <Filename Value="/usr/share/fpcsrc/2.4.2/packages/fcl-registry/src/xmlreg.pp"/> 1115 <UnitName Value="xmlreg"/> 1116 <WindowIndex Value="0"/> 1117 <TopLine Value="27"/> 1118 <CursorPos X="14" Y="74"/> 1119 <UsageCount Value="2"/> 1118 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/unix/sysunixh.inc"/> 1119 <WindowIndex Value="0"/> 1120 <TopLine Value="11"/> 1121 <CursorPos X="2" Y="28"/> 1122 <UsageCount Value="8"/> 1120 1123 <DefaultSyntaxHighlighter Value="Delphi"/> 1121 1124 </Unit112> 1122 1125 <Unit113> 1123 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/objpas/classes/stringl.inc"/> 1124 <WindowIndex Value="0"/> 1125 <TopLine Value="1"/> 1126 <CursorPos X="3" Y="1"/> 1127 <UsageCount Value="9"/> 1128 <DefaultSyntaxHighlighter Value="Delphi"/> 1126 <Filename Value="ReadMe.txt"/> 1127 <IsPartOfProject Value="True"/> 1128 <WindowIndex Value="0"/> 1129 <TopLine Value="10"/> 1130 <CursorPos X="4" Y="26"/> 1131 <UsageCount Value="130"/> 1132 <DefaultSyntaxHighlighter Value="None"/> 1129 1133 </Unit113> 1130 1134 <Unit114> 1131 <Filename Value=" /usr/share/fpcsrc/2.4.2/rtl/objpas/sysutils/sysutilh.inc"/>1132 <WindowIndex Value="0"/> 1133 <TopLine Value="1 53"/>1134 <CursorPos X=" 13" Y="170"/>1135 <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/> 1136 <WindowIndex Value="0"/> 1137 <TopLine Value="1"/> 1138 <CursorPos X="24" Y="4"/> 1135 1139 <UsageCount Value="2"/> 1136 <DefaultSyntaxHighlighter Value="Delphi"/>1137 1140 </Unit114> 1138 1141 <Unit115> 1139 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/inc/systemh.inc"/> 1140 <WindowIndex Value="0"/> 1141 <TopLine Value="337"/> 1142 <CursorPos X="3" Y="337"/> 1143 <UsageCount Value="2"/> 1144 <DefaultSyntaxHighlighter Value="Delphi"/> 1142 <Filename Value="Components/TemplateGenerics/Generic/GenericList.inc"/> 1143 <EditorIndex Value="20"/> 1144 <WindowIndex Value="0"/> 1145 <TopLine Value="27"/> 1146 <CursorPos X="14" Y="45"/> 1147 <UsageCount Value="46"/> 1148 <Loaded Value="True"/> 1145 1149 </Unit115> 1146 1150 <Unit116> 1147 <Filename Value="/usr/share/fpcsrc/2.4.2/rtl/unix/sysunixh.inc"/> 1148 <WindowIndex Value="0"/> 1149 <TopLine Value="11"/> 1150 <CursorPos X="2" Y="28"/> 1151 <UsageCount Value="10"/> 1151 <Filename Value="Application/UApplicationInfo.pas"/> 1152 <IsPartOfProject Value="True"/> 1153 <UnitName Value="UApplicationInfo"/> 1154 <EditorIndex Value="2"/> 1155 <WindowIndex Value="0"/> 1156 <TopLine Value="37"/> 1157 <CursorPos X="33" Y="55"/> 1158 <UsageCount Value="98"/> 1159 <Loaded Value="True"/> 1152 1160 <DefaultSyntaxHighlighter Value="Delphi"/> 1153 1161 </Unit116> 1154 1162 <Unit117> 1155 <Filename Value="ReadMe.txt"/> 1156 <IsPartOfProject Value="True"/> 1157 <WindowIndex Value="0"/> 1158 <TopLine Value="10"/> 1159 <CursorPos X="4" Y="26"/> 1160 <UsageCount Value="114"/> 1161 <DefaultSyntaxHighlighter Value="None"/> 1163 <Filename Value="Components/CoolWeb/Persistence/USqlDatabase.pas"/> 1164 <UnitName Value="USqlDatabase"/> 1165 <EditorIndex Value="12"/> 1166 <WindowIndex Value="0"/> 1167 <TopLine Value="228"/> 1168 <CursorPos X="39" Y="250"/> 1169 <UsageCount Value="21"/> 1170 <Loaded Value="True"/> 1162 1171 </Unit117> 1163 1172 <Unit118> 1164 <Filename Value="Components/TemplateGenerics/Generic/GenericListString.inc"/> 1165 <WindowIndex Value="0"/> 1166 <TopLine Value="1"/> 1167 <CursorPos X="24" Y="4"/> 1168 <UsageCount Value="4"/> 1173 <Filename Value="Components/CoolWeb/WebServer/UWebApp.pas"/> 1174 <UnitName Value="UWebApp"/> 1175 <EditorIndex Value="4"/> 1176 <WindowIndex Value="0"/> 1177 <TopLine Value="19"/> 1178 <CursorPos X="5" Y="37"/> 1179 <UsageCount Value="49"/> 1180 <Loaded Value="True"/> 1169 1181 </Unit118> 1170 1182 <Unit119> 1171 <Filename Value="Components/TemplateGenerics/Generic/GenericList.inc"/> 1172 <EditorIndex Value="16"/> 1173 <WindowIndex Value="0"/> 1174 <TopLine Value="133"/> 1175 <CursorPos X="1" Y="147"/> 1176 <UsageCount Value="38"/> 1177 <Loaded Value="True"/> 1183 <Filename Value="Components/CoolWeb/Modules/UPageList.pas"/> 1184 <UnitName Value="UPageList"/> 1185 <WindowIndex Value="0"/> 1186 <TopLine Value="1"/> 1187 <CursorPos X="17" Y="12"/> 1188 <UsageCount Value="30"/> 1178 1189 </Unit119> 1179 1190 <Unit120> 1180 <Filename Value="Application/UApplicationInfo.pas"/> 1181 <IsPartOfProject Value="True"/> 1182 <UnitName Value="UApplicationInfo"/> 1183 <WindowIndex Value="0"/> 1184 <TopLine Value="32"/> 1185 <CursorPos X="37" Y="54"/> 1186 <UsageCount Value="82"/> 1191 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/> 1192 <UnitName Value="IniFiles"/> 1193 <WindowIndex Value="0"/> 1194 <TopLine Value="97"/> 1195 <CursorPos X="20" Y="115"/> 1196 <UsageCount Value="2"/> 1187 1197 <DefaultSyntaxHighlighter Value="Delphi"/> 1188 1198 </Unit120> 1189 1199 <Unit121> 1190 <Filename Value="Components/Co olWeb/Persistence/USqlDatabase.pas"/>1191 <UnitName Value="U SqlDatabase"/>1192 <EditorIndex Value=" 11"/>1193 <WindowIndex Value="0"/> 1194 <TopLine Value=" 228"/>1195 <CursorPos X=" 39" Y="250"/>1196 <UsageCount Value=" 13"/>1200 <Filename Value="Components/Common/UCommon.pas"/> 1201 <UnitName Value="UCommon"/> 1202 <EditorIndex Value="3"/> 1203 <WindowIndex Value="0"/> 1204 <TopLine Value="1"/> 1205 <CursorPos X="1" Y="1"/> 1206 <UsageCount Value="46"/> 1197 1207 <Loaded Value="True"/> 1198 1208 </Unit121> 1199 1209 <Unit122> 1200 <Filename Value="Components/CoolWeb/WebServer/UWebApp.pas"/> 1201 <UnitName Value="UWebApp"/> 1202 <EditorIndex Value="3"/> 1203 <WindowIndex Value="0"/> 1204 <TopLine Value="15"/> 1205 <CursorPos X="50" Y="45"/> 1206 <UsageCount Value="41"/> 1207 <Loaded Value="True"/> 1210 <Filename Value="../../../Lazarus/0.9.31_2.4.4/fpc/2.4.4/source/packages/fcl-base/src/custapp.pp"/> 1211 <UnitName Value="CustApp"/> 1212 <WindowIndex Value="0"/> 1213 <TopLine Value="266"/> 1214 <CursorPos X="3" Y="269"/> 1215 <UsageCount Value="25"/> 1208 1216 </Unit122> 1209 1217 <Unit123> 1210 <Filename Value="Components/CoolWeb/Modules/UPageList.pas"/> 1211 <UnitName Value="UPageList"/> 1212 <WindowIndex Value="0"/> 1213 <TopLine Value="1"/> 1214 <CursorPos X="17" Y="12"/> 1215 <UsageCount Value="32"/> 1218 <Filename Value="Components/CoolWeb/Common/UHtmlClasses.pas"/> 1219 <UnitName Value="UHtmlClasses"/> 1220 <EditorIndex Value="18"/> 1221 <WindowIndex Value="0"/> 1222 <TopLine Value="146"/> 1223 <CursorPos X="5" Y="164"/> 1224 <UsageCount Value="46"/> 1225 <Loaded Value="True"/> 1216 1226 </Unit123> 1217 1227 <Unit124> 1218 <Filename Value="../../../Lazarus/0.9.31_2.5.1/fpc/2.5.1/source/packages/fcl-base/src/inifiles.pp"/> 1219 <UnitName Value="IniFiles"/> 1220 <WindowIndex Value="0"/> 1221 <TopLine Value="97"/> 1222 <CursorPos X="20" Y="115"/> 1223 <UsageCount Value="4"/> 1224 <DefaultSyntaxHighlighter Value="Delphi"/> 1228 <Filename Value="Components/CoolWeb/Common/UMemoryStreamEx.pas"/> 1229 <UnitName Value="UMemoryStreamEx"/> 1230 <EditorIndex Value="19"/> 1231 <WindowIndex Value="0"/> 1232 <TopLine Value="248"/> 1233 <CursorPos X="3" Y="250"/> 1234 <UsageCount Value="46"/> 1235 <Loaded Value="True"/> 1225 1236 </Unit124> 1226 1237 <Unit125> 1227 <Filename Value="Components/Co mmon/UCommon.pas"/>1228 <UnitName Value="U Common"/>1229 <EditorIndex Value=" 2"/>1230 <WindowIndex Value="0"/> 1231 <TopLine Value=" 1"/>1232 <CursorPos X=" 1" Y="1"/>1233 <UsageCount Value=" 38"/>1238 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1239 <UnitName Value="UUser"/> 1240 <EditorIndex Value="10"/> 1241 <WindowIndex Value="0"/> 1242 <TopLine Value="80"/> 1243 <CursorPos X="51" Y="102"/> 1244 <UsageCount Value="41"/> 1234 1245 <Loaded Value="True"/> 1235 1246 </Unit125> 1236 1247 <Unit126> 1237 <Filename Value=" ../../../Lazarus/0.9.31_2.4.4/fpc/2.4.4/source/packages/fcl-base/src/custapp.pp"/>1238 <UnitName Value=" CustApp"/>1239 <WindowIndex Value="0"/> 1240 <TopLine Value="2 66"/>1241 <CursorPos X=" 3" Y="269"/>1248 <Filename Value="Components/CoolWeb/Common/UMIMEType.pas"/> 1249 <UnitName Value="UMIMEType"/> 1250 <WindowIndex Value="0"/> 1251 <TopLine Value="28"/> 1252 <CursorPos X="1" Y="1"/> 1242 1253 <UsageCount Value="27"/> 1243 1254 </Unit126> 1244 1255 <Unit127> 1245 <Filename Value="Components/CoolWeb/Common/U HtmlClasses.pas"/>1246 <UnitName Value="U HtmlClasses"/>1247 <EditorIndex Value="1 4"/>1248 <WindowIndex Value="0"/> 1249 <TopLine Value="1 46"/>1250 <CursorPos X=" 5" Y="164"/>1251 <UsageCount Value=" 38"/>1256 <Filename Value="Components/CoolWeb/Common/UXmlClasses.pas"/> 1257 <UnitName Value="UXmlClasses"/> 1258 <EditorIndex Value="17"/> 1259 <WindowIndex Value="0"/> 1260 <TopLine Value="12"/> 1261 <CursorPos X="11" Y="31"/> 1262 <UsageCount Value="46"/> 1252 1263 <Loaded Value="True"/> 1253 1264 </Unit127> 1254 1265 <Unit128> 1255 <Filename Value="Components/CoolWeb/Common/UMemoryStreamEx.pas"/> 1256 <UnitName Value="UMemoryStreamEx"/> 1257 <EditorIndex Value="15"/> 1258 <WindowIndex Value="0"/> 1259 <TopLine Value="248"/> 1260 <CursorPos X="3" Y="250"/> 1261 <UsageCount Value="38"/> 1262 <Loaded Value="True"/> 1266 <Filename Value="Components/TemplateGenerics/Generic/GenericListObject.inc"/> 1267 <WindowIndex Value="0"/> 1268 <TopLine Value="6"/> 1269 <CursorPos X="14" Y="19"/> 1270 <UsageCount Value="23"/> 1263 1271 </Unit128> 1264 1272 <Unit129> 1265 <Filename Value="Components/CoolWeb/ Modules/UUser.pas"/>1266 <UnitName Value="U User"/>1267 <EditorIndex Value=" 9"/>1268 <WindowIndex Value="0"/> 1269 <TopLine Value=" 158"/>1270 <CursorPos X=" 41" Y="185"/>1271 <UsageCount Value=" 33"/>1273 <Filename Value="Components/CoolWeb/WebServer/UHTTPServer.pas"/> 1274 <UnitName Value="UHTTPServer"/> 1275 <EditorIndex Value="11"/> 1276 <WindowIndex Value="0"/> 1277 <TopLine Value="415"/> 1278 <CursorPos X="29" Y="440"/> 1279 <UsageCount Value="27"/> 1272 1280 <Loaded Value="True"/> 1273 1281 </Unit129> 1274 1282 <Unit130> 1275 <Filename Value=" Components/CoolWeb/Common/UMIMEType.pas"/>1276 <UnitName Value=" UMIMEType"/>1277 <WindowIndex Value="0"/> 1278 <TopLine Value=" 28"/>1279 <CursorPos X=" 1" Y="1"/>1280 <UsageCount Value=" 29"/>1283 <Filename Value="/usr/share/fpcsrc/2.4.4/packages/fcl-base/src/custapp.pp"/> 1284 <UnitName Value="CustApp"/> 1285 <WindowIndex Value="0"/> 1286 <TopLine Value="98"/> 1287 <CursorPos X="3" Y="26"/> 1288 <UsageCount Value="8"/> 1281 1289 </Unit130> 1282 1290 <Unit131> 1283 <Filename Value="Components/CoolWeb/ Common/UXmlClasses.pas"/>1284 <UnitName Value="U XmlClasses"/>1285 <EditorIndex Value=" 13"/>1286 <WindowIndex Value="0"/> 1287 <TopLine Value="1 2"/>1288 <CursorPos X=" 11" Y="31"/>1289 <UsageCount Value=" 38"/>1291 <Filename Value="Components/CoolWeb/Network/UTCPServer.pas"/> 1292 <UnitName Value="UTCPServer"/> 1293 <EditorIndex Value="8"/> 1294 <WindowIndex Value="0"/> 1295 <TopLine Value="145"/> 1296 <CursorPos X="58" Y="171"/> 1297 <UsageCount Value="26"/> 1290 1298 <Loaded Value="True"/> 1291 1299 </Unit131> 1292 1300 <Unit132> 1293 <Filename Value="Components/TemplateGenerics/Generic/GenericListObject.inc"/> 1294 <WindowIndex Value="0"/> 1295 <TopLine Value="6"/> 1296 <CursorPos X="14" Y="19"/> 1297 <UsageCount Value="25"/> 1301 <Filename Value="Components/CoolWeb/WebServer/UHTTPServerCGI.pas"/> 1302 <UnitName Value="UHTTPServerCGI"/> 1303 <EditorIndex Value="6"/> 1304 <WindowIndex Value="0"/> 1305 <TopLine Value="1"/> 1306 <CursorPos X="1" Y="18"/> 1307 <UsageCount Value="26"/> 1308 <Loaded Value="True"/> 1298 1309 </Unit132> 1299 1310 <Unit133> 1300 <Filename Value="Components/CoolWeb/WebServer/UHTTPServer.pas"/> 1301 <UnitName Value="UHTTPServer"/> 1302 <EditorIndex Value="10"/> 1303 <WindowIndex Value="0"/> 1304 <TopLine Value="415"/> 1305 <CursorPos X="29" Y="440"/> 1306 <UsageCount Value="19"/> 1307 <Loaded Value="True"/> 1311 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/inc/systemh.inc"/> 1312 <WindowIndex Value="0"/> 1313 <TopLine Value="479"/> 1314 <CursorPos X="17" Y="497"/> 1315 <UsageCount Value="8"/> 1308 1316 </Unit133> 1309 1317 <Unit134> 1310 <Filename Value="/usr/share/fpcsrc/2.4.4/packages/fcl-base/src/ custapp.pp"/>1311 <UnitName Value=" CustApp"/>1312 <WindowIndex Value="0"/> 1313 <TopLine Value=" 98"/>1314 <CursorPos X="3" Y=" 26"/>1315 <UsageCount Value=" 10"/>1318 <Filename Value="/usr/share/fpcsrc/2.4.4/packages/fcl-base/src/iostream.pp"/> 1319 <UnitName Value="iostream"/> 1320 <WindowIndex Value="0"/> 1321 <TopLine Value="70"/> 1322 <CursorPos X="3" Y="91"/> 1323 <UsageCount Value="7"/> 1316 1324 </Unit134> 1317 1325 <Unit135> 1318 <Filename Value="Components/CoolWeb/Network/UTCPServer.pas"/> 1319 <UnitName Value="UTCPServer"/> 1320 <EditorIndex Value="7"/> 1321 <WindowIndex Value="0"/> 1322 <TopLine Value="145"/> 1323 <CursorPos X="58" Y="171"/> 1324 <UsageCount Value="18"/> 1325 <Loaded Value="True"/> 1326 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/classes/classesh.inc"/> 1327 <WindowIndex Value="0"/> 1328 <TopLine Value="825"/> 1329 <CursorPos X="3" Y="843"/> 1330 <UsageCount Value="10"/> 1326 1331 </Unit135> 1327 1332 <Unit136> 1328 <Filename Value="Components/CoolWeb/WebServer/UHTTPServerCGI.pas"/> 1329 <UnitName Value="UHTTPServerCGI"/> 1330 <EditorIndex Value="5"/> 1331 <WindowIndex Value="0"/> 1332 <TopLine Value="1"/> 1333 <CursorPos X="1" Y="18"/> 1334 <UsageCount Value="18"/> 1335 <Loaded Value="True"/> 1333 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/classes/streams.inc"/> 1334 <WindowIndex Value="0"/> 1335 <TopLine Value="59"/> 1336 <CursorPos X="8" Y="65"/> 1337 <UsageCount Value="10"/> 1336 1338 </Unit136> 1337 1339 <Unit137> 1338 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/ inc/systemh.inc"/>1339 <WindowIndex Value="0"/> 1340 <TopLine Value=" 479"/>1341 <CursorPos X="1 7" Y="497"/>1342 <UsageCount Value=" 10"/>1340 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/sysutils/filutilh.inc"/> 1341 <WindowIndex Value="0"/> 1342 <TopLine Value="59"/> 1343 <CursorPos X="10" Y="77"/> 1344 <UsageCount Value="7"/> 1343 1345 </Unit137> 1344 1346 <Unit138> 1345 <Filename Value="/usr/share/fpcsrc/2.4.4/ packages/fcl-base/src/iostream.pp"/>1346 <UnitName Value=" iostream"/>1347 <WindowIndex Value="0"/> 1348 <TopLine Value=" 70"/>1349 <CursorPos X=" 3" Y="91"/>1350 <UsageCount Value=" 9"/>1347 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/unix/sysutils.pp"/> 1348 <UnitName Value="sysutils"/> 1349 <WindowIndex Value="0"/> 1350 <TopLine Value="454"/> 1351 <CursorPos X="74" Y="462"/> 1352 <UsageCount Value="7"/> 1351 1353 </Unit138> 1352 1354 <Unit139> 1353 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/classes/classesh.inc"/> 1354 <WindowIndex Value="0"/> 1355 <TopLine Value="825"/> 1356 <CursorPos X="3" Y="843"/> 1357 <UsageCount Value="12"/> 1355 <Filename Value="Components/CoolWeb/WebServer/UHTTPServerTCP.pas"/> 1356 <UnitName Value="UHTTPServerTCP"/> 1357 <EditorIndex Value="7"/> 1358 <WindowIndex Value="0"/> 1359 <TopLine Value="70"/> 1360 <CursorPos X="27" Y="102"/> 1361 <UsageCount Value="25"/> 1362 <Loaded Value="True"/> 1358 1363 </Unit139> 1359 1364 <Unit140> 1360 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/classes/streams.inc"/> 1361 <WindowIndex Value="0"/> 1362 <TopLine Value="59"/> 1363 <CursorPos X="8" Y="65"/> 1364 <UsageCount Value="12"/> 1365 <Filename Value="Pages/UUserControlPage.lfm"/> 1366 <WindowIndex Value="0"/> 1367 <TopLine Value="1"/> 1368 <CursorPos X="1" Y="1"/> 1369 <UsageCount Value="7"/> 1370 <DefaultSyntaxHighlighter Value="LFM"/> 1365 1371 </Unit140> 1366 1372 <Unit141> 1367 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/objpas/sysutils/filutilh.inc"/> 1368 <WindowIndex Value="0"/> 1369 <TopLine Value="59"/> 1370 <CursorPos X="10" Y="77"/> 1371 <UsageCount Value="9"/> 1373 <Filename Value="Components/Common/UPool.pas"/> 1374 <UnitName Value="UPool"/> 1375 <WindowIndex Value="0"/> 1376 <TopLine Value="123"/> 1377 <CursorPos X="3" Y="125"/> 1378 <UsageCount Value="8"/> 1372 1379 </Unit141> 1373 1380 <Unit142> 1374 <Filename Value=" /usr/share/fpcsrc/2.4.4/rtl/unix/sysutils.pp"/>1375 <UnitName Value=" sysutils"/>1376 <WindowIndex Value="0"/> 1377 <TopLine Value=" 454"/>1378 <CursorPos X=" 74" Y="462"/>1381 <Filename Value="Components/Common/UResetableThread.pas"/> 1382 <UnitName Value="UResetableThread"/> 1383 <WindowIndex Value="0"/> 1384 <TopLine Value="38"/> 1385 <CursorPos X="48" Y="65"/> 1379 1386 <UsageCount Value="9"/> 1380 1387 </Unit142> 1381 1388 <Unit143> 1382 <Filename Value="Components/CoolWeb/WebServer/UHTTPServerTCP.pas"/> 1383 <UnitName Value="UHTTPServerTCP"/> 1384 <EditorIndex Value="6"/> 1385 <WindowIndex Value="0"/> 1386 <TopLine Value="70"/> 1387 <CursorPos X="27" Y="102"/> 1388 <UsageCount Value="17"/> 1389 <Loaded Value="True"/> 1389 <Filename Value="Components/synapse/blcksock.pas"/> 1390 <UnitName Value="blcksock"/> 1391 <WindowIndex Value="0"/> 1392 <TopLine Value="379"/> 1393 <CursorPos X="15" Y="397"/> 1394 <UsageCount Value="8"/> 1390 1395 </Unit143> 1391 1396 <Unit144> 1392 <Filename Value="Pages/UUserControlPage.lfm"/> 1393 <WindowIndex Value="0"/> 1394 <TopLine Value="1"/> 1395 <CursorPos X="1" Y="1"/> 1396 <UsageCount Value="9"/> 1397 <DefaultSyntaxHighlighter Value="LFM"/> 1397 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/unix/sysunixh.inc"/> 1398 <WindowIndex Value="0"/> 1399 <TopLine Value="10"/> 1400 <CursorPos X="2" Y="28"/> 1401 <UsageCount Value="8"/> 1398 1402 </Unit144> 1399 1403 <Unit145> 1400 <Filename Value="Components/Common/UPool.pas"/>1401 <UnitName Value="UPool"/>1402 <WindowIndex Value="0"/>1403 <TopLine Value="123"/>1404 <CursorPos X="3" Y="125"/>1405 <UsageCount Value="10"/>1406 </Unit145>1407 <Unit146>1408 <Filename Value="Components/Common/UResetableThread.pas"/>1409 <UnitName Value="UResetableThread"/>1410 <WindowIndex Value="0"/>1411 <TopLine Value="38"/>1412 <CursorPos X="48" Y="65"/>1413 <UsageCount Value="11"/>1414 </Unit146>1415 <Unit147>1416 <Filename Value="Components/synapse/blcksock.pas"/>1417 <UnitName Value="blcksock"/>1418 <WindowIndex Value="0"/>1419 <TopLine Value="379"/>1420 <CursorPos X="15" Y="397"/>1421 <UsageCount Value="10"/>1422 </Unit147>1423 <Unit148>1424 <Filename Value="/usr/share/fpcsrc/2.4.4/rtl/unix/sysunixh.inc"/>1425 <WindowIndex Value="0"/>1426 <TopLine Value="10"/>1427 <CursorPos X="2" Y="28"/>1428 <UsageCount Value="10"/>1429 </Unit148>1430 <Unit149>1431 1404 <Filename Value="Components/CoolWeb/WebServer/UWebPage.pas"/> 1432 1405 <UnitName Value="UWebPage"/> 1433 <EditorIndex Value=" 4"/>1406 <EditorIndex Value="5"/> 1434 1407 <WindowIndex Value="0"/> 1435 1408 <TopLine Value="1"/> 1436 1409 <CursorPos X="31" Y="11"/> 1437 <UsageCount Value="1 1"/>1438 <Loaded Value="True"/> 1439 </Unit14 9>1410 <UsageCount Value="19"/> 1411 <Loaded Value="True"/> 1412 </Unit145> 1440 1413 </Units> 1441 <JumpHistory Count=" 30" HistoryIndex="29">1414 <JumpHistory Count="29" HistoryIndex="28"> 1442 1415 <Position1> 1443 <Filename Value=" Pages/UUserControlPage.pas"/>1444 <Caret Line=" 97" Column="29" TopLine="68"/>1416 <Filename Value="Modules/UMainModule.pas"/> 1417 <Caret Line="27" Column="64" TopLine="13"/> 1445 1418 </Position1> 1446 1419 <Position2> 1447 <Filename Value=" Pages/UUserControlPage.pas"/>1448 <Caret Line=" 146" Column="16" TopLine="119"/>1420 <Filename Value="Modules/UMainModule.pas"/> 1421 <Caret Line="71" Column="1" TopLine="66"/> 1449 1422 </Position2> 1450 1423 <Position3> 1451 <Filename Value=" Pages/UUserControlPage.pas"/>1452 <Caret Line="1 54" Column="47" TopLine="122"/>1424 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1425 <Caret Line="125" Column="81" TopLine="116"/> 1453 1426 </Position3> 1454 1427 <Position4> 1455 <Filename Value=" Pages/UUserControlPage.pas"/>1456 <Caret Line=" 151" Column="29" TopLine="127"/>1428 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1429 <Caret Line="45" Column="52" TopLine="26"/> 1457 1430 </Position4> 1458 1431 <Position5> 1459 1432 <Filename Value="Pages/UUserControlPage.pas"/> 1460 <Caret Line="15 2" Column="25" TopLine="127"/>1433 <Caret Line="150" Column="98" TopLine="125"/> 1461 1434 </Position5> 1462 1435 <Position6> 1463 1436 <Filename Value="Pages/UUserControlPage.pas"/> 1464 <Caret Line=" 93" Column="28" TopLine="85"/>1437 <Caret Line="156" Column="43" TopLine="125"/> 1465 1438 </Position6> 1466 1439 <Position7> 1467 <Filename Value=" Pages/UUserControlPage.pas"/>1468 <Caret Line=" 105" Column="19" TopLine="94"/>1440 <Filename Value="Modules/UMainModule.pas"/> 1441 <Caret Line="227" Column="1" TopLine="215"/> 1469 1442 </Position7> 1470 1443 <Position8> 1471 1444 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1472 <Caret Line=" 78" Column="15" TopLine="54"/>1445 <Caret Line="30" Column="20" TopLine="18"/> 1473 1446 </Position8> 1474 1447 <Position9> 1475 1448 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1476 <Caret Line=" 98" Column="33" TopLine="86"/>1449 <Caret Line="176" Column="88" TopLine="152"/> 1477 1450 </Position9> 1478 1451 <Position10> 1479 <Filename Value="Components/CoolWeb/ WebServer/UWebApp.pas"/>1480 <Caret Line="1 " Column="26" TopLine="1"/>1452 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1453 <Caret Line="154" Column="65" TopLine="136"/> 1481 1454 </Position10> 1482 1455 <Position11> 1483 <Filename Value="Components/CoolWeb/ WebServer/UWebApp.pas"/>1484 <Caret Line=" 29" Column="18" TopLine="1"/>1456 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1457 <Caret Line="169" Column="65" TopLine="151"/> 1485 1458 </Position11> 1486 1459 <Position12> 1487 <Filename Value="Components/CoolWeb/ WebServer/UWebApp.pas"/>1488 <Caret Line=" 44" Column="79" TopLine="15"/>1460 <Filename Value="Components/CoolWeb/Modules/UUser.pas"/> 1461 <Caret Line="183" Column="39" TopLine="158"/> 1489 1462 </Position12> 1490 1463 <Position13> 1491 <Filename Value=" Components/CoolWeb/WebServer/UWebApp.pas"/>1492 <Caret Line=" 45" Column="50" TopLine="15"/>1464 <Filename Value="Modules/UMainModule.pas"/> 1465 <Caret Line="240" Column="30" TopLine="215"/> 1493 1466 </Position13> 1494 1467 <Position14> 1495 <Filename Value=" Modules/UMainModule.pas"/>1496 <Caret Line="2 7" Column="64" TopLine="13"/>1468 <Filename Value="Pages/UUserControlPage.pas"/> 1469 <Caret Line="21" Column="28" TopLine="1"/> 1497 1470 </Position14> 1498 1471 <Position15> 1499 <Filename Value=" Modules/UMainModule.pas"/>1500 <Caret Line=" 71" Column="1" TopLine="66"/>1472 <Filename Value="Pages/UUserControlPage.pas"/> 1473 <Caret Line="126" Column="40" TopLine="105"/> 1501 1474 </Position15> 1502 1475 <Position16> 1503 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1504 <Caret Line=" 125" Column="81" TopLine="116"/>1476 <Filename Value="Pages/UUserControlPage.pas"/> 1477 <Caret Line="50" Column="1" TopLine="32"/> 1505 1478 </Position16> 1506 1479 <Position17> 1507 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1508 <Caret Line=" 45" Column="52" TopLine="26"/>1480 <Filename Value="Pages/UUserControlPage.pas"/> 1481 <Caret Line="51" Column="68" TopLine="34"/> 1509 1482 </Position17> 1510 1483 <Position18> 1511 1484 <Filename Value="Pages/UUserControlPage.pas"/> 1512 <Caret Line=" 150" Column="98" TopLine="125"/>1485 <Caret Line="93" Column="46" TopLine="65"/> 1513 1486 </Position18> 1514 1487 <Position19> 1515 1488 <Filename Value="Pages/UUserControlPage.pas"/> 1516 <Caret Line=" 156" Column="43" TopLine="125"/>1489 <Caret Line="96" Column="1" TopLine="76"/> 1517 1490 </Position19> 1518 1491 <Position20> 1519 <Filename Value=" Modules/UMainModule.pas"/>1520 <Caret Line=" 227" Column="1" TopLine="215"/>1492 <Filename Value="Pages/UUserControlPage.pas"/> 1493 <Caret Line="199" Column="26" TopLine="178"/> 1521 1494 </Position20> 1522 1495 <Position21> 1523 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1524 <Caret Line=" 30" Column="20" TopLine="18"/>1496 <Filename Value="Pages/UUserControlPage.pas"/> 1497 <Caret Line="227" Column="43" TopLine="192"/> 1525 1498 </Position21> 1526 1499 <Position22> 1527 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1528 <Caret Line=" 176" Column="88" TopLine="152"/>1500 <Filename Value="Pages/UUserControlPage.pas"/> 1501 <Caret Line="200" Column="59" TopLine="183"/> 1529 1502 </Position22> 1530 1503 <Position23> 1531 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1532 <Caret Line=" 154" Column="65" TopLine="136"/>1504 <Filename Value="Pages/UUserControlPage.pas"/> 1505 <Caret Line="214" Column="28" TopLine="167"/> 1533 1506 </Position23> 1534 1507 <Position24> 1535 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1536 <Caret Line="1 69" Column="65" TopLine="151"/>1508 <Filename Value="Pages/UWebCamPage.pas"/> 1509 <Caret Line="133" Column="45" TopLine="119"/> 1537 1510 </Position24> 1538 1511 <Position25> 1539 <Filename Value=" Components/CoolWeb/Modules/UUser.pas"/>1540 <Caret Line="1 83" Column="39" TopLine="158"/>1512 <Filename Value="Pages/UWebCamPage.pas"/> 1513 <Caret Line="118" Column="41" TopLine="105"/> 1541 1514 </Position25> 1542 1515 <Position26> 1543 1516 <Filename Value="Modules/UMainModule.pas"/> 1544 <Caret Line="2 40" Column="30" TopLine="215"/>1517 <Caret Line="232" Column="9" TopLine="201"/> 1545 1518 </Position26> 1546 1519 <Position27> 1547 <Filename Value=" Pages/UUserControlPage.pas"/>1548 <Caret Line="21 " Column="28" TopLine="1"/>1520 <Filename Value="Modules/UMainModule.pas"/> 1521 <Caret Line="217" Column="29" TopLine="199"/> 1549 1522 </Position27> 1550 1523 <Position28> 1551 <Filename Value=" Pages/UUserControlPage.pas"/>1552 <Caret Line=" 126" Column="40" TopLine="105"/>1524 <Filename Value="Modules/UMainModule.pas"/> 1525 <Caret Line="9" Column="69" TopLine="1"/> 1553 1526 </Position28> 1554 1527 <Position29> 1555 <Filename Value=" Pages/UUserControlPage.pas"/>1556 <Caret Line=" 50" Column="1" TopLine="32"/>1528 <Filename Value="Modules/UMainModule.pas"/> 1529 <Caret Line="217" Column="55" TopLine="188"/> 1557 1530 </Position29> 1558 <Position30>1559 <Filename Value="Pages/UUserControlPage.pas"/>1560 <Caret Line="51" Column="68" TopLine="34"/>1561 </Position30>1562 1531 </JumpHistory> 1563 1532 </ProjectOptions> -
trunk/ZdechovNET.lpr
r68 r71 30 30 RegisterPage(TServerInfoPage, ServerInfoPage, 'serverinfo'); 31 31 RegisterPage(TWebCamPage, WebCamPage, 'kamery'); 32 RegisterPage(TUserControlPage, UserControlPage, 'uzivatel');32 //RegisterPage(TUserControlPage, UserControlPage, 'uzivatel'); 33 33 RegisterPage(TPlansPage, PlansPage, 'plany'); 34 34 RegisterPage(TNetworkPage, NetworkPage, 'sit'); 35 //RegisterPage(TAboutPage, AboutPage, '');36 RegisterPage(TUserControlPage, UserControlPage, '');35 RegisterPage(TAboutPage, AboutPage, ''); 36 //RegisterPage(TUserControlPage, UserControlPage, ''); 37 37 ServerType := stCGI; 38 38 if ServerType = stTCP then begin
Note:
See TracChangeset
for help on using the changeset viewer.