├── 15 ├── C++ │ ├── BrowserSizes │ │ ├── BrowserSizes.cbproj │ │ ├── BrowserSizes.cpp │ │ ├── ServerController.cpp │ │ ├── ServerController.dfm │ │ ├── ServerController.h │ │ ├── Unit1.cpp │ │ ├── Unit1.dfm │ │ ├── Unit1.h │ │ ├── UserSessionUnit.cpp │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.h │ ├── Cache │ │ └── OneTimeCache │ │ │ ├── OneTimeCache.cbproj │ │ │ ├── OneTimeCache.cpp │ │ │ ├── OneTimeCache.res │ │ │ ├── ServerController.cpp │ │ │ ├── ServerController.dfm │ │ │ ├── ServerController.h │ │ │ ├── Unit1.cpp │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.h │ │ │ ├── UserSessionUnit.cpp │ │ │ ├── UserSessionUnit.dfm │ │ │ ├── UserSessionUnit.h │ │ │ ├── sample.pdf │ │ │ └── web1.jpg │ ├── DemoCPP_FastMM4 │ │ ├── DatamoduleUnit.cpp │ │ ├── DatamoduleUnit.dfm │ │ ├── DatamoduleUnit.h │ │ ├── Debug │ │ │ └── Win32 │ │ │ │ ├── FastMM_FullDebugMode.dll │ │ │ │ └── FastMM_FullDebugMode64.dll │ │ ├── DemoCPP_FastMM4.cbproj │ │ ├── DemoCPP_FastMM4.cpp │ │ ├── DemoCPP_FastMM4.res │ │ ├── FastMM4.hpp │ │ ├── FastMM4.pas │ │ ├── FastMM4BCB.cpp │ │ ├── FastMM4DataCollector.pas │ │ ├── FastMM4LockFreeStack.hpp │ │ ├── FastMM4LockFreeStack.pas │ │ ├── FastMM4Messages.hpp │ │ ├── FastMM4Messages.pas │ │ ├── FastMM4Options.inc │ │ ├── FastMM_FullDebugMode.lib │ │ ├── FastMM_OSXUtil.pas │ │ ├── ServerController.cpp │ │ ├── ServerController.dfm │ │ ├── ServerController.h │ │ ├── Unit1.cpp │ │ ├── Unit1.dfm │ │ ├── Unit1.h │ │ ├── UserSessionUnit.cpp │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.h │ └── IWGrid │ │ ├── IWGrid.cbproj │ │ ├── IWGrid.cpp │ │ ├── ServerController.cpp │ │ ├── ServerController.dfm │ │ ├── ServerController.h │ │ ├── Unit1.cpp │ │ ├── Unit1.dfm │ │ ├── Unit1.h │ │ ├── UserSessionUnit.cpp │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.h └── Delphi │ ├── AnimatedButtons │ ├── AnimatedButtons.dpr │ ├── AnimatedButtons.dproj │ ├── AnimatedButtons.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit66.dfm │ ├── Unit66.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── AsyncConfirm │ ├── AsyncConfirm.dpr │ ├── AsyncConfirm.dproj │ ├── AsyncConfirm.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit69.dfm │ ├── Unit69.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── AsyncRender │ ├── AsyncRender.dpr │ ├── AsyncRender.dproj │ ├── AsyncRender.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit16.dfm │ ├── Unit16.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── AsyncRenderFrame │ ├── AsyncRenderFrame.dpr │ ├── AsyncRenderFrame.dproj │ ├── AsyncRenderFrame.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit10.dfm │ ├── Unit10.pas │ ├── Unit9.dfm │ ├── Unit9.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── BrowserCaps │ ├── BrowserCaps.dpr │ ├── BrowserCaps.dproj │ ├── BrowserCaps.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── BrowserSize │ ├── BrowserSize.dpr │ ├── BrowserSize.dproj │ ├── BrowserSize.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit46.dfm │ ├── Unit46.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── CGIRunner │ ├── CGIReport │ │ ├── CGIReport.dpr │ │ ├── CGIReport.dproj │ │ ├── CGIReport.res │ │ ├── WebModuleUnit1.dfm │ │ ├── WebModuleUnit1.pas │ │ ├── inc_fontes.inc │ │ ├── libjpfpdf.pas │ │ ├── uDM.dfm │ │ ├── uDM.pas │ │ ├── udmReport1.dfm │ │ └── udmReport1.pas │ ├── CGIRunner2 │ │ ├── CGIRunner2.dpr │ │ ├── CGIRunner2.dproj │ │ ├── CGIRunner2.res │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit1.dfm │ │ ├── Unit1.pas │ │ ├── UserSessionUnit.dfm │ │ ├── UserSessionUnit.pas │ │ └── bin │ │ │ └── CGITest.bat │ ├── CGIRunnerDemo.groupproj │ └── CGIRunnerReport │ │ ├── CGIRunnerReport.dpr │ │ ├── CGIRunnerReport.dproj │ │ ├── CGIRunnerReport.res │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit13.dfm │ │ ├── Unit13.pas │ │ ├── UserSessionUnit.dfm │ │ ├── UserSessionUnit.pas │ │ ├── uIWMainForm.dfm │ │ └── uIWMainForm.pas │ ├── ChartJS │ ├── ChartJS.dpr │ ├── ChartJS.dproj │ ├── ChartJS.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit25.dfm │ ├── Unit25.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ChartJS2 │ ├── ChartJS2.dpr │ ├── ChartJS2.dproj │ ├── ChartJS2.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit25.dfm │ ├── Unit25.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── CheckBoxes │ ├── CheckBoxes.dpr │ ├── CheckBoxes.dproj │ ├── CheckBoxes.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit4.dfm │ ├── Unit4.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── switch-off.png │ │ └── switch-on.png │ ├── ComboBoxes │ ├── ComboBoxes.dpr │ ├── ComboBoxes.dproj │ ├── ComboBoxes.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit6.dfm │ ├── Unit6.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ContentHandlerClearTemplateCache │ ├── ContentHandlerClearTemplateCache.dpr │ ├── ContentHandlerClearTemplateCache.dproj │ ├── ContentHandlerClearTemplateCache.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── uContentClearTemplateCache.pas │ ├── ContentHandlerHTML │ ├── ContentHandlerHtml.dpr │ ├── ContentHandlerHtml.dproj │ ├── ContentHandlerHtml.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit10.dfm │ ├── Unit10.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uContentHtml.pas │ └── wwwroot │ │ └── login.html │ ├── ContentHandlers │ ├── ContentHandlersDemo.dpr │ ├── ContentHandlersDemo.dproj │ ├── ContentHandlersDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uBlueForm.dfm │ ├── uBlueForm.pas │ ├── uMainForm.dfm │ ├── uMainForm.pas │ ├── uRedForm.dfm │ ├── uRedForm.pas │ └── wwwroot │ │ └── AtozedDoc.html │ ├── Cookies │ ├── Cookies.dpr │ ├── Cookies.dproj │ ├── Cookies.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit55.dfm │ ├── Unit55.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── CustomLockerImage │ ├── CustomLockerImage.dpr │ ├── CustomLockerImage.dproj │ ├── CustomLockerImage.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit65.dfm │ ├── Unit65.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── atom.svg │ ├── CustomSessionTimeoutPage │ ├── CustomExceptionRenderer.pas │ ├── CustomSessionTimeoutPage.dpr │ ├── CustomSessionTimeoutPage.dproj │ ├── CustomSessionTimeoutPage.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit5.dfm │ ├── Unit5.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DBGridControls │ ├── DBGridControls.dpr │ ├── DBGridControls.dproj │ ├── DBGridControls.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit53.dfm │ ├── Unit53.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DBLookupCombo │ ├── Bin │ │ └── Tables │ │ │ ├── City.xml │ │ │ ├── Country.xml │ │ │ └── State.xml │ ├── DBLookupCombo.dpr │ ├── DBLookupCombo.dproj │ ├── DBLookupCombo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit61.dfm │ ├── Unit61.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DBLookupComboWithTemplates │ ├── Bin │ │ ├── Tables │ │ │ ├── City.xml │ │ │ ├── Country.xml │ │ │ └── State.xml │ │ ├── Templates │ │ │ └── Main.html │ │ └── wwwroot │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── css │ │ │ └── site.css │ │ │ └── iwbs │ │ │ └── iwbs.js │ ├── DBLookupCombo.dpr │ ├── DBLookupCombo.dproj │ ├── DBLookupCombo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit61.dfm │ ├── Unit61.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DataTables_Template2 │ ├── DataTables_Template2.dpr │ ├── DataTables_Template2.dproj │ ├── DataTables_Template2.res │ ├── Database │ │ └── employees.xml │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ └── MainForm.html │ ├── Unit10.dfm │ ├── Unit10.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DataTables_template │ ├── DataTablesTemplate.dpr │ ├── DataTablesTemplate.dproj │ ├── DataTablesTemplate.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── bin │ │ └── Templates │ │ │ └── demo.html │ ├── uFrmMain.dfm │ └── uFrmMain.pas │ ├── Database │ └── IWADODBDemo │ │ ├── IWADODBDemo.dpr │ │ ├── IWADODBDemo.dproj │ │ ├── IWADODBDemo.res │ │ ├── SQLServer_DB │ │ ├── Readme.txt │ │ └── instnwnd.sql │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── UserSessionUnit.dfm │ │ ├── UserSessionUnit.pas │ │ ├── uFrmCustomers.dfm │ │ ├── uFrmCustomers.pas │ │ ├── udmCustomers.dfm │ │ └── udmCustomers.pas │ ├── DeleakerDemoProject │ ├── DeleakerDemoProject.dpr │ ├── DeleakerDemoProject.dproj │ ├── DeleakerDemoProject.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uIWMainForm.dfm │ ├── uIWMainForm.pas │ ├── udmMain.dfm │ └── udmMain.pas │ ├── DigestAuthentication │ ├── DigestDemo.dpr │ ├── DigestDemo.dproj │ ├── DigestDemo.res │ ├── DigestDemoISAPI.dpr │ ├── DigestDemoISAPI.dproj │ ├── DigestDemoISAPI.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit19.dfm │ ├── Unit19.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── DynContentHandler │ ├── DynContentHandler.dpr │ ├── DynContentHandler.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit19.dfm │ ├── Unit19.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uContentResource.pas │ └── wwwroot │ │ ├── test1.html │ │ └── test2.html │ ├── DynMainForm │ ├── DynMainForm.dpr │ ├── DynMainForm.dproj │ ├── DynMainForm.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uForm1.dfm │ ├── uForm1.pas │ ├── uForm2.dfm │ └── uForm2.pas │ ├── GPS │ ├── GPS.dpr │ ├── GPS.dproj │ ├── GPS.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit44.dfm │ ├── Unit44.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── GridControls │ ├── GridControlsDemo.dpr │ ├── GridControlsDemo.dproj │ ├── GridControlsDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── HttpSysDemo │ ├── App1 │ │ ├── HttpSysDemo1.dpr │ │ ├── HttpSysDemo1.dproj │ │ ├── HttpSysDemo1.res │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit1.dfm │ │ ├── Unit1.pas │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.pas │ ├── App2 │ │ ├── HttpSysDemo2.dpr │ │ ├── HttpSysDemo2.dproj │ │ ├── HttpSysDemo2.res │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── Unit2.dfm │ │ ├── Unit2.pas │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.pas │ └── HttpSysDemoProjects.groupproj │ ├── IPGeolocationAccessDemo │ ├── IPGeolocationAccessDemo.dpr │ ├── IPGeolocationAccessDemo.dproj │ ├── IPGeolocationAccessDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit30.dfm │ ├── Unit30.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IPGeolocationDemo │ ├── IPGeolocationDemo.dpr │ ├── IPGeolocationDemo.dproj │ ├── IPGeolocationDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWAccordionDemo │ ├── IWAccordionDemo.dpr │ ├── IWAccordionDemo.dproj │ ├── IWAccordionDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit34.dfm │ ├── Unit34.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWGridDataTables │ ├── IWGridDataTables.dpr │ ├── IWGridDataTables.dproj │ ├── IWGridDataTables.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── bin │ │ └── wwwroot │ │ │ ├── jquery.dataTables.min.css │ │ │ └── jquery.dataTables.min.js │ ├── uFrmMain.dfm │ ├── uFrmMain.pas │ ├── udmMain.dfm │ └── udmMain.pas │ ├── IWLocker │ ├── IWLockerOptionsDemo.dpr │ ├── IWLockerOptionsDemo.dproj │ ├── IWLockerOptionsDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit40.dfm │ ├── Unit40.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWMonitor2 │ ├── IWMonitor2Demo.dpr │ ├── IWMonitor2Demo.dproj │ ├── IWMonitor2Demo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit18.dfm │ ├── Unit18.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── templates │ │ └── MainTemplate.html │ ├── uWorkerThread.pas │ └── wwwroot │ │ └── colors.css │ ├── IWMonitorProgress │ ├── IWMonitorProgressDemo.dpr │ ├── IWMonitorProgressDemo.dproj │ ├── IWMonitorProgressDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit18.dfm │ ├── Unit18.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── uWorkerThread.pas │ ├── IWMonitor_SendMessage │ ├── IWMonitorDemo.dpr │ ├── IWMonitorDemo.dproj │ ├── IWMonitorDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit18.dfm │ ├── Unit18.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── uWorkerThread.pas │ ├── IWPageControlDemo │ ├── IWPageControlDemo.dpr │ ├── IWPageControlDemo.dproj │ ├── IWPageControlDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit34.dfm │ ├── Unit34.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWSelect │ ├── IWSelect.dpr │ ├── IWSelect.dproj │ ├── IWSelect.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit71.dfm │ ├── Unit71.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWSignaturePad │ ├── IWSignaturePad.dpr │ ├── IWSignaturePad.dproj │ ├── IWSignaturePad.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit27.dfm │ ├── Unit27.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWTelegramDemo │ ├── IWTelegramDemo.dpr │ ├── IWTelegramDemo.dproj │ ├── IWTelegramDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IWVideo │ ├── IWVideo.dpr │ ├── IWVideo.dproj │ ├── IWVideo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit33.dfm │ ├── Unit33.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── lion.mp4 │ ├── ImageButtons │ ├── Bin │ │ └── wwwroot │ │ │ ├── foundation-icons.css │ │ │ └── foundation-icons.woff │ ├── ImageButtons.dpr │ ├── ImageButtons.dproj │ ├── ImageButtons.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ImageLoader │ ├── IWImageLoader.dpr │ ├── IWImageLoader.dproj │ ├── IWImageLoader.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit41.dfm │ ├── Unit41.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── IndyHttpsDemo │ ├── HttpsDemo.dpr │ ├── HttpsDemo.dproj │ ├── HttpsDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit9.dfm │ ├── Unit9.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── bin │ │ ├── cert.pem │ │ ├── key.pem │ │ ├── libeay32.dll │ │ ├── root.pem │ │ └── ssleay32.dll │ ├── MemoUpload │ ├── MemoUpload.dpr │ ├── MemoUpload.dproj │ ├── MemoUpload.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit9.dfm │ ├── Unit9.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── MultiPageApp │ ├── MultiPageApp.dpr │ ├── MultiPageApp.dproj │ ├── MultiPageApp.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── MultipleSessionsNoCookie │ ├── MultipleSessionsNoCookie.dpr │ ├── MultipleSessionsNoCookie.dproj │ ├── MultipleSessionsNoCookie.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── bin │ │ ├── tbl1.txt │ │ ├── tbl2.txt │ │ └── wwwroot │ │ │ ├── Padlock96.png │ │ │ ├── lock.png │ │ │ ├── lock72.png │ │ │ └── w3.css │ ├── uFrmMain.dfm │ ├── uFrmMain.pas │ ├── uFrmView1.dfm │ ├── uFrmView1.pas │ ├── uFrmView2.dfm │ ├── uFrmView2.pas │ └── uUserLIst.pas │ ├── NewCallback │ ├── NewCallback.dpr │ ├── NewCallback.dproj │ ├── NewCallback.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit45.dfm │ ├── Unit45.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── NewInputTypes │ ├── NewInputTypes.dpr │ ├── NewInputTypes.dproj │ ├── NewInputTypes.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── Northwind_DB │ └── Northwind.mdb │ ├── OAuth │ ├── IWOAuthDemo.dpr │ ├── IWOAuthDemo.dproj │ ├── IWOAuthDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── client_secret.json │ ├── uLoginForm.dfm │ ├── uLoginForm.pas │ ├── uMainForm.dfm │ ├── uMainForm.pas │ └── wwwroot │ │ ├── facebook.png │ │ ├── google.png │ │ ├── loginok.png │ │ ├── logout.png │ │ └── microsoft.png │ ├── PageUnloadedDemo │ ├── PageUnloadedDemo.dpr │ ├── PageUnloadedDemo.dproj │ ├── PageUnloadedDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uIWForm1.dfm │ ├── uIWForm1.pas │ ├── uIWForm2.dfm │ └── uIWForm2.pas │ ├── PostDataDemo │ ├── How to simulate a request using Firefox Poster addon.png │ ├── IW.Content.XML.pas │ ├── PostDataDemo.dpr │ ├── PostDataDemo.dproj │ ├── PostDataDemo.res │ ├── PostDataDemo_ASPX.dpr │ ├── PostDataDemo_ASPX.dproj │ ├── PostDataDemo_ASPX.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── Recaptcha │ ├── Recaptcha.dpr │ ├── Recaptcha.dproj │ ├── Recaptcha.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit32.dfm │ ├── Unit32.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── RegionScroll │ ├── RegionScroll.dpr │ ├── RegionScroll.dproj │ ├── RegionScroll.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ReportBuilder │ ├── ReportBuilder.dpr │ ├── ReportBuilder.dproj │ ├── ReportBuilder.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── RetrieveBrowserDateTime │ ├── RetrieveBrowserDateTime.dpr │ ├── RetrieveBrowserDateTime.dproj │ ├── RetrieveBrowserDateTime.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit11.dfm │ ├── Unit11.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── SendFileDemo │ ├── SendFileDemo.dpr │ ├── SendFileDemo.dproj │ ├── SendFileDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit22.dfm │ ├── Unit22.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── _files │ │ ├── animals.xml │ │ ├── animals.zip │ │ ├── delphi.pdf │ │ └── test file.txt │ ├── SessionCountDown │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionCountDown.dpr │ ├── SessionCountDown.res │ ├── Unit44.dfm │ ├── Unit44.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── SessionList │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionList.dpr │ ├── SessionList.dproj │ ├── SessionList.res │ ├── Unit46.dfm │ ├── Unit46.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── SessionLookup151 │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionLookup151.dpr │ ├── SessionLookup151.dproj │ ├── SessionLookup151.res │ ├── Unit39.dfm │ ├── Unit39.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── TIWTreeViewDemo │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── Readme.txt │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TreeViewDemo.dpr │ ├── TreeViewDemo.dproj │ ├── TreeViewDemo.res │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── TaskInThread │ ├── DB │ │ └── Northwind.mdb │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TaskInThread.dpr │ ├── TaskInThread.dproj │ ├── TaskInThread.res │ ├── Unit45.dfm │ ├── Unit45.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uDBExporter.pas │ └── uWorkerThread.pas │ ├── TaskInThread2 │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TaskInThread2.dpr │ ├── TaskInThread2.dproj │ ├── TaskInThread2.res │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── TemplateAsResource │ ├── Resources │ │ ├── Build_Resources.bat │ │ ├── template │ │ │ ├── MainForm.html │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── sticky-menu.css │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.easing.min.js │ │ │ │ ├── jquery.js │ │ │ │ └── sticky-menu.js │ │ └── template_resources.rc │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TemplateAsResource.dpr │ ├── TemplateAsResource.dproj │ ├── Unit5.dfm │ ├── Unit5.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── template_resource.res │ ├── uMainForm.dfm │ └── uMainForm.pas │ ├── TerminateAndRedirect │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TerminateAndRedirect.dpr │ ├── TerminateAndRedirect.dproj │ ├── TerminateAndRedirect.res │ ├── Unit20.dfm │ ├── Unit20.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── terminate.html │ ├── TerminateAndRedirectWithTimer │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TerminateAndRedirect2.dpr │ ├── TerminateAndRedirect2.dproj │ ├── TerminateAndRedirect2.res │ ├── Unit50.dfm │ ├── Unit50.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── TimedTask │ ├── DB │ │ └── Northwind.mdb │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TimedTask.dpr │ ├── TimedTask.dproj │ ├── TimedTask.res │ ├── Unit45.dfm │ ├── Unit45.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── uDBBackup.pas │ └── uWorkerThread.pas │ ├── Toast │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Toast.dpr │ ├── Toast.dproj │ ├── Toast.res │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ToggleSwitch │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── ToggleSwitch.dpr │ ├── ToggleSwitch.dproj │ ├── ToggleSwitch.res │ ├── Unit12.dfm │ ├── Unit12.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── off.png │ │ └── on.png │ ├── WebCam │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit11.dfm │ ├── Unit11.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── WebCam.dpr │ ├── WebCam.dproj │ └── WebCam.res │ ├── WebHook │ ├── PaymentApp │ │ ├── Bin │ │ │ └── templates │ │ │ │ ├── FailureForm.html │ │ │ │ ├── PaymentForm.html │ │ │ │ └── SuccessForm.html │ │ ├── FailureFormU.dfm │ │ ├── FailureFormU.pas │ │ ├── IW.Content.Payment.pas │ │ ├── MainFormU.dfm │ │ ├── MainFormU.pas │ │ ├── PaymentApp.dpr │ │ ├── PaymentApp.dproj │ │ ├── PaymentApp.res │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── SuccessFormU.dfm │ │ ├── SuccessFormU.pas │ │ ├── UserSessionUnit.dfm │ │ ├── UserSessionUnit.pas │ │ └── uCommonUtil.pas │ ├── PaymentServer │ │ ├── PaymentServer.dpr │ │ ├── PaymentServer.dproj │ │ ├── PaymentServer.res │ │ ├── Unit1.dfm │ │ └── Unit1.pas │ ├── Readme.txt │ └── WebHookIntrawebDemo.groupproj │ ├── WindowIdChanged │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── WindowIdChanged.dpr │ ├── WindowIdChanged.dproj │ ├── WindowIdChanged.res │ ├── uFrmMain.dfm │ ├── uFrmMain.pas │ ├── uFrmSecond.dfm │ └── uFrmSecond.pas │ ├── jQGrid │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── jQGrid.dpr │ ├── jQGrid.dproj │ ├── jQGrid.res │ ├── uDBGridForm.dfm │ ├── uDBGridForm.pas │ ├── uGridForm.dfm │ ├── uGridForm.pas │ ├── uMainForm.dfm │ └── uMainForm.pas │ └── jQGridEvents │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── jQGridEvents.dpr │ ├── jQGridEvents.dproj │ ├── jQGridEvents.res │ ├── uDBGridEventsForm.dfm │ ├── uDBGridEventsForm.pas │ ├── uDBGridForm.dfm │ └── uDBGridForm.pas ├── .gitignore ├── Other └── DeadlockDemo-PTBR │ ├── DeadLockDemo.dpr │ ├── DeadLockDemo.dproj │ ├── DeadLockDemo.res │ ├── uMainForm.dfm │ └── uMainForm.pas ├── README.md ├── X ├── AtozedWireless │ ├── AtozedWireless.bdsproj │ ├── AtozedWireless.dpr │ ├── AtozedWireless.res │ ├── FormAddCreditUnit.dfm │ ├── FormAddCreditUnit.pas │ ├── FormBalanceUnit.dfm │ ├── FormBalanceUnit.pas │ ├── FormCallDetailUnit.dfm │ ├── FormCallDetailUnit.pas │ ├── FormCallHistoryUnit.dfm │ ├── FormCallHistoryUnit.pas │ ├── FormUserDetails.dfm │ ├── FormUserDetails.pas │ ├── FormUserDetailsUnit.dfm │ ├── FormUserDetailsUnit.pas │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── atozedwireless.mdb ├── BackButton │ ├── BackButton.bdsproj │ ├── BackButton.dpr │ ├── BackButton.drc │ ├── BackButton.res │ ├── Main.dfm │ ├── Main.pas │ ├── Second.dfm │ ├── Second.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Third.dfm │ └── Third.pas ├── CityLookup │ ├── Cities.xml │ ├── CitiesCDS.xml │ ├── CitiesCDSData.xml │ ├── CityLookup.bdsproj │ ├── CityLookup.dpr │ ├── CityLookup.dproj │ ├── CityLookup.groupproj │ ├── CityLookupIsapi.dpr │ ├── CityLookupIsapi.dproj │ ├── MainFormU.dfm │ ├── MainFormU.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── files │ │ └── styles.css ├── CustomStandAlone │ ├── CustomForm.dfm │ ├── CustomForm.pas │ ├── CustomStandAlone.bdsproj │ ├── CustomStandAlone.dpr │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── DieFlyDie │ ├── Database │ │ ├── cart.DAT │ │ ├── cart.DBK │ │ ├── cart.IBK │ │ ├── cart.IDX │ │ ├── categories.BBK │ │ ├── categories.BLB │ │ ├── categories.DAT │ │ ├── categories.DBK │ │ ├── categories.IBK │ │ ├── categories.IDX │ │ ├── order_details.DAT │ │ ├── order_details.IDX │ │ ├── orders.DAT │ │ ├── orders.IDX │ │ ├── products.BBK │ │ ├── products.BLB │ │ ├── products.DAT │ │ ├── products.DBK │ │ ├── products.IBK │ │ ├── products.IDX │ │ ├── reviews.BBK │ │ ├── reviews.BLB │ │ ├── reviews.DAT │ │ ├── reviews.DBK │ │ ├── reviews.IBK │ │ ├── reviews.IDX │ │ ├── users.DAT │ │ ├── users.DBK │ │ ├── users.IBK │ │ └── users.IDX │ ├── DieFlyDie.bdsproj │ ├── DieFlyDie.dpr │ ├── Files │ │ ├── ISFAddReview.html │ │ ├── ISFCheckOut.html │ │ ├── ISFDisplayCategory.html │ │ ├── ISFDisplayProduct.html │ │ ├── ISFFinalize.html │ │ ├── ISFLogin.html │ │ ├── ISFMain.html │ │ ├── ISFOrderDetails.html │ │ ├── ISFOrderHistory.html │ │ ├── ISFProductTree.html │ │ ├── ISFRegister.html │ │ ├── ISFSearch.html │ │ ├── ISFShoppingCart.html │ │ ├── ISFTopBar.html │ │ ├── account.gif │ │ ├── arrowbutton.gif │ │ ├── azsm.gif │ │ ├── aztext.gif │ │ ├── cart.gif │ │ ├── die_fly_die.gif │ │ ├── dieflylogo.gif │ │ ├── dieslogantopleft.GIF │ │ ├── funforall.GIF │ │ ├── grid_background.gif │ │ ├── p000001.JPG │ │ ├── p000002.JPG │ │ ├── p000003.JPG │ │ ├── p000004.JPG │ │ ├── p000005.JPG │ │ ├── p000006.JPG │ │ ├── p000007.JPG │ │ ├── reviewrating1.gif │ │ ├── reviewrating2.gif │ │ ├── reviewrating3.gif │ │ ├── reviewrating4.gif │ │ ├── reviewrating5.gif │ │ ├── search.gif │ │ ├── services.gif │ │ ├── sign_in.gif │ │ └── styles.css │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── dmDieFlyDie.dfm │ ├── dmDieFlyDie.pas │ ├── frProductTree.dfm │ ├── frProductTree.pas │ ├── frTopBar.dfm │ ├── frTopBar.pas │ ├── readme.txt │ ├── uAddReview.dfm │ ├── uAddReview.pas │ ├── uCheckOut.dfm │ ├── uCheckOut.pas │ ├── uConstants.pas │ ├── uDBInterface.pas │ ├── uDisplayCategory.dfm │ ├── uDisplayCategory.pas │ ├── uDisplayProduct.dfm │ ├── uDisplayProduct.pas │ ├── uFinalize.dfm │ ├── uFinalize.pas │ ├── uLogin.dfm │ ├── uLogin.pas │ ├── uMain.dfm │ ├── uMain.pas │ ├── uOrderDetails.dfm │ ├── uOrderDetails.pas │ ├── uOrderHistory.dfm │ ├── uOrderHistory.pas │ ├── uRegister.dfm │ ├── uRegister.pas │ ├── uSearch.dfm │ ├── uSearch.pas │ ├── uShoppingCart.dfm │ └── uShoppingCart.pas ├── Eliza │ ├── EZBillClinton.pas │ ├── EZEliza.pas │ ├── EZEngine.pas │ ├── EZIFM.pas │ ├── EZMSTechSupport.pas │ ├── EZPersonality.pas │ ├── Eliza.bdsproj │ ├── Eliza.dpr │ ├── Files │ │ ├── Bill Clinton.jpg │ │ ├── Eliza.jpg │ │ ├── Iraq Foreign Minister.jpg │ │ └── Microsoft Technical Support.jpg │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Talk.dfm │ └── Talk.pas ├── EurekaLog │ ├── EurekaLog.bdsproj │ ├── EurekaLog.dpr │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── readme.txt ├── Features │ ├── ActiveXForm.dfm │ ├── ActiveXForm.pas │ ├── AlignAnchorsForm.dfm │ ├── AlignAnchorsForm.pas │ ├── CalendarForm.dfm │ ├── CalendarForm.pas │ ├── Cancelar.bmp │ ├── ChartForm.dfm │ ├── ChartForm.pas │ ├── ClientSideDataForm.dfm │ ├── ClientSideDataForm.pas │ ├── Combobox.dfm │ ├── Combobox.pas │ ├── ContentWindow.dfm │ ├── ContentWindow.pas │ ├── DownloadForm.dfm │ ├── DownloadForm.pas │ ├── Downloads │ │ ├── FILE0003.zip │ │ ├── Features.txt │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── bombtech.zip │ │ ├── donutcops.zip │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.zip │ │ └── wazoo.zip │ ├── DynamicGridForm.dfm │ ├── DynamicGridForm.pas │ ├── EditGridForm.dfm │ ├── EditGridForm.pas │ ├── FDatamodule.dfm │ ├── FDatamodule.pas │ ├── FDatamoduleD5Pro.dfm │ ├── FDatamoduleD5Pro.pas │ ├── Features.bdsproj │ ├── Features.cfg │ ├── Features.dpr │ ├── Features.dproj │ ├── FileUploadForm.dfm │ ├── FileUploadForm.pas │ ├── Files │ │ ├── Cover Page.pdf │ │ ├── FILE0003.zip │ │ ├── Features.css │ │ ├── Features.txt │ │ ├── Features2.css │ │ ├── IWActiveX.cab │ │ ├── Installation.pdf │ │ ├── PacText.class │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── atozedlogo.gif │ │ ├── azweb.css │ │ ├── bnext32.JPG │ │ ├── bombtech.zip │ │ ├── bprev32.JPG │ │ ├── donutcops.jpg │ │ ├── donutcops.zip │ │ ├── dots2.gif │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── go3.gif │ │ ├── intraweb.swf │ │ ├── iw.mov │ │ ├── iw.mpeg │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.jpg │ │ ├── support.zip │ │ ├── today.png │ │ └── wazoo.zip │ ├── Flash.dfm │ ├── Flash.pas │ ├── FlowForm.dfm │ ├── FlowForm.pas │ ├── Global.pas │ ├── GridForm.dfm │ ├── GridForm.pas │ ├── IX.xml │ ├── JavaApplet.dfm │ ├── JavaApplet.pas │ ├── MPEGForm.dfm │ ├── MPEGForm.pas │ ├── Main.dfm │ ├── Main.pas │ ├── MapForm.dfm │ ├── MapForm.pas │ ├── MenuForm.dfm │ ├── MenuForm.pas │ ├── MenuFrame.dfm │ ├── MenuFrame.pas │ ├── MessageDialogs.dfm │ ├── MessageDialogs.pas │ ├── QuickTimeForm.dfm │ ├── QuickTimeForm.pas │ ├── RegionForm.dfm │ ├── RegionForm.pas │ ├── ResizeForm.dfm │ ├── ResizeForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Simple.dfm │ ├── Simple.pas │ ├── StyleSheetForm.dfm │ ├── StyleSheetForm.pas │ ├── SubTemplatesForm.dfm │ ├── SubTemplatesForm.pas │ ├── TemplateForm.dfm │ ├── TemplateForm.pas │ ├── Templates │ │ ├── formSubTemplates1.html │ │ ├── formSubTemplates2.html │ │ ├── formTemplate.html │ │ ├── regionSubTemplates1.html │ │ └── regionSubTemplates2.html │ ├── Threaded.dfm │ ├── Threaded.pas │ ├── TimerForm.dfm │ ├── TimerForm.pas │ ├── TreeViewForm.dfm │ ├── TreeViewForm.pas │ ├── map.bmp │ ├── parrothv3.png │ ├── pdfDemoForm.dfm │ └── pdfDemoForm.pas ├── FishFact │ ├── Fishfact.bdsproj │ ├── Fishfact.dpr │ ├── Fishfact.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── biolife.cds ├── FishFactDM │ ├── FishFactDM.bdsproj │ ├── FishFactDM.dpr │ ├── FishFactDM.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── FishMarket │ ├── BeforeFishMarket.html │ ├── Cache │ │ ├── JPG1E.tmp │ │ ├── JPG1F.tmp │ │ ├── JPG20.tmp │ │ ├── JPG21.tmp │ │ ├── JPG22.tmp │ │ ├── JPG23.tmp │ │ ├── JPG44.tmp │ │ ├── JPG45.tmp │ │ ├── JPG46.tmp │ │ ├── JPG47.tmp │ │ ├── JPG48.tmp │ │ ├── JPG49.tmp │ │ ├── JPG4A.tmp │ │ └── JPG4B.tmp │ ├── Cart.dfm │ ├── Cart.pas │ ├── FishMarket.bdsproj │ ├── FishMarket.dpr │ ├── FishMarketDLL.bdsproj │ ├── FishMarketDLL.dpr │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── files │ │ ├── graphics │ │ ├── Angelfish_Blue_Angelfish.gif │ │ ├── Barracuda_Great_Barracuda.gif │ │ ├── Butterflyfish_Ornate_Butterflyfish.gif │ │ ├── Cod_Lingcod.gif │ │ ├── Cod_Lunartail_Rockcod.gif │ │ ├── Croaker_White_Sea_Bass.gif │ │ ├── Eel_California_Moray.gif │ │ ├── Greenling_Rock_Greenling.gif │ │ ├── Grouper_Nassau_Grouper.gif │ │ ├── Grunt_French_Grunt.gif │ │ ├── Jack_Yellow_Jack.gif │ │ ├── Parrotfish_Redband_Parrotfish.gif │ │ ├── Ray_Bat_Ray.gif │ │ ├── Ray_Spotted_Eagle_Ray.gif │ │ ├── Scorpionfish_Firefish.gif │ │ ├── Sculpin_Cabezon.gif │ │ ├── Shark_Nurse_Shark.gif │ │ ├── Shark_Swell_Shark.gif │ │ ├── Smelt_Surf_Smelt.gif │ │ ├── Snapper_Dog_Snapper.gif │ │ ├── Snapper_Red_Emperor.gif │ │ ├── Snapper_Yellowtail_Snapper.gif │ │ ├── Spadefish_Atlantic_Spadefish.gif │ │ ├── Surfperch_Redtail_Surfperch.gif │ │ ├── Triggerfish_Clown_Triggerfish.gif │ │ ├── Wrasse_Bluehead_Wrasse.gif │ │ ├── Wrasse_Giant_Maori_Wrasse.gif │ │ ├── Wrasse_Senorita.gif │ │ ├── cart.jpg │ │ └── logo.jpg │ │ ├── www │ │ ├── Angelfish.html │ │ ├── Barracuda.html │ │ ├── Butterflyfish.html │ │ ├── Cod.html │ │ ├── Croaker.html │ │ ├── Snapper.html │ │ ├── Wrasse.html │ │ ├── categories.html │ │ └── index.html │ │ └── wwwiis │ │ ├── Angelfish.html │ │ ├── Barracuda.html │ │ ├── Butterflyfish.html │ │ ├── Cod.html │ │ ├── Croaker.html │ │ ├── Snapper.html │ │ ├── Wrasse.html │ │ ├── categories.html │ │ └── index.html ├── FlightInformation │ ├── Data │ │ ├── DBDWORK.INI │ │ ├── Flights.DB │ │ └── Flights.PX │ ├── DatamoduleUnit.dfm │ ├── DatamoduleUnit.pas │ ├── Files │ │ └── airplane.jpg │ ├── FlightInfo.bdsproj │ ├── FlightInfo.dpr │ ├── FlightsForm.dfm │ ├── FlightsForm.pas │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── Templates │ │ ├── IWException.html │ │ ├── formFlights.wml │ │ ├── formFlights.xhtml │ │ ├── formMain.wml │ │ └── formMain.xhtml ├── FormData │ ├── Dialog.dfm │ ├── Dialog.pas │ ├── FormData.bdsproj │ ├── FormData.dpr │ ├── FormData.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── GoogleMapsAPI │ ├── FormMainU.dfm │ ├── FormMainU.pas │ ├── GoogleMapsAPI.bdsproj │ ├── GoogleMapsAPI.dpr │ ├── GoogleMapsAPI.dproj │ ├── GoogleMapsAPI.dsk │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── files │ │ ├── GoogleMaps_logo.gif │ │ └── search16.png ├── Guess │ ├── Guess.bdsproj │ ├── Guess.dpr │ ├── Guess.dproj │ ├── Guess.drc │ ├── GuessDLL.bdsproj │ ├── GuessDLL.dpr │ ├── GuessDSO.bdsproj │ ├── GuessDSO.dpr │ ├── GuessDSOTwo.bdsproj │ ├── GuessDSOTwo.dpr │ ├── GuessService.bdsproj │ ├── GuessService.dpr │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── GuessMulti │ ├── GuessMulti.bdsproj │ ├── GuessMulti.dpr │ ├── Main32.dfm │ ├── Main32.pas │ └── Templates │ │ └── formMain32.html ├── GuessTest │ ├── FunctionalTestsUnit.pas │ ├── GuessTest.bdsproj │ ├── GuessTest.dpr │ ├── LayoutTestsUnit.pas │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── GuessWB │ ├── GuessWB.dpr │ ├── GuessWB.dsk │ ├── Main.dfm │ ├── Main.pas │ ├── WebModule.dfm │ └── WebModule.pas ├── IWP │ ├── IWPDemo.bdsproj │ ├── IWPDemo.dpr │ ├── MainWM.dfm │ ├── MainWM.pas │ ├── Pages │ │ ├── index.iwp │ │ ├── step1.iwp │ │ └── step2.iwp │ ├── step1.dfm │ ├── step1.pas │ ├── step2.dfm │ └── step2.pas ├── MemoryManager │ ├── FRMMSnapShot.dfm │ ├── FormMMStatusU.dfm │ ├── FormMMStatusU.pas │ ├── FormMainU.dfm │ ├── FormMainU.pas │ ├── MemoryManager.dpr │ ├── MemoryManagerDemo.dpr │ ├── RecyclerMM.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── readme.txt ├── PageForms │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── MainWeb.dfm │ ├── MainWeb.pas │ ├── PageForms.bdsproj │ ├── PageForms.dpr │ ├── PageForms.res │ ├── SecondForm.dfm │ └── SecondForm.pas ├── PhoneInfo │ ├── Main.dfm │ ├── Main.pas │ ├── PhoneInfo.bdsproj │ ├── PhoneInfo.dpr │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── Phonetics Customer Profiler │ ├── CallingPlan.dfm │ ├── CallingPlan.pas │ ├── Discount.dfm │ ├── Discount.pas │ ├── Files │ │ ├── Link_Back.jpg │ │ ├── OnPhone.jpg │ │ ├── Phonetiks.gif │ │ ├── background.gif │ │ ├── ballet_arro.gif │ │ ├── ballet_dot.gif │ │ ├── bg.gif │ │ ├── hr.gif │ │ ├── line.gif │ │ ├── link_home.gif │ │ ├── link_top.gif │ │ ├── mod_temp3_02.gif │ │ ├── mod_temp3_03.gif │ │ ├── mod_temp3_05.gif │ │ ├── mod_temp3_06.gif │ │ ├── mod_temp3_07.gif │ │ ├── pic_Auto.jpg │ │ ├── spacer.gif │ │ ├── your_logo.gif │ │ ├── your_logo2.gif │ │ └── your_logo3.gif │ ├── Main.dfm │ ├── Main.pas │ ├── PCP.bdsproj │ ├── PCP.dpr │ ├── Proposal.dfm │ ├── Proposal.pas │ ├── Question1.dfm │ ├── Question1.pas │ ├── Question2.dfm │ ├── Question2.pas │ ├── Question3.dfm │ ├── Question3.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── Templates │ │ ├── formCallingPlan.html │ │ ├── formDiscount.html │ │ ├── formMain.html │ │ ├── formProposal.html │ │ ├── formQuestion1.html │ │ ├── formQuestion2.html │ │ ├── formQuestion3.html │ │ └── masterTemplate.html ├── PopupPassingData │ ├── PopupPassingData.bdsproj │ ├── PopupPassingData.dpr │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── files │ │ └── popup.html ├── RaveDemo │ ├── RaveDemo.bdsgroup │ ├── RaveDemo.bdsproj │ ├── RaveDemo.bpg │ ├── RaveDemo.dpr │ ├── RaveDemo.rav │ ├── RaveDemoDLL.bdsproj │ ├── RaveDemoDLL.dpr │ ├── ReadMe.txt │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ └── Unit1.pas ├── SessionManager │ ├── Enter.dfm │ ├── Enter.pas │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionManager.dpr │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── StandAloneSSL │ ├── Files │ │ └── padlock.jpg │ ├── Main.dfm │ ├── Main.pas │ ├── NonSecureForm.dfm │ ├── NonSecureForm.pas │ ├── SecureForm.dfm │ ├── SecureForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── StandAloneSSL.bdsproj │ ├── StandAloneSSL.dpr │ ├── StandAloneSSL.dproj │ ├── StandAloneSSL.res │ ├── cert.pem │ ├── key.pem │ └── root.pem ├── StrSecSSL │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TLSServer.bdsproj │ ├── TLSServer.dpr │ ├── TLSServerMain.dfm │ └── TLSServerMain.pas ├── Taxi │ ├── Client.dfm │ ├── Client.pas │ ├── ClientOrders.dfm │ ├── ClientOrders.pas │ ├── Database │ │ ├── client.DAT │ │ ├── client.IDX │ │ ├── driver.DAT │ │ ├── driver.IDX │ │ ├── taxi_order.DAT │ │ └── taxi_order.IDX │ ├── Driver.dfm │ ├── Driver.pas │ ├── DriverOrders.dfm │ ├── DriverOrders.pas │ ├── EditClient.dfm │ ├── EditClient.pas │ ├── EditOrder.dfm │ ├── EditOrder.pas │ ├── EditOrderByDriver.dfm │ ├── EditOrderByDriver.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Taxi.bdsproj │ ├── Taxi.dpr │ ├── TaxiDM.dfm │ ├── TaxiDM.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── readme.txt ├── WebMail32 │ ├── Mail.dfm │ ├── Mail.pas │ ├── MailWAP.dfm │ ├── MailWAP.pas │ ├── Main.dfm │ ├── Main.pas │ ├── MainWAP.dfm │ ├── MainWAP.pas │ ├── MsgWAP.dfm │ ├── MsgWAP.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ ├── formMainWAP.xml │ │ └── frmMain.html │ ├── WebMail32.bdsproj │ └── WebMail32.dpr ├── WebSnapSurvey │ ├── AppModule.dfm │ ├── AppModule.pas │ ├── DebugForm.dfm │ ├── DebugForm.pas │ ├── Global.pas │ ├── LoginPageModule.dfm │ ├── LoginPageModule.html │ ├── LoginPageModule.pas │ ├── Page1Form.dfm │ ├── Page1Form.pas │ ├── Page1Module.dfm │ ├── Page1Module.pas │ ├── PageResultsForm.dfm │ ├── PageResultsForm.pas │ ├── PageResultsModule.dfm │ ├── PageResultsModule.pas │ ├── WebSnapSurvey.bdsproj │ ├── WebSnapSurvey.dpr │ └── WebSnapSurveyISAPI.dpr └── madExceptDemo │ ├── Demo.dfm │ ├── Demo.pas │ ├── IWExceptDemo.bdsproj │ ├── IWExceptDemo.dpr │ ├── IWExceptDemo.mes │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── XI ├── AJAXNotifier │ ├── AJAXNotifier.dpr │ ├── AJAXNotifier.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── Authentication │ ├── AuthISAPI │ │ ├── AuthISAPI.dpr │ │ └── AuthISAPI.res │ ├── Authentication.dpr │ ├── Authentication.res │ ├── Authorized.dfm │ ├── Authorized.pas │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── AutherMethod │ ├── AuthenticateForm.dfm │ ├── AuthenticateForm.pas │ ├── FormAuthentication.dpr │ ├── FormAuthentication.res │ ├── NoAuthenticateForm.dfm │ ├── NoAuthenticateForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── ChangeImage │ ├── Project7.dpr │ ├── Project7.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── ContentPah │ ├── ContentPah.dpr │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── myFiles │ │ └── intraweb.png ├── CustomErrorTemplates │ ├── CustomErrorTemplates.dpr │ ├── CustomErrorTemplates.res │ ├── Files │ │ ├── error-logo.jpg │ │ └── messageinabottle.jpg │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ ├── IWError.html │ │ ├── IWException.html │ │ ├── IWSessionTimeout.html │ │ └── IWShowMessage.html │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── CustomStandAlone │ ├── CustomForm.dfm │ ├── CustomForm.pas │ ├── CustomStandAlone.dpr │ ├── CustomStandAlone.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── CustomURLResponder │ ├── CustomURLResponder.dpr │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── myCustomURLResponder.pas │ ├── myForm.dfm │ ├── myForm.pas │ └── wwwroot │ │ └── index.html ├── Demos.groupproj ├── Features │ ├── ActiveXForm.dfm │ ├── ActiveXForm.pas │ ├── AlignAnchorsForm.dfm │ ├── AlignAnchorsForm.pas │ ├── CalendarForm.dfm │ ├── CalendarForm.pas │ ├── Cancelar.bmp │ ├── Combobox.dfm │ ├── Combobox.pas │ ├── ContentWindow.dfm │ ├── ContentWindow.pas │ ├── DownloadForm.dfm │ ├── DownloadForm.pas │ ├── EditGridForm.dfm │ ├── EditGridForm.pas │ ├── FDatamodule.dfm │ ├── FDatamodule.pas │ ├── Features.dpr │ ├── FileUploadForm.dfm │ ├── FileUploadForm.pas │ ├── Flash.dfm │ ├── Flash.pas │ ├── FlowForm.dfm │ ├── FlowForm.pas │ ├── Global.pas │ ├── GridForm.dfm │ ├── GridForm.pas │ ├── IX.xml │ ├── JavaApplet.dfm │ ├── JavaApplet.pas │ ├── MPEGForm.dfm │ ├── MPEGForm.pas │ ├── Main.dfm │ ├── Main.pas │ ├── MapForm.dfm │ ├── MapForm.pas │ ├── MenuForm.dfm │ ├── MenuForm.pas │ ├── MenuFrame.dfm │ ├── MenuFrame.pas │ ├── MessageDialogs.dfm │ ├── MessageDialogs.pas │ ├── QuickTimeForm.dfm │ ├── QuickTimeForm.pas │ ├── RegionForm.dfm │ ├── RegionForm.pas │ ├── ResizeForm.dfm │ ├── ResizeForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Simple.dfm │ ├── Simple.pas │ ├── StyleSheetForm.dfm │ ├── StyleSheetForm.pas │ ├── SubTemplatesForm.dfm │ ├── SubTemplatesForm.pas │ ├── TemplateForm.dfm │ ├── TemplateForm.pas │ ├── Templates │ │ ├── formSubTemplates1.html │ │ ├── formSubTemplates2.html │ │ ├── formTemplate.html │ │ ├── regionSubTemplates1.html │ │ └── regionSubTemplates2.html │ ├── Threaded.dfm │ ├── Threaded.pas │ ├── TimerForm.dfm │ ├── TimerForm.pas │ ├── TreeViewForm.dfm │ ├── TreeViewForm.pas │ ├── map.bmp │ ├── parrothv3.png │ ├── pdfDemoForm.dfm │ ├── pdfDemoForm.pas │ └── wwwroot │ │ ├── Downloads │ │ ├── FILE0003.zip │ │ ├── Features.txt │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── bombtech.zip │ │ ├── donutcops.zip │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.zip │ │ └── wazoo.zip │ │ └── Files │ │ ├── Cover Page.pdf │ │ ├── FILE0003.zip │ │ ├── Features.css │ │ ├── Features.txt │ │ ├── Features2.css │ │ ├── IWActiveX.cab │ │ ├── Installation.pdf │ │ ├── PacText.class │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── atozedlogo.gif │ │ ├── azweb.css │ │ ├── bnext32.JPG │ │ ├── bombtech.zip │ │ ├── bprev32.JPG │ │ ├── donutcops.jpg │ │ ├── donutcops.zip │ │ ├── dots2.gif │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── go3.gif │ │ ├── intraweb.swf │ │ ├── iw.mov │ │ ├── iw.mpeg │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.jpg │ │ ├── support.zip │ │ ├── today.png │ │ └── wazoo.zip ├── FileManager │ ├── #Auth.ini │ ├── FileManager.dpr │ ├── FileManager.res │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── NewFolderForm.dfm │ ├── NewFolderForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UploadForm.dfm │ ├── UploadForm.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── FilesDir │ ├── FilesDir.dpr │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── myFiles │ │ ├── LogoIntraWeb.gif │ │ └── sample.css │ └── wwwroot │ │ └── Terminate.html ├── FishFact │ ├── Fishfact.dpr │ ├── Fishfact.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── biolife.cds ├── FishFactExtended │ ├── Fishfact.dpr │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── biolife.cds ├── Guess │ ├── Guess.dpr │ ├── Guess.res │ ├── GuessDLL.dpr │ ├── GuessDLL.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas ├── HiddenFields │ ├── HiddenFields.dpr │ ├── HiddenFields.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── HttpAndCookie │ ├── HttpAndCookie.dpr │ ├── HttpAndCookie.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ └── wwwroot │ │ └── Temp │ │ └── index.html ├── IWDocs │ ├── AZ Docs WWW.sln │ ├── Atozed Docs.sln │ ├── EditForm.dfm │ ├── EditForm.pas │ ├── Files │ │ ├── iwItalic.gif │ │ ├── iwUnderline.gif │ │ ├── iwaligncentre.gif │ │ ├── iwalignleft.gif │ │ ├── iwalignright.gif │ │ ├── iwbold.gif │ │ ├── iwbullets.gif │ │ ├── iwcopy.gif │ │ ├── iwcut.gif │ │ ├── iwimg.gif │ │ ├── iwindentdecrease.gif │ │ ├── iwindentincrease.gif │ │ ├── iwlink.gif │ │ ├── iwnew.gif │ │ ├── iwnumberedlist.gif │ │ ├── iwpaste.gif │ │ ├── iwruler.gif │ │ ├── iwstrikeout.gif │ │ ├── subscript.gif │ │ └── superscript.gif │ ├── IWDocs.dpr │ ├── IWDocs.res │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── #Dir.cfg │ │ ├── #Tmplt.Contents.cfg │ │ ├── #Tmplt.Contents.html │ │ ├── #Tmplt.Default.html │ │ ├── CrossTalk │ │ ├── CTPMgr │ │ │ ├── CTPFile.html │ │ │ ├── UserAsms.htm │ │ │ └── index.html │ │ ├── Coding │ │ │ ├── Aliasing │ │ │ │ ├── Create.html │ │ │ │ ├── IndexedProps.html │ │ │ │ └── index.html │ │ │ ├── ByteArrays.html │ │ │ ├── Datasets.html │ │ │ ├── Debugging.html │ │ │ ├── Enums.html │ │ │ ├── Events.html │ │ │ ├── Exceptions.html │ │ │ └── index.html │ │ ├── Demos │ │ │ ├── CustomClass.html │ │ │ ├── Encryption.html │ │ │ ├── StringBuilder.html │ │ │ ├── WPFDemo.html │ │ │ └── index.html │ │ ├── Deployment.html │ │ ├── License.html │ │ ├── LicenseKey.html │ │ ├── index.html │ │ └── index_files │ │ │ ├── #Dir.cfg │ │ │ ├── 20090505-CTDelphi.jpg │ │ │ ├── 20090505-CTOutput.jpg │ │ │ ├── 20090610-DataSet.jpg │ │ │ ├── 20090610-DelphiCode.jpg │ │ │ ├── 20090610-DelphiCode2.jpg │ │ │ ├── 20090611-DebugOptions.jpg │ │ │ ├── 20090906-AddClass.jpg │ │ │ ├── 20090906-BeforeSave.jpg │ │ │ ├── 20090906-Code.jpg │ │ │ ├── 20090906-CustomClassCTP.jpg │ │ │ ├── 20090906-Generate.jpg │ │ │ ├── 20090906-Generated.jpg │ │ │ ├── 20090906-Uses.jpg │ │ │ ├── 20090906.jpg │ │ │ ├── ButtonClick.jpg │ │ │ ├── CTPMAddGAC.jpg │ │ │ ├── CTPMAddGACmscor.jpg │ │ │ ├── CTPMAddTypeForm.jpg │ │ │ ├── CTPMEditor.jpg │ │ │ ├── CTPMNewProject.jpg │ │ │ ├── CTPMReady.jpg │ │ │ ├── CTPMStringBuilderSelected.jpg │ │ │ ├── CTPMgr.jpg │ │ │ ├── CTPMmscorlib.jpg │ │ │ ├── CTPMmscorlib2.jpg │ │ │ ├── CTPMmscorlib3.jpg │ │ │ ├── CTPMstringbu.jpg │ │ │ ├── CustomClassClass.jpg │ │ │ ├── HelloWorld.jpg │ │ │ ├── NewCustomClassLib.jpg │ │ │ ├── ProjectWithCTPFile.jpg │ │ │ ├── StringBuilderCTP.jpg │ │ │ ├── StringBuilderMscorlib.jpg │ │ │ ├── StringBuilderOutput.jpg │ │ │ ├── StringBuilderSource.jpg │ │ │ ├── TestCTPGenerate.jpg │ │ │ ├── TestCTPOpen.jpg │ │ │ ├── TestCTPPas.jpg │ │ │ └── UsesCTmscorlib.jpg │ │ ├── IntraWeb │ │ ├── #Dir.cfg │ │ ├── AppMode │ │ │ ├── #Dir.cfg │ │ │ ├── BestPractices.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── Bugs │ │ │ ├── 01 - Fix first │ │ │ │ ├── AuthErrorFromAID.html │ │ │ │ ├── AuthRemote.htm │ │ │ │ └── IDELicense.html │ │ │ ├── 02 - Fix Next │ │ │ │ └── IWRegionContentDisappearing.html │ │ │ └── 10 - Other │ │ │ │ ├── DprojFilesInCodePlex.html │ │ │ │ └── FeaturesDemo.html │ │ ├── Classes │ │ │ ├── Authers │ │ │ │ ├── TIWAuther │ │ │ │ │ ├── Policy.html │ │ │ │ │ └── index.html │ │ │ │ ├── TIWAutherEvent │ │ │ │ │ └── index.html │ │ │ │ ├── TIWAutherINI │ │ │ │ │ └── index.html │ │ │ │ ├── TIWAutherList │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── ContentHandler │ │ │ │ └── index.html │ │ │ ├── IWGlobalUnit │ │ │ │ ├── gMainFormClass.html │ │ │ │ ├── gSC.html │ │ │ │ ├── gServerController.html │ │ │ │ └── index.html │ │ │ ├── TIWAppForm │ │ │ │ ├── GetURL.html │ │ │ │ ├── OnAJAXComplete.htm │ │ │ │ ├── OnURLRequest.html │ │ │ │ ├── RequestAuth.html │ │ │ │ ├── SetURL.html │ │ │ │ └── index.html │ │ │ ├── TIWApplication │ │ │ │ ├── ReferringURL.html │ │ │ │ ├── ReferringURLLast.html │ │ │ │ └── index.html │ │ │ ├── URLResponders │ │ │ │ └── TIWURLResponderDirLister │ │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Debugging │ │ │ └── index.html │ │ ├── Demos │ │ │ └── index.html │ │ ├── Deployment │ │ │ ├── #Dir.cfg │ │ │ ├── ConfigLog.html │ │ │ ├── ISAPI │ │ │ │ ├── 2003 │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── Service │ │ │ │ ├── IIS.html │ │ │ │ └── index.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── IPM │ │ │ ├── #Dir.cfg │ │ │ ├── Config.html │ │ │ ├── ConfigDir.html │ │ │ ├── ConfigDoc.html │ │ │ ├── ConfigTemplate.html │ │ │ ├── FAQ.html │ │ │ ├── Order.html │ │ │ ├── Overview.html │ │ │ ├── Overview.jpg │ │ │ ├── Protected.html │ │ │ ├── Protected.jpg │ │ │ ├── Template.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── Installation │ │ │ ├── Demos.html │ │ │ ├── Supported.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── ServerController │ │ │ ├── AllowMultipleSessionsPerUser.html │ │ │ ├── AppName.html │ │ │ ├── DebugHTML.html │ │ │ ├── Description.html │ │ │ ├── DisplayName.html │ │ │ ├── GUIActive.html │ │ │ ├── JavascriptDebug.html │ │ │ ├── MachineName.html │ │ │ ├── NewCacheFile.html │ │ │ ├── OnUserTag.html │ │ │ ├── ProcessID.html │ │ │ └── index.html │ │ ├── SiteMgr │ │ │ └── index.html │ │ ├── StandAlone │ │ │ ├── #Dir.cfg │ │ │ ├── Switches.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── Tags │ │ │ ├── #Dir.cfg │ │ │ ├── Arg │ │ │ │ ├── #Dir.cfg │ │ │ │ └── index.html │ │ │ ├── Cookie │ │ │ │ ├── #Dir.cfg │ │ │ │ └── index.html │ │ │ ├── Dir │ │ │ │ ├── #Dir.cfg │ │ │ │ ├── Name.html │ │ │ │ ├── SortIndex.html │ │ │ │ ├── Title.html │ │ │ │ ├── URL.html │ │ │ │ ├── index#.cfg │ │ │ │ └── index.html │ │ │ ├── Doc │ │ │ │ ├── #Dir.cfg │ │ │ │ ├── Body.html │ │ │ │ ├── EnumPageNo.html │ │ │ │ ├── FullName.html │ │ │ │ ├── Name.html │ │ │ │ ├── Size.html │ │ │ │ ├── SortIndex.html │ │ │ │ ├── TimeCreated.html │ │ │ │ ├── TimeModified.html │ │ │ │ ├── Title.html │ │ │ │ ├── URL.html │ │ │ │ ├── index#.cfg │ │ │ │ └── index.html │ │ │ ├── Enum │ │ │ │ ├── #Dir.cfg │ │ │ │ ├── Breadcrumb.html │ │ │ │ ├── List.html │ │ │ │ ├── ListDirs.html │ │ │ │ ├── ListDocs.html │ │ │ │ ├── Preset#.cfg │ │ │ │ ├── Preset.html │ │ │ │ ├── RSS.html │ │ │ │ ├── index#.cfg │ │ │ │ └── index.html │ │ │ ├── HTTP │ │ │ │ ├── #Dir.cfg │ │ │ │ └── index.html │ │ │ ├── Session │ │ │ │ ├── #Dir.cfg │ │ │ │ └── index.html │ │ │ ├── Sys │ │ │ │ ├── #Dir.cfg │ │ │ │ ├── index#.cfg │ │ │ │ └── index.html │ │ │ ├── User │ │ │ │ ├── #Dir.cfg │ │ │ │ └── index.html │ │ │ ├── Var │ │ │ │ ├── #Dir.cfg │ │ │ │ ├── VarFile.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── URLs │ │ │ ├── Forms.html │ │ │ └── index.html │ │ ├── Units │ │ │ ├── IWUtils │ │ │ │ ├── URLPathToFilePath.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Upgrade │ │ │ ├── #Dir.cfg │ │ │ ├── APIChanges.html │ │ │ ├── New.html │ │ │ ├── index#.cfg │ │ │ └── index.html │ │ ├── UserSession │ │ │ ├── OnSessionTag.html │ │ │ └── index.html │ │ ├── VisualComps │ │ │ ├── TIWDBGrid │ │ │ │ └── index.html │ │ │ ├── TIWDBGridColumns │ │ │ │ └── index.html │ │ │ ├── TIWGrid │ │ │ │ └── index.html │ │ │ ├── TIWGridCell │ │ │ │ ├── Control.html │ │ │ │ └── index.html │ │ │ ├── TIWRepeatingRegion │ │ │ │ └── index.html │ │ │ ├── TIWURL │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── VisualCustomComps │ │ │ ├── #Dir.cfg │ │ │ ├── LayoutMgr.html │ │ │ ├── Types.html │ │ │ └── index.html │ │ └── index.html │ │ ├── Root.css │ │ ├── UserContrib.html │ │ ├── gfx │ │ ├── #Dir.cfg │ │ └── AtozedLogo.png │ │ ├── index.html │ │ ├── rss#.cfg │ │ └── rss.html ├── IWPDemo │ ├── IWPDemo.dpr │ ├── IWPDemo.res │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── index.html │ │ ├── prize │ │ ├── Prize#.var │ │ ├── Prize#LastMinuteNotes.txt │ │ ├── Prize#Winners.html │ │ └── prize.html │ │ └── system │ │ └── index.html ├── PNG │ ├── PNG.dpr │ ├── PNG.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── intraweb.png ├── SessionTag │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionTag.dpr │ ├── SessionTag.res │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── index.html ├── StandAloneSSL │ ├── Files │ │ └── padlock.jpg │ ├── Main.dfm │ ├── Main.pas │ ├── NonSecureForm.dfm │ ├── NonSecureForm.pas │ ├── SecureForm.dfm │ ├── SecureForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── StandAloneSSL.dpr │ ├── StandAloneSSL.res │ ├── cert.pem │ ├── key.pem │ └── root.pem ├── TemplatesAndCSS │ ├── Files │ │ ├── logo.jpg │ │ └── store.css │ ├── ISAPITest.dpr │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ └── template.html │ ├── TemplatesAndCSS.dpr │ ├── TemplatesAndCSS.res │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── images │ │ ├── Desktop.jpg │ │ ├── Hitech.jpg │ │ ├── Mac Style.jpg │ │ ├── Modern Look.jpg │ │ ├── Modern Style.jpg │ │ ├── Museum Style.jpg │ │ ├── Notebook.jpg │ │ ├── Thin Model.jpg │ │ └── Vintage.jpg ├── TimeOutResponse │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TimeOutResponse.dpr │ ├── TimeOutResponse.res │ ├── TimeOutResponseISAPI.dpr │ ├── TimeOutResponseISAPI.res │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── images │ │ └── timeout.jpg │ │ └── timeout.html ├── URLMapping │ ├── BlueForm.dfm │ ├── BlueForm.pas │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── RedForm.dfm │ ├── RedForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── URLMapping.dpr │ ├── URLMapping.res │ ├── URLMappingISAPI.dpr │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── index.html ├── URLWindow │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── URLWindow.dpr │ ├── URLWindow.res │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── images │ │ ├── Desktop.jpg │ │ ├── Hitech.jpg │ │ ├── Mac Style.jpg │ │ ├── Modern Look.jpg │ │ ├── Modern Style.jpg │ │ ├── Museum Style.jpg │ │ ├── Notebook.jpg │ │ ├── Thin Model.jpg │ │ └── Vintage.jpg ├── WebCam │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit11.dfm │ ├── Unit11.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── WebCam.cfg │ ├── WebCam.dof │ ├── WebCam.dpr │ ├── WebCam.res │ └── blank_image.jpg └── Website │ ├── Files │ └── website.css │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── Website.dpr │ ├── Website.res │ └── wwwroot │ ├── #Email.html │ ├── #Phone.txt │ ├── #Tmplt.Default.html │ ├── About │ └── index.html │ ├── Team │ ├── #Dir.cfg │ ├── #Tmplt.Default.cfg │ ├── #Tmplt.Default.html │ ├── Jack#.var │ ├── Jack#Phone.txt │ ├── Jack.html │ ├── Joe#.var │ ├── Joe.html │ ├── Mary#.var │ ├── Mary.html │ ├── index#.cfg │ └── index.html │ ├── Test │ ├── Params#.cfg │ ├── Params.html │ └── index.html │ └── index.html ├── XII └── Delphi │ ├── Authentication │ ├── AuthISAPI │ │ ├── AuthISAPI.dpr │ │ └── AuthISAPI.res │ ├── Authentication.dpr │ ├── Authentication.res │ ├── Authentication_Icon.ico │ ├── Authorized.dfm │ ├── Authorized.pas │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── ChangeMainForm │ ├── ChangeMainForm.dpr │ ├── ChangeMainForm.dproj │ ├── ChangeMainForm.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit14.dfm │ ├── Unit14.pas │ ├── Unit15.dfm │ ├── Unit15.pas │ ├── Unit16.dfm │ ├── Unit16.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── CustomStandAlone │ ├── CustomForm.dfm │ ├── CustomForm.pas │ ├── CustomStandAlone.dpr │ ├── CustomStandAlone.res │ ├── CustomStandAlone_Icon.ico │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas │ ├── CustomURLResponder │ ├── CustomURLResponder.dpr │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── myCustomURLResponder.pas │ ├── myForm.dfm │ ├── myForm.pas │ └── wwwroot │ │ └── index.html │ ├── Features │ ├── ActiveXForm.dfm │ ├── ActiveXForm.pas │ ├── AlignAnchorsForm.dfm │ ├── AlignAnchorsForm.pas │ ├── CalendarForm.dfm │ ├── CalendarForm.pas │ ├── Cancelar.bmp │ ├── Combobox.dfm │ ├── Combobox.pas │ ├── ContentWindow.dfm │ ├── ContentWindow.pas │ ├── DownloadForm.dfm │ ├── DownloadForm.pas │ ├── EditGridForm.dfm │ ├── EditGridForm.pas │ ├── FDatamodule.dfm │ ├── FDatamodule.pas │ ├── Features.dpr │ ├── Features.dproj │ ├── Features.dproj.local │ ├── Features.identcache │ ├── FeaturesISAPI.dpr │ ├── FeaturesISAPI.dproj │ ├── FeaturesISAPI.res │ ├── FileUploadForm.dfm │ ├── FileUploadForm.pas │ ├── Flash.dfm │ ├── Flash.pas │ ├── FlowForm.dfm │ ├── FlowForm.pas │ ├── Global.pas │ ├── GridForm.dfm │ ├── GridForm.pas │ ├── IX.xml │ ├── JavaApplet.dfm │ ├── JavaApplet.pas │ ├── MPEGForm.dfm │ ├── MPEGForm.pas │ ├── Main.dfm │ ├── Main.pas │ ├── MapForm.dfm │ ├── MapForm.pas │ ├── MenuForm.dfm │ ├── MenuForm.pas │ ├── MenuFrame.dfm │ ├── MenuFrame.pas │ ├── MessageDialogs.dfm │ ├── MessageDialogs.pas │ ├── QuickTimeForm.dfm │ ├── QuickTimeForm.pas │ ├── RegionForm.dfm │ ├── RegionForm.pas │ ├── ResizeForm.dfm │ ├── ResizeForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Simple.dfm │ ├── Simple.pas │ ├── StyleSheetForm.dfm │ ├── StyleSheetForm.pas │ ├── SubTemplatesForm.dfm │ ├── SubTemplatesForm.pas │ ├── TemplateForm.dfm │ ├── TemplateForm.pas │ ├── Templates │ │ ├── formSubTemplates1.html │ │ ├── formSubTemplates2.html │ │ ├── formTemplate.html │ │ ├── regionSubTemplates1.html │ │ └── regionSubTemplates2.html │ ├── Threaded.dfm │ ├── Threaded.pas │ ├── TimerForm.dfm │ ├── TimerForm.pas │ ├── TreeViewForm.dfm │ ├── TreeViewForm.pas │ ├── map.bmp │ ├── parrothv3.png │ ├── pdfDemoForm.dfm │ ├── pdfDemoForm.pas │ └── wwwroot │ │ ├── Downloads │ │ ├── FILE0003.zip │ │ ├── Features.txt │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── bombtech.zip │ │ ├── donutcops.zip │ │ ├── dvdshrink32setup.zip │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.zip │ │ └── wazoo.zip │ │ └── Files │ │ ├── Cover Page.pdf │ │ ├── FILE0003.zip │ │ ├── Features.css │ │ ├── Features.txt │ │ ├── Features2.css │ │ ├── IWActiveX.cab │ │ ├── Installation.pdf │ │ ├── PacText.class │ │ ├── RoadKill.zip │ │ ├── VisitingFriendsKB.zip │ │ ├── atozedlogo.gif │ │ ├── azweb.css │ │ ├── bnext32.JPG │ │ ├── bombtech.zip │ │ ├── bprev32.JPG │ │ ├── donutcops.jpg │ │ ├── donutcops.zip │ │ ├── dots2.gif │ │ ├── easter.zip │ │ ├── fake_watches_mic.zip │ │ ├── go3.gif │ │ ├── intraweb.swf │ │ ├── iw.mov │ │ ├── iw.mpeg │ │ ├── multicast.pdf │ │ ├── radarthis.zip │ │ ├── school.zip │ │ ├── signs24.zip │ │ ├── support.jpg │ │ ├── support.zip │ │ ├── today.png │ │ └── wazoo.zip │ ├── FileManager │ ├── #Auth.ini │ ├── FileManager.dpr │ ├── FileManager.res │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── NewFolderForm.dfm │ ├── NewFolderForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UploadForm.dfm │ ├── UploadForm.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── FishFact │ ├── Fishfact.dpr │ ├── Fishfact.dproj │ ├── Fishfact.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── biolife.cds │ ├── FishFactExtended │ ├── Fishfact.dpr │ ├── Fishfact.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ └── biolife.cds │ ├── Guess │ ├── Guess.dpr │ ├── GuessDLL.dpr │ ├── GuessDLL.res │ ├── Main.dfm │ ├── Main.pas │ ├── ServerController.dfm │ └── ServerController.pas │ ├── HTMLEditor │ ├── HTMLEditorSample.dpr │ ├── HTMLEditorSample.dproj │ ├── HTMLEditorSample.dproj.local │ ├── HTMLEditorSample.identcache │ ├── HTMLEditorSample.res │ ├── HTMLEditorSample_Icon.ico │ ├── README.txt │ ├── ServerController.dcu │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit3.dcu │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dcu │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── __history │ │ ├── Unit3.dfm.~1~ │ │ ├── Unit3.pas.~1~ │ │ ├── Unit3.pas.~2~ │ │ ├── Unit3.pas.~3~ │ │ └── Unit3.pas.~4~ │ └── wwwroot │ │ └── HTMLDoc │ │ └── index.html │ ├── IWPDemo │ ├── IWPDemo.dpr │ ├── IWPDemo.res │ ├── IWPDemoISAPI.dpr │ ├── IWPDemoISAPI.res │ ├── IWPDemo_Icon.ico │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── index.html │ │ ├── prize │ │ ├── Prize#.var │ │ ├── Prize#LastMinuteNotes.txt │ │ ├── Prize#Winners.html │ │ └── prize.html │ │ └── system │ │ └── index.html │ ├── IWWiki │ ├── #Auth.ini │ ├── IWWiki.dpr │ ├── Login.dfm │ ├── Login.pas │ ├── Main.dfm │ ├── Main.pas │ ├── NewItemForm.dfm │ ├── NewItemForm.pas │ ├── Search.dfm │ ├── Search.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ └── Template.html │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── Utils.pas │ ├── WikiItem.pas │ ├── WikiItemForm.dfm │ ├── WikiItemForm.pas │ └── wwwroot │ │ ├── #Tmplt.Default.html │ │ ├── #index.cfg │ │ ├── CrossTalk │ │ ├── #Dir.cfg │ │ ├── #index.cfg │ │ └── index.html │ │ ├── Images │ │ ├── #Dir.cfg │ │ ├── AZLogo.gif │ │ ├── PoweredByIntraWeb.gif │ │ └── background.jpg │ │ ├── IntraWeb │ │ ├── #Dir.cfg │ │ ├── #index.cfg │ │ └── index.html │ │ ├── azwiki.css │ │ └── index.html │ ├── JavaApplet │ ├── Applet.dpr │ ├── Applet.dproj │ ├── Applet.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit5.dfm │ ├── Unit5.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── Smiley.class │ ├── JavaScript │ ├── JavaScript.dpr │ ├── JavaScript.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── NewWindowDemo │ ├── NewWindowDemo.dpr │ ├── NewWindowDemo.dproj │ ├── NewWindowDemo.dproj.local │ ├── NewWindowDemo.identcache │ ├── NewWindowDemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit17.dfm │ ├── Unit17.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── Cover Page.pdf │ ├── PNG │ ├── PNG.dpr │ ├── PNG.dproj │ ├── PNG.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ └── intraweb.png │ ├── ProgressBar │ ├── ProgressTest.dpr │ ├── ProgressTest.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas │ ├── SearchEngine │ ├── Main.dfm │ ├── Main.pas │ ├── README.txt │ ├── SEODemo.dpr │ ├── SEODemo.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ │ ├── Googlebot.html │ │ └── UnsupportedBrowsers.html │ └── URLMapping │ ├── BlueForm.dcu │ ├── BlueForm.dfm │ ├── BlueForm.pas │ ├── MainForm.dcu │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── RedForm.dcu │ ├── RedForm.dfm │ ├── RedForm.pas │ ├── ServerController.dcu │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ ├── BlueForm.html │ └── RedForm.html │ ├── URLMapping.dpr │ ├── URLMapping.dproj │ ├── URLMapping.dproj.local │ ├── URLMapping.identcache │ ├── URLMapping.otares │ ├── URLMapping.res │ ├── URLMappingISAPI.dpr │ ├── URLMappingISAPI.res │ ├── URLMapping_Icon.ico │ ├── URLMapping_Icon1.ico │ ├── URLMapping_project.tvsconfig │ ├── UserSessionUnit.dcu │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── wwwroot │ ├── favicon.ico │ └── index.html └── XIV ├── C++ ├── ContentHandlers │ ├── ContentHandlers.cbproj │ ├── ContentHandlers.cpp │ ├── ContentHandlers.res │ ├── ServerController.cpp │ ├── ServerController.dfm │ ├── ServerController.h │ ├── Unit1.cpp │ ├── Unit1.dfm │ ├── Unit1.h │ ├── UserSessionUnit.cpp │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.h │ ├── uBlueForm.cpp │ ├── uBlueForm.dfm │ ├── uBlueForm.h │ ├── uRedForm.cpp │ ├── uRedForm.dfm │ ├── uRedForm.h │ └── wwwroot │ │ └── AtozedDoc.html ├── MinimalISAPI │ ├── ISAPIDemo.cbproj │ ├── ISAPIDemo.cpp │ ├── ISAPIDemo.res │ ├── ServerController.cpp │ ├── ServerController.dfm │ ├── ServerController.h │ ├── Unit1.cpp │ ├── Unit1.dfm │ ├── Unit1.h │ ├── UserSessionUnit.cpp │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.h └── ReverseProxy │ ├── ReverseProxy.cbproj │ ├── ReverseProxy.cpp │ ├── ReverseProxy.res │ ├── ServerController.cpp │ ├── ServerController.dfm │ ├── ServerController.h │ ├── Unit1.cpp │ ├── Unit1.dfm │ ├── Unit1.h │ ├── Unit2.cpp │ ├── Unit2.dfm │ ├── Unit2.h │ ├── UserSessionUnit.cpp │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.h └── Delphi ├── AsyncLock ├── AsyncLock.dpr ├── AsyncLock.dproj ├── AsyncLock.res ├── ServerController.dfm ├── ServerController.pas ├── Unit10.dfm ├── Unit10.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── AsyncLockCustomCode ├── AsyncLockCustomCode.dpr ├── AsyncLockCustomCode.dproj ├── AsyncLockCustomCode.res ├── ServerController.dfm ├── ServerController.pas ├── Unit3.dfm ├── Unit3.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Authentication ├── AuthISAPI.dpr ├── AuthISAPI.dproj ├── AuthISAPI.res ├── AuthISAPI_Icon.ico ├── Authentication.dpr ├── Authentication.dproj ├── Authentication.res ├── Authorized.dfm ├── Authorized.pas ├── Main.dfm ├── Main.pas ├── ServerController.dfm ├── ServerController.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Authentication2 ├── Authentication2.dpr ├── Authentication2.dproj ├── Authentication2.res ├── ServerController.dfm ├── ServerController.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── uForm1.dfm ├── uForm1.pas ├── uForm2.dfm ├── uForm2.pas ├── uForm3.dfm ├── uForm3.pas ├── uMainForm.dfm └── uMainForm.pas ├── CacheFiles ├── AtozedLogo.gif ├── BuildImagesScript.bat ├── CacheFiles.dpr ├── CacheFiles.dproj ├── CacheFiles.res ├── Images.RES ├── Images.rc ├── ServerController.dfm ├── ServerController.pas ├── Unit6.dfm ├── Unit6.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ChangeValueWithJavaScript ├── ChangeValueWithJS.dpr ├── ChangeValueWithJS.dproj ├── ChangeValueWithJS.res ├── ServerController.dfm ├── ServerController.pas ├── Unit12.dfm ├── Unit12.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ClipboardEvents ├── ClipboardEvents.dpr ├── ClipboardEvents.dproj ├── ClipboardEvents.res ├── ServerController.dfm ├── ServerController.pas ├── Unit16.dfm ├── Unit16.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ComboGrouping ├── ComboGrouping.dpr ├── ComboGrouping.dproj ├── ComboGrouping.res ├── ServerController.dfm ├── ServerController.pas ├── Unit66.dfm ├── Unit66.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ControlCentering ├── ControlCentering.dpr ├── ControlCentering.dproj ├── ControlCentering.res ├── ServerController.dfm ├── ServerController.pas ├── Unit64.dfm ├── Unit64.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── CustomAjaxCall ├── CustomAjaxCall.dpr ├── CustomAjaxCall.dproj ├── CustomAjaxCall.res ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── CustomContentHandlers ├── CustomContentHandler.dpr ├── CustomContentHandler.dproj ├── CustomContentHandler.identcache ├── IW.Content.XML.pas ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── CustomStandAlone ├── CustomForm.dfm ├── CustomForm.pas ├── CustomStandAlone.dpr ├── CustomStandAlone.res ├── CustomStandAlone_Icon.ico ├── CustomStandAlone_Icon1.ico ├── Main.dfm ├── Main.pas ├── ServerController.dfm └── ServerController.pas ├── CustomizingExceptions ├── CustomizingExceptions.groupproj ├── SubclassingExceptionRenderer │ ├── MyExceptionRenderer.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SubclassingExceptionRenderer.dpr │ ├── SubclassingExceptionRenderer.dproj │ ├── SubclassingExceptionRenderer.res │ ├── Unit8.dfm │ ├── Unit8.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── UsingExceptionRenderer │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit8.dfm │ ├── Unit8.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── UsingExceptionRenderer.dpr │ ├── UsingExceptionRenderer.dproj │ └── UsingExceptionRenderer.res └── UsingTemplates │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ ├── IWError.html │ └── IWSessionTimeout.html │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── UsingTemplates.dpr │ ├── UsingTemplates.dproj │ ├── UsingTemplates.res │ └── wwwroot │ └── error_homer.png ├── DBGridControls ├── DBGridControls.dpr ├── DBGridControls.dproj ├── DBGridControls.res ├── ServerController.dfm ├── ServerController.pas ├── Unit53.dfm ├── Unit53.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Database ├── DevArt │ ├── DevArt.dpr │ ├── DevArt.dproj │ ├── DevArt.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit31.dfm │ ├── Unit31.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── IWADOPool │ ├── data │ │ ├── iwdemo.ldb │ │ └── iwdemo.mdb │ └── source │ │ ├── IW14 │ │ ├── ServerController.dfm │ │ ├── ServerController.pas │ │ ├── UserSessionUnit.dfm │ │ └── UserSessionUnit.pas │ │ ├── IWADOTest.inc │ │ ├── IWADOTest_DXE_IW14.dpr │ │ ├── IWADOTest_DXE_IW14.dproj │ │ ├── IWADOTest_DXE_IW14.res │ │ ├── data │ │ ├── uDMDataMain.dfm │ │ └── uDMDataMain.pas │ │ └── forms │ │ ├── ufrmIWMain.dfm │ │ └── ufrmIWMain.pas └── IntraWeb_DataSnap_Biolife │ ├── DataSnapServer │ ├── DataSnapServer.dpr │ ├── DataSnapServer.dproj │ ├── DataSnapServer.res │ ├── MainForm.dfm │ ├── MainForm.pas │ ├── ServerContainerUnit1.dfm │ ├── ServerContainerUnit1.pas │ ├── ServerMethodsUnit1.dfm │ ├── ServerMethodsUnit1.pas │ └── bin │ │ └── biolife.xml │ ├── IWDataSnapDemoGroup.groupproj │ └── IntraWebClient │ ├── DatamoduleUnit.dfm │ ├── DatamoduleUnit.pas │ ├── IWDBDemo.dpr │ ├── IWDBDemo.dproj │ ├── IWDBDemo.res │ ├── IWMainForm.dfm │ ├── IWMainForm.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── DownloadLink ├── DownloadLink.dpr ├── DownloadLink.dproj ├── DownloadLink.res ├── ServerController.dfm ├── ServerController.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── myfiles │ └── sample.zip ├── uMainForm.dfm └── uMainForm.pas ├── DynamicContentWithHandlers ├── DynamicContentWithHandlers.dpr ├── DynamicContentWithHandlers.dproj ├── DynamicContentWithHandlers.res ├── ServerController.dfm ├── ServerController.pas ├── Unit10.dfm ├── Unit10.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── uContentReport.pas └── wwwroot │ ├── Data.cds │ ├── report1.pdf │ ├── report2.pdf │ └── report3.pdf ├── DynamicReverseProxy ├── DynamicReverseProxy.dpr ├── DynamicReverseProxy.dproj ├── DynamicReverseProxy.res ├── ServerController.dfm ├── ServerController.pas ├── Unit67.dfm ├── Unit67.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ExceptionCallback ├── EAppIntraWebSimple.pas ├── ExceptionCallbackDemo.dpr ├── ExceptionCallbackDemo.dproj ├── ExceptionCallbackDemo.res ├── ServerController.dfm ├── ServerController.pas ├── Unit56.dfm ├── Unit56.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ExceptionLogger ├── ExceptionLoggerDemo.dpr ├── ExceptionLoggerDemo.dproj ├── ExceptionLoggerDemo.res ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Features ├── ActiveXForm.dfm ├── ActiveXForm.pas ├── AlignAnchorsForm.dfm ├── AlignAnchorsForm.pas ├── CalendarForm.dfm ├── CalendarForm.pas ├── Cancelar.bmp ├── Combobox.dfm ├── Combobox.pas ├── ContentWindow.dfm ├── ContentWindow.pas ├── DownloadForm.dfm ├── DownloadForm.pas ├── EditGridForm.dfm ├── EditGridForm.pas ├── FDatamodule.dfm ├── FDatamodule.pas ├── Features.dpr ├── Features.dproj ├── Features.identcache ├── Features.res ├── Features.stat ├── FeaturesISAPI.dpr ├── FeaturesISAPI.dproj ├── FeaturesISAPI.res ├── FeaturesISAPI_Icon.ico ├── Features_Icon.ico ├── FileUploadForm.dfm ├── FileUploadForm.pas ├── FileUploadForm.vlb ├── Flash.dfm ├── Flash.pas ├── FlowForm.dfm ├── FlowForm.pas ├── Global.pas ├── GridForm.dfm ├── GridForm.pas ├── JavaApplet.dfm ├── JavaApplet.pas ├── MPEGForm.dfm ├── MPEGForm.pas ├── Main.dfm ├── Main.pas ├── MapForm.dfm ├── MapForm.pas ├── MenuForm.dfm ├── MenuForm.pas ├── MenuFrame.dfm ├── MenuFrame.pas ├── MessageDialogs.dfm ├── MessageDialogs.pas ├── QuickTimeForm.dfm ├── QuickTimeForm.pas ├── RegionForm.dfm ├── RegionForm.pas ├── ResizeForm.dfm ├── ResizeForm.pas ├── ServerController.dfm ├── ServerController.pas ├── Simple.dfm ├── Simple.pas ├── StyleSheetForm.dfm ├── StyleSheetForm.pas ├── SubTemplatesForm.dfm ├── SubTemplatesForm.pas ├── TemplateForm.dfm ├── TemplateForm.pas ├── Threaded.dfm ├── Threaded.pas ├── TimerForm.dfm ├── TimerForm.pas ├── TreeViewForm.dfm ├── TreeViewForm.pas ├── __history │ ├── Features.dpr.~1~ │ ├── MenuFrame.dfm.~1~ │ ├── MenuFrame.dfm.~2~ │ └── MenuFrame.pas.~1~ ├── map.bmp ├── parrothv3.png ├── pdfDemoForm.dfm ├── pdfDemoForm.pas ├── templates │ ├── formSubTemplates1.html │ ├── formSubTemplates2.html │ ├── formTemplate.html │ ├── regionSubTemplates1.html │ └── regionSubTemplates2.html └── wwwroot │ ├── Downloads │ ├── FILE0003.zip │ ├── RoadKill.zip │ ├── VisitingFriendsKB.zip │ ├── bombtech.zip │ ├── donutcops.zip │ ├── dvdshrink32setup.zip │ ├── easter.zip │ ├── fake_watches_mic.zip │ ├── multicast.pdf │ ├── radarthis.zip │ ├── school.zip │ ├── signs24.zip │ ├── support.zip │ └── wazoo.zip │ └── Files │ ├── Cover Page.pdf │ ├── FILE0003.zip │ ├── Features.css │ ├── Features.txt │ ├── Features2.css │ ├── IWActiveX.cab │ ├── Installation.pdf │ ├── PacText.class │ ├── RoadKill.zip │ ├── VisitingFriendsKB.zip │ ├── atozedlogo.gif │ ├── azweb.css │ ├── bnext32.JPG │ ├── bombtech.zip │ ├── bprev32.JPG │ ├── donutcops.jpg │ ├── donutcops.zip │ ├── dots2.gif │ ├── easter.zip │ ├── fake_watches_mic.zip │ ├── go3.gif │ ├── intraweb.swf │ ├── iw.mov │ ├── iw.mpeg │ ├── multicast.pdf │ ├── radarthis.zip │ ├── school.zip │ ├── signs24.zip │ ├── support.jpg │ ├── support.zip │ ├── today.png │ └── wazoo.zip ├── FileUploader ├── FileUploaderDemo.dpr ├── FileUploaderDemo.dproj ├── FileUploaderDemo.identcache ├── FileUploaderDemo.res ├── FileUploaderDemoISAPI.dpr ├── FileUploaderDemoISAPI.dproj ├── FileUploaderDemoISAPI.res ├── ServerController.dfm ├── ServerController.pas ├── Unit7.dfm ├── Unit7.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── FileUploaderDB ├── IWFileUploaderDB.dpr ├── IWFileUploaderDB.dproj ├── IWFileUploaderDB.identcache ├── IWFileUploaderDB.res ├── ServerController.dfm ├── ServerController.pas ├── Unit51.dfm ├── Unit51.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── FishFact ├── Fishfact.dpr ├── Fishfact.dproj ├── Fishfact.res ├── Fishfact_Icon.ico ├── Main.dfm ├── Main.pas ├── ServerController.dfm ├── ServerController.pas └── biolife.cds ├── FrameInheritanceDemo ├── FrameInheritanceDemo.dpr ├── FrameInheritanceDemo.dproj ├── FrameInheritanceDemo.res ├── ServerController.dfm ├── ServerController.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── uChildFrame1.dfm ├── uChildFrame1.pas ├── uMainForm.dfm ├── uMainForm.pas ├── uParentFrame.dfm └── uParentFrame.pas ├── GoogleSearchDemo ├── GoogleSearchDemo.dpr ├── GoogleSearchDemo.dproj ├── GoogleSearchDemo.res ├── IW.ContentBot.pas ├── IW.ContentBot2.pas ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── wwwroot │ └── bot2.html ├── GradButton ├── GradButton.dpr ├── GradButton.dproj ├── GradButton.res ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Guess ├── Guess12.res ├── GuessDLL.dpr ├── GuessDLL.dproj ├── GuessDLL.res ├── GuessDLL_Icon.ico ├── GuessISAPI.dpr ├── GuessISAPI.dproj ├── GuessISAPI.res ├── GuessLib.dpr ├── GuessLib.dproj ├── GuessLib.res ├── GuessSA.dpr ├── GuessSA.dproj ├── GuessSA.res ├── Guess_Icon.ico ├── Main.dfm ├── Main.pas ├── ServerController.dfm └── ServerController.pas ├── HandleSessionTimeout ├── HandleSessionTimeout.dpr ├── HandleSessionTimeout.dproj ├── HandleSessionTimeout.res ├── ServerController.dfm ├── ServerController.pas ├── Unit20.dfm ├── Unit20.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ISAPIRunProcess ├── ConsoleApp.dpr ├── ConsoleApp.dproj ├── ConsoleApp.res ├── ISAPIRunProcess.dpr ├── ISAPIRunProcess.dproj ├── ISAPIRunProcess.res ├── ISAPI_run_process.groupproj ├── ServerController.dfm ├── ServerController.pas ├── Unit45.dfm ├── Unit45.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── IWAudio ├── DatamoduleUnit.dfm ├── DatamoduleUnit.pas ├── IWAudio.dpr ├── IWAudio.dproj ├── IWAudio.res ├── ServerController.dfm ├── ServerController.pas ├── Unit5.dfm ├── Unit5.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── wwwroot │ ├── Eclipse_sample.mp3 │ └── Eclipse_sample.ogg ├── IWComboTest ├── IWComboTest.dpr ├── IWComboTest.dproj ├── IWComboTest.identcache ├── IWComboTest.res ├── ServerController.dfm ├── ServerController.pas ├── Unit69.dfm ├── Unit69.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── IWMemoScroll ├── IWMemoScroll.dpr ├── IWMemoScroll.dproj ├── IWMemoScroll.res ├── ServerController.dfm ├── ServerController.pas ├── Unit43.dfm ├── Unit43.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── IWMonitor-SessionNotification ├── IWMonitor_SessionNotification.dpr ├── IWMonitor_SessionNotification.dproj ├── IWMonitor_SessionNotification.res ├── ServerController.dfm ├── ServerController.pas ├── Unit18.dfm ├── Unit18.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── IWMonitor2 ├── IWMonitor2Demo.dpr ├── IWMonitor2Demo.dproj ├── IWMonitor2Demo.identcache ├── IWMonitor2Demo.res ├── ServerController.dfm ├── ServerController.pas ├── Unit18.dfm ├── Unit18.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── templates │ └── MainTemplate.html ├── uWorkerThread.pas └── wwwroot │ └── colors.css ├── IWProgress ├── IWProgressIndicator.dpr ├── IWProgressIndicator.dproj ├── IWProgressIndicator.res ├── ServerController.dfm ├── ServerController.pas ├── Unit18.dfm ├── Unit18.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── uWorkerThread.pas ├── InternalFiles ├── InternalFiles.dpr ├── InternalFiles.dproj ├── InternalFiles.res ├── ServerController.dfm ├── ServerController.pas ├── Unit3.dfm ├── Unit3.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── JavaScript ├── JavaScript.dpr ├── JavaScript.dproj ├── JavaScript.res ├── JavaScript_Icon.ico ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── JavaScriptSelect2 ├── JavaScriptSelect2.dpr ├── JavaScriptSelect2.dproj ├── JavaScriptSelect2.res ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── templates │ └── Unit1.html ├── JavaScriptTimer ├── JavaScriptTimer.dpr ├── JavaScriptTimer.dproj ├── JavaScriptTimer.res ├── ServerController.dfm ├── ServerController.pas ├── Unit25.dfm ├── Unit25.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Mailgun ├── Mailgun indy │ ├── MailGun.dpr │ ├── MailGun.dproj │ ├── MailGun.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── templates │ │ ├── IWForm1.html │ │ └── MasterTemplate.html └── Mailgun rest │ ├── MailGun.dpr │ ├── MailGun.dproj │ ├── MailGun.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ └── templates │ ├── IWForm1.html │ └── MasterTemplate.html ├── ModalWindow ├── ModalWindow.dpr ├── ModalWindow.dproj ├── ModalWindow.identcache ├── ModalWindow.res ├── ServerController.dfm ├── ServerController.pas ├── Unit60.dfm ├── Unit60.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── wwwroot │ ├── img.jpg │ └── sample.pdf ├── NewDialogs ├── NewDialogs.dpr ├── NewDialogs.dproj ├── NewDialogs.identcache ├── NewDialogs.res ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── NewWindowDemo ├── NewWindowDemo.dpr ├── NewWindowDemo.dproj ├── NewWindowDemo.res ├── ServerController.dfm ├── ServerController.pas ├── Unit17.dfm ├── Unit17.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas └── wwwroot │ └── Cover Page.pdf ├── PopupBlocker ├── PopupBlocker.dpr ├── PopupBlocker.dproj ├── PopupBlocker.res ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── PostDataDemo ├── How to simulate a request using Firefox Poster addon.png ├── IW.Content.XML.pas ├── PostDataDemo.dpr ├── PostDataDemo.dproj ├── PostDataDemo.res ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── PrivateDataDir ├── PrivateDataDir.dpr ├── PrivateDataDir.dproj ├── PrivateDataDir.res ├── ServerController.dfm ├── ServerController.pas ├── Unit56.dfm ├── Unit56.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── ProgressBar ├── ProgressTest.dpr ├── ProgressTest.dproj ├── ProgressTest.identcache ├── ProgressTest.res ├── ProgressTest_Icon.ico ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── RegionTemplate ├── RegionTemplate.dpr ├── RegionTemplate.dproj ├── RegionTemplate.res ├── ServerController.dfm ├── ServerController.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── uMainForm.dfm └── uMainForm.pas ├── SSL_CustomIOHandler ├── CustomIOHandler.dpr ├── CustomIOHandler.dproj ├── CustomIOHandler.identcache ├── CustomIOHandler.res ├── ServerController.dfm ├── ServerController.pas ├── Unit3.dfm ├── Unit3.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── cert.pem ├── key.pem ├── root.pem └── uCustomIOHandler.pas ├── ScreenCursorPosition ├── ScreenCursorPosition.dpr ├── ScreenCursorPosition.dproj ├── ScreenCursorPosition.res ├── ServerController.dfm ├── ServerController.pas ├── Unit44.dfm ├── Unit44.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── SessionCountDown ├── ServerController.dfm ├── ServerController.pas ├── SessionCountDown.dpr ├── SessionCountDown.dproj ├── SessionCountDown.res ├── Unit44.dfm ├── Unit44.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── SessionList ├── ServerController.dfm ├── ServerController.pas ├── SessionList.dpr ├── SessionList.dproj ├── SessionList.res ├── Unit32.dfm ├── Unit32.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── ufrmServiceDebug.dfm └── ufrmServiceDebug.pas ├── StandAloneSSL ├── Files │ └── padlock.jpg ├── Main.dfm ├── Main.pas ├── NonSecureForm.dfm ├── NonSecureForm.pas ├── SSLReport.png ├── SecureForm.dfm ├── SecureForm.pas ├── ServerController.dfm ├── ServerController.pas ├── StandAloneSSL.dpr ├── StandAloneSSL.dproj ├── StandAloneSSL.res ├── StandAloneSSL_Icon.ico ├── cert.pem ├── key.pem ├── root.pem └── wwwroot │ ├── tada.wav │ └── test.txt ├── TChart ├── ServerController.dfm ├── ServerController.pas ├── TChartDemo.dpr ├── TChartDemo.dproj ├── TChartDemo.res ├── TChartISAPI │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TChartISAPI.dpr │ ├── TChartISAPI.dproj │ ├── TChartISAPI.res │ ├── Unit49.dfm │ ├── Unit49.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── Template Demos ├── Phonetics Customer Profiler │ ├── CallingPlan.dfm │ ├── CallingPlan.pas │ ├── Discount.dfm │ ├── Discount.pas │ ├── Main.dfm │ ├── Main.pas │ ├── PCP.bdsproj │ ├── PCP.dpr │ ├── PCP.dproj │ ├── PCP.identcache │ ├── PCP.res │ ├── PCP_Icon.ico │ ├── Proposal.dfm │ ├── Proposal.pas │ ├── Question1.dfm │ ├── Question1.pas │ ├── Question2.dfm │ ├── Question2.pas │ ├── Question3.dfm │ ├── Question3.pas │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Templates │ │ ├── formCallingPlan.html │ │ ├── formDiscount.html │ │ ├── formMain.html │ │ ├── formProposal.html │ │ ├── formQuestion1.html │ │ ├── formQuestion2.html │ │ ├── formQuestion3.html │ │ └── masterTemplate.html │ └── wwwroot │ │ ├── Link_Back.jpg │ │ ├── OnPhone.jpg │ │ ├── Phonetiks.gif │ │ ├── background.gif │ │ ├── ballet_arro.gif │ │ ├── ballet_dot.gif │ │ ├── bg.gif │ │ ├── hr.gif │ │ ├── line.gif │ │ ├── link_home.gif │ │ ├── link_top.gif │ │ ├── mod_temp3_02.gif │ │ ├── mod_temp3_03.gif │ │ ├── mod_temp3_05.gif │ │ ├── mod_temp3_06.gif │ │ ├── mod_temp3_07.gif │ │ ├── pic_Auto.jpg │ │ ├── spacer.gif │ │ ├── your_logo.gif │ │ ├── your_logo2.gif │ │ └── your_logo3.gif └── Template Unicode │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── TemplateUnicode.dpr │ ├── TemplateUnicode.dproj │ ├── TemplateUnicode.identcache │ ├── TemplateUnicode.res │ ├── TemplateUnicodeISAPI.dpr │ ├── TemplateUnicodeISAPI.dproj │ ├── TemplateUnicodeISAPI.res │ ├── TemplateUnicode_Icon.ico │ ├── Unit1.dfm │ ├── Unit1.pas │ ├── Unit1.vlb │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── templates │ └── MainTemplate.html │ └── wwwroot │ └── áéíóúàèìòùãõ.dat ├── UserNotifications ├── ServerController.dfm ├── ServerController.pas ├── Unit2.dfm ├── Unit2.pas ├── Unit3.dfm ├── Unit3.pas ├── UserNotifications.dpr ├── UserNotifications.dproj ├── UserNotifications.res ├── UserSessionUnit.dfm └── UserSessionUnit.pas ├── WoffDemo ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── WoffDemo.dpr ├── WoffDemo.dproj ├── WoffDemo.res └── wwwroot │ ├── CustomFonts.css │ └── GoodDog.woff ├── Working with Cache ├── DownloadFromCache │ ├── DownloadFromCache.dpr │ ├── DownloadFromCache.dproj │ ├── DownloadFromCache.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit23.dfm │ ├── Unit23.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── FormCache │ ├── AudioFiles.bat │ ├── AudioFiles.rc │ ├── AudioFiles.res │ ├── Eclipse_sample.mp3 │ ├── Eclipse_sample.ogg │ ├── FormCache.dpr │ ├── FormCache.dproj │ ├── FormCache.identcache │ ├── FormCache.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit4.dfm │ ├── Unit4.pas │ ├── UserSessionUnit.dfm │ └── UserSessionUnit.pas ├── OneTimeCache │ ├── OneTimeCache.dpr │ ├── OneTimeCache.dproj │ ├── OneTimeCache.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── Unit5.dfm │ ├── Unit5.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── sample.pdf │ └── web1.jpg ├── SessionCache │ ├── Build_resources.bat │ ├── CacheFiles.rc │ ├── CacheFiles.res │ ├── ServerController.dfm │ ├── ServerController.pas │ ├── SessionCache.dpr │ ├── SessionCache.dproj │ ├── SessionCache.res │ ├── Unit2.dfm │ ├── Unit2.pas │ ├── Unit3.dfm │ ├── Unit3.pas │ ├── UserSessionUnit.dfm │ ├── UserSessionUnit.pas │ ├── web1.jpg │ └── web2.jpg └── WorkingWithCache.groupproj ├── XML ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── XMLDemo.dpr ├── XMLDemo.dproj ├── XMLDemo.res └── wwwroot │ ├── mystylesheet.xsl │ └── myxml.xml └── jQueryDatePicker ├── ServerController.dfm ├── ServerController.pas ├── Unit1.dfm ├── Unit1.pas ├── UserSessionUnit.dfm ├── UserSessionUnit.pas ├── jQueryDatePicker.dpr ├── jQueryDatePicker.dproj ├── jQueryDatePicker.identcache ├── jQueryDatePicker.res └── wwwroot ├── cupertino ├── images │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ ├── ui-bg_glass_50_3baae3_1x400.png │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ ├── ui-icons_2694e8_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_3d80b3_256x240.png │ ├── ui-icons_72a7cf_256x240.png │ └── ui-icons_ffffff_256x240.png ├── jquery-ui-1.10.0.custom.css └── jquery-ui-1.10.0.custom.min.css └── jquery-ui-1.10.0.custom.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /15/C++/BrowserSizes/Unit1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/BrowserSizes/Unit1.cpp -------------------------------------------------------------------------------- /15/C++/BrowserSizes/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/BrowserSizes/Unit1.dfm -------------------------------------------------------------------------------- /15/C++/BrowserSizes/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/BrowserSizes/Unit1.h -------------------------------------------------------------------------------- /15/C++/Cache/OneTimeCache/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/Cache/OneTimeCache/Unit1.h -------------------------------------------------------------------------------- /15/C++/DemoCPP_FastMM4/Unit1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/DemoCPP_FastMM4/Unit1.cpp -------------------------------------------------------------------------------- /15/C++/DemoCPP_FastMM4/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/DemoCPP_FastMM4/Unit1.dfm -------------------------------------------------------------------------------- /15/C++/DemoCPP_FastMM4/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/DemoCPP_FastMM4/Unit1.h -------------------------------------------------------------------------------- /15/C++/IWGrid/IWGrid.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/IWGrid.cbproj -------------------------------------------------------------------------------- /15/C++/IWGrid/IWGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/IWGrid.cpp -------------------------------------------------------------------------------- /15/C++/IWGrid/ServerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/ServerController.h -------------------------------------------------------------------------------- /15/C++/IWGrid/Unit1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/Unit1.cpp -------------------------------------------------------------------------------- /15/C++/IWGrid/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/Unit1.dfm -------------------------------------------------------------------------------- /15/C++/IWGrid/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/Unit1.h -------------------------------------------------------------------------------- /15/C++/IWGrid/UserSessionUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/UserSessionUnit.cpp -------------------------------------------------------------------------------- /15/C++/IWGrid/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/UserSessionUnit.dfm -------------------------------------------------------------------------------- /15/C++/IWGrid/UserSessionUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/C++/IWGrid/UserSessionUnit.h -------------------------------------------------------------------------------- /15/Delphi/AsyncConfirm/Unit69.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/AsyncConfirm/Unit69.dfm -------------------------------------------------------------------------------- /15/Delphi/AsyncConfirm/Unit69.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/AsyncConfirm/Unit69.pas -------------------------------------------------------------------------------- /15/Delphi/AsyncRender/Unit16.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/AsyncRender/Unit16.dfm -------------------------------------------------------------------------------- /15/Delphi/AsyncRender/Unit16.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/AsyncRender/Unit16.pas -------------------------------------------------------------------------------- /15/Delphi/BrowserCaps/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/BrowserCaps/Unit1.dfm -------------------------------------------------------------------------------- /15/Delphi/BrowserCaps/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/BrowserCaps/Unit1.pas -------------------------------------------------------------------------------- /15/Delphi/BrowserSize/Unit46.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/BrowserSize/Unit46.dfm -------------------------------------------------------------------------------- /15/Delphi/BrowserSize/Unit46.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/BrowserSize/Unit46.pas -------------------------------------------------------------------------------- /15/Delphi/ChartJS/ChartJS.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS/ChartJS.dpr -------------------------------------------------------------------------------- /15/Delphi/ChartJS/ChartJS.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS/ChartJS.dproj -------------------------------------------------------------------------------- /15/Delphi/ChartJS/ChartJS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS/ChartJS.res -------------------------------------------------------------------------------- /15/Delphi/ChartJS/Unit25.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS/Unit25.dfm -------------------------------------------------------------------------------- /15/Delphi/ChartJS/Unit25.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS/Unit25.pas -------------------------------------------------------------------------------- /15/Delphi/ChartJS2/ChartJS2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS2/ChartJS2.dpr -------------------------------------------------------------------------------- /15/Delphi/ChartJS2/ChartJS2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS2/ChartJS2.dproj -------------------------------------------------------------------------------- /15/Delphi/ChartJS2/ChartJS2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS2/ChartJS2.res -------------------------------------------------------------------------------- /15/Delphi/ChartJS2/Unit25.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS2/Unit25.dfm -------------------------------------------------------------------------------- /15/Delphi/ChartJS2/Unit25.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ChartJS2/Unit25.pas -------------------------------------------------------------------------------- /15/Delphi/CheckBoxes/Unit4.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/CheckBoxes/Unit4.dfm -------------------------------------------------------------------------------- /15/Delphi/CheckBoxes/Unit4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/CheckBoxes/Unit4.pas -------------------------------------------------------------------------------- /15/Delphi/ComboBoxes/Unit6.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ComboBoxes/Unit6.dfm -------------------------------------------------------------------------------- /15/Delphi/ComboBoxes/Unit6.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ComboBoxes/Unit6.pas -------------------------------------------------------------------------------- /15/Delphi/Cookies/Cookies.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Cookies/Cookies.dpr -------------------------------------------------------------------------------- /15/Delphi/Cookies/Cookies.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Cookies/Cookies.dproj -------------------------------------------------------------------------------- /15/Delphi/Cookies/Cookies.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Cookies/Cookies.res -------------------------------------------------------------------------------- /15/Delphi/Cookies/Unit55.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Cookies/Unit55.dfm -------------------------------------------------------------------------------- /15/Delphi/Cookies/Unit55.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Cookies/Unit55.pas -------------------------------------------------------------------------------- /15/Delphi/DynMainForm/uForm1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/DynMainForm/uForm1.dfm -------------------------------------------------------------------------------- /15/Delphi/DynMainForm/uForm1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/DynMainForm/uForm1.pas -------------------------------------------------------------------------------- /15/Delphi/DynMainForm/uForm2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/DynMainForm/uForm2.dfm -------------------------------------------------------------------------------- /15/Delphi/DynMainForm/uForm2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/DynMainForm/uForm2.pas -------------------------------------------------------------------------------- /15/Delphi/GPS/GPS.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/GPS.dpr -------------------------------------------------------------------------------- /15/Delphi/GPS/GPS.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/GPS.dproj -------------------------------------------------------------------------------- /15/Delphi/GPS/GPS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/GPS.res -------------------------------------------------------------------------------- /15/Delphi/GPS/Unit44.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/Unit44.dfm -------------------------------------------------------------------------------- /15/Delphi/GPS/Unit44.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/Unit44.pas -------------------------------------------------------------------------------- /15/Delphi/GPS/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/UserSessionUnit.dfm -------------------------------------------------------------------------------- /15/Delphi/GPS/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GPS/UserSessionUnit.pas -------------------------------------------------------------------------------- /15/Delphi/GridControls/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GridControls/Unit1.dfm -------------------------------------------------------------------------------- /15/Delphi/GridControls/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/GridControls/Unit1.pas -------------------------------------------------------------------------------- /15/Delphi/IWLocker/Unit40.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWLocker/Unit40.dfm -------------------------------------------------------------------------------- /15/Delphi/IWLocker/Unit40.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWLocker/Unit40.pas -------------------------------------------------------------------------------- /15/Delphi/IWMonitor2/Unit18.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWMonitor2/Unit18.dfm -------------------------------------------------------------------------------- /15/Delphi/IWMonitor2/Unit18.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWMonitor2/Unit18.pas -------------------------------------------------------------------------------- /15/Delphi/IWSelect/IWSelect.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWSelect/IWSelect.dpr -------------------------------------------------------------------------------- /15/Delphi/IWSelect/IWSelect.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWSelect/IWSelect.dproj -------------------------------------------------------------------------------- /15/Delphi/IWSelect/IWSelect.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWSelect/IWSelect.res -------------------------------------------------------------------------------- /15/Delphi/IWSelect/Unit71.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWSelect/Unit71.dfm -------------------------------------------------------------------------------- /15/Delphi/IWSelect/Unit71.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWSelect/Unit71.pas -------------------------------------------------------------------------------- /15/Delphi/IWVideo/IWVideo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWVideo/IWVideo.dpr -------------------------------------------------------------------------------- /15/Delphi/IWVideo/IWVideo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWVideo/IWVideo.dproj -------------------------------------------------------------------------------- /15/Delphi/IWVideo/IWVideo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWVideo/IWVideo.res -------------------------------------------------------------------------------- /15/Delphi/IWVideo/Unit33.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWVideo/Unit33.dfm -------------------------------------------------------------------------------- /15/Delphi/IWVideo/Unit33.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IWVideo/Unit33.pas -------------------------------------------------------------------------------- /15/Delphi/ImageButtons/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ImageButtons/Unit2.dfm -------------------------------------------------------------------------------- /15/Delphi/ImageButtons/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ImageButtons/Unit2.pas -------------------------------------------------------------------------------- /15/Delphi/ImageLoader/Unit41.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ImageLoader/Unit41.dfm -------------------------------------------------------------------------------- /15/Delphi/ImageLoader/Unit41.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ImageLoader/Unit41.pas -------------------------------------------------------------------------------- /15/Delphi/IndyHttpsDemo/Unit9.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IndyHttpsDemo/Unit9.dfm -------------------------------------------------------------------------------- /15/Delphi/IndyHttpsDemo/Unit9.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/IndyHttpsDemo/Unit9.pas -------------------------------------------------------------------------------- /15/Delphi/MemoUpload/Unit9.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MemoUpload/Unit9.dfm -------------------------------------------------------------------------------- /15/Delphi/MemoUpload/Unit9.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MemoUpload/Unit9.pas -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit1.dfm -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit1.pas -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit2.dfm -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit2.pas -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit3.dfm -------------------------------------------------------------------------------- /15/Delphi/MultiPageApp/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/MultiPageApp/Unit3.pas -------------------------------------------------------------------------------- /15/Delphi/NewCallback/Unit45.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/NewCallback/Unit45.dfm -------------------------------------------------------------------------------- /15/Delphi/NewCallback/Unit45.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/NewCallback/Unit45.pas -------------------------------------------------------------------------------- /15/Delphi/NewInputTypes/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/NewInputTypes/Unit1.dfm -------------------------------------------------------------------------------- /15/Delphi/NewInputTypes/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/NewInputTypes/Unit1.pas -------------------------------------------------------------------------------- /15/Delphi/OAuth/IWOAuthDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/IWOAuthDemo.dpr -------------------------------------------------------------------------------- /15/Delphi/OAuth/IWOAuthDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/IWOAuthDemo.dproj -------------------------------------------------------------------------------- /15/Delphi/OAuth/IWOAuthDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/IWOAuthDemo.res -------------------------------------------------------------------------------- /15/Delphi/OAuth/uLoginForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/uLoginForm.dfm -------------------------------------------------------------------------------- /15/Delphi/OAuth/uLoginForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/uLoginForm.pas -------------------------------------------------------------------------------- /15/Delphi/OAuth/uMainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/uMainForm.dfm -------------------------------------------------------------------------------- /15/Delphi/OAuth/uMainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/OAuth/uMainForm.pas -------------------------------------------------------------------------------- /15/Delphi/PostDataDemo/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/PostDataDemo/Unit2.dfm -------------------------------------------------------------------------------- /15/Delphi/PostDataDemo/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/PostDataDemo/Unit2.pas -------------------------------------------------------------------------------- /15/Delphi/Recaptcha/Recaptcha.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Recaptcha/Recaptcha.dpr -------------------------------------------------------------------------------- /15/Delphi/Recaptcha/Recaptcha.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Recaptcha/Recaptcha.res -------------------------------------------------------------------------------- /15/Delphi/Recaptcha/Unit32.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Recaptcha/Unit32.dfm -------------------------------------------------------------------------------- /15/Delphi/Recaptcha/Unit32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Recaptcha/Unit32.pas -------------------------------------------------------------------------------- /15/Delphi/RegionScroll/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/RegionScroll/Unit3.dfm -------------------------------------------------------------------------------- /15/Delphi/RegionScroll/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/RegionScroll/Unit3.pas -------------------------------------------------------------------------------- /15/Delphi/ReportBuilder/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ReportBuilder/Unit1.dfm -------------------------------------------------------------------------------- /15/Delphi/ReportBuilder/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ReportBuilder/Unit1.pas -------------------------------------------------------------------------------- /15/Delphi/ReportBuilder/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ReportBuilder/Unit2.dfm -------------------------------------------------------------------------------- /15/Delphi/ReportBuilder/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/ReportBuilder/Unit2.pas -------------------------------------------------------------------------------- /15/Delphi/SendFileDemo/Unit22.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/SendFileDemo/Unit22.dfm -------------------------------------------------------------------------------- /15/Delphi/SendFileDemo/Unit22.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/SendFileDemo/Unit22.pas -------------------------------------------------------------------------------- /15/Delphi/TimedTask/Unit45.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/TimedTask/Unit45.dfm -------------------------------------------------------------------------------- /15/Delphi/TimedTask/Unit45.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/TimedTask/Unit45.pas -------------------------------------------------------------------------------- /15/Delphi/Toast/Toast.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Toast/Toast.dpr -------------------------------------------------------------------------------- /15/Delphi/Toast/Toast.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Toast/Toast.dproj -------------------------------------------------------------------------------- /15/Delphi/Toast/Toast.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Toast/Toast.res -------------------------------------------------------------------------------- /15/Delphi/Toast/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Toast/Unit3.dfm -------------------------------------------------------------------------------- /15/Delphi/Toast/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/Toast/Unit3.pas -------------------------------------------------------------------------------- /15/Delphi/WebCam/Unit11.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebCam/Unit11.dfm -------------------------------------------------------------------------------- /15/Delphi/WebCam/Unit11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebCam/Unit11.pas -------------------------------------------------------------------------------- /15/Delphi/WebCam/WebCam.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebCam/WebCam.dpr -------------------------------------------------------------------------------- /15/Delphi/WebCam/WebCam.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebCam/WebCam.dproj -------------------------------------------------------------------------------- /15/Delphi/WebCam/WebCam.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebCam/WebCam.res -------------------------------------------------------------------------------- /15/Delphi/WebHook/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/WebHook/Readme.txt -------------------------------------------------------------------------------- /15/Delphi/jQGrid/jQGrid.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/jQGrid.dpr -------------------------------------------------------------------------------- /15/Delphi/jQGrid/jQGrid.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/jQGrid.dproj -------------------------------------------------------------------------------- /15/Delphi/jQGrid/jQGrid.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/jQGrid.res -------------------------------------------------------------------------------- /15/Delphi/jQGrid/uGridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/uGridForm.dfm -------------------------------------------------------------------------------- /15/Delphi/jQGrid/uGridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/uGridForm.pas -------------------------------------------------------------------------------- /15/Delphi/jQGrid/uMainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/uMainForm.dfm -------------------------------------------------------------------------------- /15/Delphi/jQGrid/uMainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/15/Delphi/jQGrid/uMainForm.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/README.md -------------------------------------------------------------------------------- /X/AtozedWireless/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/AtozedWireless/MainForm.dfm -------------------------------------------------------------------------------- /X/AtozedWireless/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/AtozedWireless/MainForm.pas -------------------------------------------------------------------------------- /X/BackButton/BackButton.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/BackButton.bdsproj -------------------------------------------------------------------------------- /X/BackButton/BackButton.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/BackButton.dpr -------------------------------------------------------------------------------- /X/BackButton/BackButton.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/BackButton.drc -------------------------------------------------------------------------------- /X/BackButton/BackButton.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/BackButton.res -------------------------------------------------------------------------------- /X/BackButton/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Main.dfm -------------------------------------------------------------------------------- /X/BackButton/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Main.pas -------------------------------------------------------------------------------- /X/BackButton/Second.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Second.dfm -------------------------------------------------------------------------------- /X/BackButton/Second.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Second.pas -------------------------------------------------------------------------------- /X/BackButton/Third.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Third.dfm -------------------------------------------------------------------------------- /X/BackButton/Third.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/BackButton/Third.pas -------------------------------------------------------------------------------- /X/CityLookup/Cities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/Cities.xml -------------------------------------------------------------------------------- /X/CityLookup/CitiesCDS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/CitiesCDS.xml -------------------------------------------------------------------------------- /X/CityLookup/CitiesCDSData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/CitiesCDSData.xml -------------------------------------------------------------------------------- /X/CityLookup/CityLookup.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/CityLookup.bdsproj -------------------------------------------------------------------------------- /X/CityLookup/CityLookup.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/CityLookup.dpr -------------------------------------------------------------------------------- /X/CityLookup/CityLookup.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/CityLookup.dproj -------------------------------------------------------------------------------- /X/CityLookup/MainFormU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/MainFormU.dfm -------------------------------------------------------------------------------- /X/CityLookup/MainFormU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/MainFormU.pas -------------------------------------------------------------------------------- /X/CityLookup/files/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CityLookup/files/styles.css -------------------------------------------------------------------------------- /X/CustomStandAlone/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CustomStandAlone/Main.dfm -------------------------------------------------------------------------------- /X/CustomStandAlone/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/CustomStandAlone/Main.pas -------------------------------------------------------------------------------- /X/DieFlyDie/Database/cart.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/cart.DAT -------------------------------------------------------------------------------- /X/DieFlyDie/Database/cart.DBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/cart.DBK -------------------------------------------------------------------------------- /X/DieFlyDie/Database/cart.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/cart.IBK -------------------------------------------------------------------------------- /X/DieFlyDie/Database/cart.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/cart.IDX -------------------------------------------------------------------------------- /X/DieFlyDie/Database/orders.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/orders.DAT -------------------------------------------------------------------------------- /X/DieFlyDie/Database/orders.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/orders.IDX -------------------------------------------------------------------------------- /X/DieFlyDie/Database/users.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/users.DAT -------------------------------------------------------------------------------- /X/DieFlyDie/Database/users.DBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/users.DBK -------------------------------------------------------------------------------- /X/DieFlyDie/Database/users.IBK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/users.IBK -------------------------------------------------------------------------------- /X/DieFlyDie/Database/users.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Database/users.IDX -------------------------------------------------------------------------------- /X/DieFlyDie/DieFlyDie.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/DieFlyDie.bdsproj -------------------------------------------------------------------------------- /X/DieFlyDie/DieFlyDie.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/DieFlyDie.dpr -------------------------------------------------------------------------------- /X/DieFlyDie/Files/ISFLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/ISFLogin.html -------------------------------------------------------------------------------- /X/DieFlyDie/Files/ISFMain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/ISFMain.html -------------------------------------------------------------------------------- /X/DieFlyDie/Files/account.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/account.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/azsm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/azsm.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/aztext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/aztext.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/cart.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/funforall.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/funforall.GIF -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000001.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000001.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000002.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000002.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000003.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000003.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000004.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000004.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000005.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000005.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000006.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000006.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/p000007.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/p000007.JPG -------------------------------------------------------------------------------- /X/DieFlyDie/Files/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/search.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/services.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/services.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/sign_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/sign_in.gif -------------------------------------------------------------------------------- /X/DieFlyDie/Files/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/Files/styles.css -------------------------------------------------------------------------------- /X/DieFlyDie/dmDieFlyDie.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/dmDieFlyDie.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/dmDieFlyDie.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/dmDieFlyDie.pas -------------------------------------------------------------------------------- /X/DieFlyDie/frProductTree.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/frProductTree.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/frProductTree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/frProductTree.pas -------------------------------------------------------------------------------- /X/DieFlyDie/frTopBar.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/frTopBar.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/frTopBar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/frTopBar.pas -------------------------------------------------------------------------------- /X/DieFlyDie/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/readme.txt -------------------------------------------------------------------------------- /X/DieFlyDie/uAddReview.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uAddReview.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uAddReview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uAddReview.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uCheckOut.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uCheckOut.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uCheckOut.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uCheckOut.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uConstants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uConstants.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uDBInterface.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uDBInterface.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uDisplayProduct.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uDisplayProduct.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uDisplayProduct.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uDisplayProduct.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uFinalize.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uFinalize.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uFinalize.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uFinalize.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uLogin.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uLogin.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uLogin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uLogin.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uMain.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uMain.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uOrderDetails.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uOrderDetails.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uOrderDetails.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uOrderDetails.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uOrderHistory.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uOrderHistory.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uOrderHistory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uOrderHistory.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uRegister.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uRegister.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uRegister.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uRegister.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uSearch.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uSearch.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uSearch.pas -------------------------------------------------------------------------------- /X/DieFlyDie/uShoppingCart.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uShoppingCart.dfm -------------------------------------------------------------------------------- /X/DieFlyDie/uShoppingCart.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/DieFlyDie/uShoppingCart.pas -------------------------------------------------------------------------------- /X/Eliza/EZBillClinton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZBillClinton.pas -------------------------------------------------------------------------------- /X/Eliza/EZEliza.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZEliza.pas -------------------------------------------------------------------------------- /X/Eliza/EZEngine.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZEngine.pas -------------------------------------------------------------------------------- /X/Eliza/EZIFM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZIFM.pas -------------------------------------------------------------------------------- /X/Eliza/EZMSTechSupport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZMSTechSupport.pas -------------------------------------------------------------------------------- /X/Eliza/EZPersonality.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/EZPersonality.pas -------------------------------------------------------------------------------- /X/Eliza/Eliza.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Eliza.bdsproj -------------------------------------------------------------------------------- /X/Eliza/Eliza.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Eliza.dpr -------------------------------------------------------------------------------- /X/Eliza/Files/Bill Clinton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Files/Bill Clinton.jpg -------------------------------------------------------------------------------- /X/Eliza/Files/Eliza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Files/Eliza.jpg -------------------------------------------------------------------------------- /X/Eliza/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Main.dfm -------------------------------------------------------------------------------- /X/Eliza/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Main.pas -------------------------------------------------------------------------------- /X/Eliza/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/ServerController.dfm -------------------------------------------------------------------------------- /X/Eliza/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/ServerController.pas -------------------------------------------------------------------------------- /X/Eliza/Talk.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Talk.dfm -------------------------------------------------------------------------------- /X/Eliza/Talk.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Eliza/Talk.pas -------------------------------------------------------------------------------- /X/EurekaLog/EurekaLog.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/EurekaLog/EurekaLog.bdsproj -------------------------------------------------------------------------------- /X/EurekaLog/EurekaLog.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/EurekaLog/EurekaLog.dpr -------------------------------------------------------------------------------- /X/EurekaLog/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/EurekaLog/MainForm.dfm -------------------------------------------------------------------------------- /X/EurekaLog/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/EurekaLog/MainForm.pas -------------------------------------------------------------------------------- /X/EurekaLog/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/EurekaLog/readme.txt -------------------------------------------------------------------------------- /X/Features/ActiveXForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ActiveXForm.dfm -------------------------------------------------------------------------------- /X/Features/ActiveXForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ActiveXForm.pas -------------------------------------------------------------------------------- /X/Features/AlignAnchorsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/AlignAnchorsForm.dfm -------------------------------------------------------------------------------- /X/Features/AlignAnchorsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/AlignAnchorsForm.pas -------------------------------------------------------------------------------- /X/Features/CalendarForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/CalendarForm.dfm -------------------------------------------------------------------------------- /X/Features/CalendarForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/CalendarForm.pas -------------------------------------------------------------------------------- /X/Features/Cancelar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Cancelar.bmp -------------------------------------------------------------------------------- /X/Features/ChartForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ChartForm.dfm -------------------------------------------------------------------------------- /X/Features/ChartForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ChartForm.pas -------------------------------------------------------------------------------- /X/Features/Combobox.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Combobox.dfm -------------------------------------------------------------------------------- /X/Features/Combobox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Combobox.pas -------------------------------------------------------------------------------- /X/Features/ContentWindow.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ContentWindow.dfm -------------------------------------------------------------------------------- /X/Features/ContentWindow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ContentWindow.pas -------------------------------------------------------------------------------- /X/Features/DownloadForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/DownloadForm.dfm -------------------------------------------------------------------------------- /X/Features/DownloadForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/DownloadForm.pas -------------------------------------------------------------------------------- /X/Features/Downloads/easter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Downloads/easter.zip -------------------------------------------------------------------------------- /X/Features/Downloads/school.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Downloads/school.zip -------------------------------------------------------------------------------- /X/Features/Downloads/wazoo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Downloads/wazoo.zip -------------------------------------------------------------------------------- /X/Features/DynamicGridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/DynamicGridForm.dfm -------------------------------------------------------------------------------- /X/Features/DynamicGridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/DynamicGridForm.pas -------------------------------------------------------------------------------- /X/Features/EditGridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/EditGridForm.dfm -------------------------------------------------------------------------------- /X/Features/EditGridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/EditGridForm.pas -------------------------------------------------------------------------------- /X/Features/FDatamodule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FDatamodule.dfm -------------------------------------------------------------------------------- /X/Features/FDatamodule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FDatamodule.pas -------------------------------------------------------------------------------- /X/Features/FDatamoduleD5Pro.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FDatamoduleD5Pro.dfm -------------------------------------------------------------------------------- /X/Features/FDatamoduleD5Pro.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FDatamoduleD5Pro.pas -------------------------------------------------------------------------------- /X/Features/Features.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Features.bdsproj -------------------------------------------------------------------------------- /X/Features/Features.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Features.cfg -------------------------------------------------------------------------------- /X/Features/Features.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Features.dpr -------------------------------------------------------------------------------- /X/Features/Features.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Features.dproj -------------------------------------------------------------------------------- /X/Features/FileUploadForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FileUploadForm.dfm -------------------------------------------------------------------------------- /X/Features/FileUploadForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FileUploadForm.pas -------------------------------------------------------------------------------- /X/Features/Files/Cover Page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/Cover Page.pdf -------------------------------------------------------------------------------- /X/Features/Files/FILE0003.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/FILE0003.zip -------------------------------------------------------------------------------- /X/Features/Files/Features.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/Features.css -------------------------------------------------------------------------------- /X/Features/Files/Features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/Features.txt -------------------------------------------------------------------------------- /X/Features/Files/Features2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/Features2.css -------------------------------------------------------------------------------- /X/Features/Files/IWActiveX.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/IWActiveX.cab -------------------------------------------------------------------------------- /X/Features/Files/PacText.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/PacText.class -------------------------------------------------------------------------------- /X/Features/Files/RoadKill.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/RoadKill.zip -------------------------------------------------------------------------------- /X/Features/Files/atozedlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/atozedlogo.gif -------------------------------------------------------------------------------- /X/Features/Files/azweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/azweb.css -------------------------------------------------------------------------------- /X/Features/Files/bnext32.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/bnext32.JPG -------------------------------------------------------------------------------- /X/Features/Files/bombtech.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/bombtech.zip -------------------------------------------------------------------------------- /X/Features/Files/bprev32.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/bprev32.JPG -------------------------------------------------------------------------------- /X/Features/Files/donutcops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/donutcops.jpg -------------------------------------------------------------------------------- /X/Features/Files/donutcops.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/donutcops.zip -------------------------------------------------------------------------------- /X/Features/Files/dots2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/dots2.gif -------------------------------------------------------------------------------- /X/Features/Files/easter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/easter.zip -------------------------------------------------------------------------------- /X/Features/Files/go3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/go3.gif -------------------------------------------------------------------------------- /X/Features/Files/intraweb.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/intraweb.swf -------------------------------------------------------------------------------- /X/Features/Files/iw.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/iw.mov -------------------------------------------------------------------------------- /X/Features/Files/iw.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/iw.mpeg -------------------------------------------------------------------------------- /X/Features/Files/multicast.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/multicast.pdf -------------------------------------------------------------------------------- /X/Features/Files/radarthis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/radarthis.zip -------------------------------------------------------------------------------- /X/Features/Files/school.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/school.zip -------------------------------------------------------------------------------- /X/Features/Files/signs24.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/signs24.zip -------------------------------------------------------------------------------- /X/Features/Files/support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/support.jpg -------------------------------------------------------------------------------- /X/Features/Files/support.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/support.zip -------------------------------------------------------------------------------- /X/Features/Files/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/today.png -------------------------------------------------------------------------------- /X/Features/Files/wazoo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Files/wazoo.zip -------------------------------------------------------------------------------- /X/Features/Flash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Flash.dfm -------------------------------------------------------------------------------- /X/Features/Flash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Flash.pas -------------------------------------------------------------------------------- /X/Features/FlowForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FlowForm.dfm -------------------------------------------------------------------------------- /X/Features/FlowForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/FlowForm.pas -------------------------------------------------------------------------------- /X/Features/Global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Global.pas -------------------------------------------------------------------------------- /X/Features/GridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/GridForm.dfm -------------------------------------------------------------------------------- /X/Features/GridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/GridForm.pas -------------------------------------------------------------------------------- /X/Features/IX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/IX.xml -------------------------------------------------------------------------------- /X/Features/JavaApplet.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/JavaApplet.dfm -------------------------------------------------------------------------------- /X/Features/JavaApplet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/JavaApplet.pas -------------------------------------------------------------------------------- /X/Features/MPEGForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MPEGForm.dfm -------------------------------------------------------------------------------- /X/Features/MPEGForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MPEGForm.pas -------------------------------------------------------------------------------- /X/Features/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Main.dfm -------------------------------------------------------------------------------- /X/Features/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Main.pas -------------------------------------------------------------------------------- /X/Features/MapForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MapForm.dfm -------------------------------------------------------------------------------- /X/Features/MapForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MapForm.pas -------------------------------------------------------------------------------- /X/Features/MenuForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MenuForm.dfm -------------------------------------------------------------------------------- /X/Features/MenuForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MenuForm.pas -------------------------------------------------------------------------------- /X/Features/MenuFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MenuFrame.dfm -------------------------------------------------------------------------------- /X/Features/MenuFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MenuFrame.pas -------------------------------------------------------------------------------- /X/Features/MessageDialogs.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MessageDialogs.dfm -------------------------------------------------------------------------------- /X/Features/MessageDialogs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/MessageDialogs.pas -------------------------------------------------------------------------------- /X/Features/QuickTimeForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/QuickTimeForm.dfm -------------------------------------------------------------------------------- /X/Features/QuickTimeForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/QuickTimeForm.pas -------------------------------------------------------------------------------- /X/Features/RegionForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/RegionForm.dfm -------------------------------------------------------------------------------- /X/Features/RegionForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/RegionForm.pas -------------------------------------------------------------------------------- /X/Features/ResizeForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ResizeForm.dfm -------------------------------------------------------------------------------- /X/Features/ResizeForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ResizeForm.pas -------------------------------------------------------------------------------- /X/Features/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ServerController.dfm -------------------------------------------------------------------------------- /X/Features/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/ServerController.pas -------------------------------------------------------------------------------- /X/Features/Simple.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Simple.dfm -------------------------------------------------------------------------------- /X/Features/Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Simple.pas -------------------------------------------------------------------------------- /X/Features/StyleSheetForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/StyleSheetForm.dfm -------------------------------------------------------------------------------- /X/Features/StyleSheetForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/StyleSheetForm.pas -------------------------------------------------------------------------------- /X/Features/SubTemplatesForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/SubTemplatesForm.dfm -------------------------------------------------------------------------------- /X/Features/SubTemplatesForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/SubTemplatesForm.pas -------------------------------------------------------------------------------- /X/Features/TemplateForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TemplateForm.dfm -------------------------------------------------------------------------------- /X/Features/TemplateForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TemplateForm.pas -------------------------------------------------------------------------------- /X/Features/Threaded.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Threaded.dfm -------------------------------------------------------------------------------- /X/Features/Threaded.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/Threaded.pas -------------------------------------------------------------------------------- /X/Features/TimerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TimerForm.dfm -------------------------------------------------------------------------------- /X/Features/TimerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TimerForm.pas -------------------------------------------------------------------------------- /X/Features/TreeViewForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TreeViewForm.dfm -------------------------------------------------------------------------------- /X/Features/TreeViewForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/TreeViewForm.pas -------------------------------------------------------------------------------- /X/Features/map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/map.bmp -------------------------------------------------------------------------------- /X/Features/parrothv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/parrothv3.png -------------------------------------------------------------------------------- /X/Features/pdfDemoForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/pdfDemoForm.dfm -------------------------------------------------------------------------------- /X/Features/pdfDemoForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Features/pdfDemoForm.pas -------------------------------------------------------------------------------- /X/FishFact/Fishfact.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/Fishfact.bdsproj -------------------------------------------------------------------------------- /X/FishFact/Fishfact.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/Fishfact.dpr -------------------------------------------------------------------------------- /X/FishFact/Fishfact.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/Fishfact.res -------------------------------------------------------------------------------- /X/FishFact/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/Main.dfm -------------------------------------------------------------------------------- /X/FishFact/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/Main.pas -------------------------------------------------------------------------------- /X/FishFact/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/ServerController.dfm -------------------------------------------------------------------------------- /X/FishFact/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/ServerController.pas -------------------------------------------------------------------------------- /X/FishFact/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFact/biolife.cds -------------------------------------------------------------------------------- /X/FishFactDM/FishFactDM.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFactDM/FishFactDM.bdsproj -------------------------------------------------------------------------------- /X/FishFactDM/FishFactDM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFactDM/FishFactDM.dpr -------------------------------------------------------------------------------- /X/FishFactDM/FishFactDM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFactDM/FishFactDM.res -------------------------------------------------------------------------------- /X/FishFactDM/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFactDM/Main.dfm -------------------------------------------------------------------------------- /X/FishFactDM/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishFactDM/Main.pas -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG1E.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG1E.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG1F.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG1F.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG20.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG20.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG21.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG21.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG22.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG22.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG23.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG23.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG44.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG44.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG45.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG45.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG46.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG46.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG47.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG47.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG48.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG48.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG49.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG49.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG4A.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG4A.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cache/JPG4B.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cache/JPG4B.tmp -------------------------------------------------------------------------------- /X/FishMarket/Cart.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cart.dfm -------------------------------------------------------------------------------- /X/FishMarket/Cart.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Cart.pas -------------------------------------------------------------------------------- /X/FishMarket/FishMarket.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/FishMarket.bdsproj -------------------------------------------------------------------------------- /X/FishMarket/FishMarket.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/FishMarket.dpr -------------------------------------------------------------------------------- /X/FishMarket/FishMarketDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/FishMarketDLL.dpr -------------------------------------------------------------------------------- /X/FishMarket/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Main.dfm -------------------------------------------------------------------------------- /X/FishMarket/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/Main.pas -------------------------------------------------------------------------------- /X/FishMarket/files/www/Cod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FishMarket/files/www/Cod.html -------------------------------------------------------------------------------- /X/FlightInformation/Data/DBDWORK.INI: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /X/FormData/Dialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/Dialog.dfm -------------------------------------------------------------------------------- /X/FormData/Dialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/Dialog.pas -------------------------------------------------------------------------------- /X/FormData/FormData.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/FormData.bdsproj -------------------------------------------------------------------------------- /X/FormData/FormData.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/FormData.dpr -------------------------------------------------------------------------------- /X/FormData/FormData.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/FormData.res -------------------------------------------------------------------------------- /X/FormData/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/Main.dfm -------------------------------------------------------------------------------- /X/FormData/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/Main.pas -------------------------------------------------------------------------------- /X/FormData/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/ServerController.dfm -------------------------------------------------------------------------------- /X/FormData/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/FormData/ServerController.pas -------------------------------------------------------------------------------- /X/GoogleMapsAPI/FormMainU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GoogleMapsAPI/FormMainU.dfm -------------------------------------------------------------------------------- /X/GoogleMapsAPI/FormMainU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GoogleMapsAPI/FormMainU.pas -------------------------------------------------------------------------------- /X/Guess/Guess.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Guess.bdsproj -------------------------------------------------------------------------------- /X/Guess/Guess.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Guess.dpr -------------------------------------------------------------------------------- /X/Guess/Guess.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Guess.dproj -------------------------------------------------------------------------------- /X/Guess/Guess.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Guess.drc -------------------------------------------------------------------------------- /X/Guess/GuessDLL.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDLL.bdsproj -------------------------------------------------------------------------------- /X/Guess/GuessDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDLL.dpr -------------------------------------------------------------------------------- /X/Guess/GuessDSO.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDSO.bdsproj -------------------------------------------------------------------------------- /X/Guess/GuessDSO.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDSO.dpr -------------------------------------------------------------------------------- /X/Guess/GuessDSOTwo.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDSOTwo.bdsproj -------------------------------------------------------------------------------- /X/Guess/GuessDSOTwo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessDSOTwo.dpr -------------------------------------------------------------------------------- /X/Guess/GuessService.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessService.bdsproj -------------------------------------------------------------------------------- /X/Guess/GuessService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/GuessService.dpr -------------------------------------------------------------------------------- /X/Guess/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Main.dfm -------------------------------------------------------------------------------- /X/Guess/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/Main.pas -------------------------------------------------------------------------------- /X/Guess/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/ServerController.dfm -------------------------------------------------------------------------------- /X/Guess/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Guess/ServerController.pas -------------------------------------------------------------------------------- /X/GuessMulti/GuessMulti.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessMulti/GuessMulti.bdsproj -------------------------------------------------------------------------------- /X/GuessMulti/GuessMulti.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessMulti/GuessMulti.dpr -------------------------------------------------------------------------------- /X/GuessMulti/Main32.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessMulti/Main32.dfm -------------------------------------------------------------------------------- /X/GuessMulti/Main32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessMulti/Main32.pas -------------------------------------------------------------------------------- /X/GuessTest/GuessTest.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessTest/GuessTest.bdsproj -------------------------------------------------------------------------------- /X/GuessTest/GuessTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessTest/GuessTest.dpr -------------------------------------------------------------------------------- /X/GuessTest/LayoutTestsUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessTest/LayoutTestsUnit.pas -------------------------------------------------------------------------------- /X/GuessTest/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessTest/Main.dfm -------------------------------------------------------------------------------- /X/GuessTest/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessTest/Main.pas -------------------------------------------------------------------------------- /X/GuessWB/GuessWB.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/GuessWB.dpr -------------------------------------------------------------------------------- /X/GuessWB/GuessWB.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/GuessWB.dsk -------------------------------------------------------------------------------- /X/GuessWB/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/Main.dfm -------------------------------------------------------------------------------- /X/GuessWB/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/Main.pas -------------------------------------------------------------------------------- /X/GuessWB/WebModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/WebModule.dfm -------------------------------------------------------------------------------- /X/GuessWB/WebModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/GuessWB/WebModule.pas -------------------------------------------------------------------------------- /X/IWP/IWPDemo.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/IWPDemo.bdsproj -------------------------------------------------------------------------------- /X/IWP/IWPDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/IWPDemo.dpr -------------------------------------------------------------------------------- /X/IWP/MainWM.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/MainWM.dfm -------------------------------------------------------------------------------- /X/IWP/MainWM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/MainWM.pas -------------------------------------------------------------------------------- /X/IWP/Pages/index.iwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/Pages/index.iwp -------------------------------------------------------------------------------- /X/IWP/Pages/step1.iwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/Pages/step1.iwp -------------------------------------------------------------------------------- /X/IWP/Pages/step2.iwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/Pages/step2.iwp -------------------------------------------------------------------------------- /X/IWP/step1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/step1.dfm -------------------------------------------------------------------------------- /X/IWP/step1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/step1.pas -------------------------------------------------------------------------------- /X/IWP/step2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/step2.dfm -------------------------------------------------------------------------------- /X/IWP/step2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/IWP/step2.pas -------------------------------------------------------------------------------- /X/MemoryManager/FormMainU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/MemoryManager/FormMainU.dfm -------------------------------------------------------------------------------- /X/MemoryManager/FormMainU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/MemoryManager/FormMainU.pas -------------------------------------------------------------------------------- /X/MemoryManager/RecyclerMM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/MemoryManager/RecyclerMM.pas -------------------------------------------------------------------------------- /X/MemoryManager/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/MemoryManager/readme.txt -------------------------------------------------------------------------------- /X/PageForms/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/MainForm.dfm -------------------------------------------------------------------------------- /X/PageForms/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/MainForm.pas -------------------------------------------------------------------------------- /X/PageForms/MainWeb.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/MainWeb.dfm -------------------------------------------------------------------------------- /X/PageForms/MainWeb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/MainWeb.pas -------------------------------------------------------------------------------- /X/PageForms/PageForms.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/PageForms.bdsproj -------------------------------------------------------------------------------- /X/PageForms/PageForms.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/PageForms.dpr -------------------------------------------------------------------------------- /X/PageForms/PageForms.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/PageForms.res -------------------------------------------------------------------------------- /X/PageForms/SecondForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/SecondForm.dfm -------------------------------------------------------------------------------- /X/PageForms/SecondForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PageForms/SecondForm.pas -------------------------------------------------------------------------------- /X/PhoneInfo/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/Main.dfm -------------------------------------------------------------------------------- /X/PhoneInfo/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/Main.pas -------------------------------------------------------------------------------- /X/PhoneInfo/PhoneInfo.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/PhoneInfo.bdsproj -------------------------------------------------------------------------------- /X/PhoneInfo/PhoneInfo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/PhoneInfo.dpr -------------------------------------------------------------------------------- /X/PhoneInfo/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/UserSessionUnit.dfm -------------------------------------------------------------------------------- /X/PhoneInfo/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PhoneInfo/UserSessionUnit.pas -------------------------------------------------------------------------------- /X/PopupPassingData/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PopupPassingData/Unit1.dfm -------------------------------------------------------------------------------- /X/PopupPassingData/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/PopupPassingData/Unit1.pas -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemo.bdsgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemo.bdsgroup -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemo.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemo.bdsproj -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemo.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemo.bpg -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemo.dpr -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemo.rav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemo.rav -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemoDLL.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemoDLL.bdsproj -------------------------------------------------------------------------------- /X/RaveDemo/RaveDemoDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/RaveDemoDLL.dpr -------------------------------------------------------------------------------- /X/RaveDemo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/ReadMe.txt -------------------------------------------------------------------------------- /X/RaveDemo/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/ServerController.dfm -------------------------------------------------------------------------------- /X/RaveDemo/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/ServerController.pas -------------------------------------------------------------------------------- /X/RaveDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/Unit1.dfm -------------------------------------------------------------------------------- /X/RaveDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/RaveDemo/Unit1.pas -------------------------------------------------------------------------------- /X/SessionManager/Enter.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/SessionManager/Enter.dfm -------------------------------------------------------------------------------- /X/SessionManager/Enter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/SessionManager/Enter.pas -------------------------------------------------------------------------------- /X/SessionManager/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/SessionManager/Main.dfm -------------------------------------------------------------------------------- /X/SessionManager/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/SessionManager/Main.pas -------------------------------------------------------------------------------- /X/StandAloneSSL/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/Main.dfm -------------------------------------------------------------------------------- /X/StandAloneSSL/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/Main.pas -------------------------------------------------------------------------------- /X/StandAloneSSL/SecureForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/SecureForm.dfm -------------------------------------------------------------------------------- /X/StandAloneSSL/SecureForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/SecureForm.pas -------------------------------------------------------------------------------- /X/StandAloneSSL/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/cert.pem -------------------------------------------------------------------------------- /X/StandAloneSSL/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/key.pem -------------------------------------------------------------------------------- /X/StandAloneSSL/root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StandAloneSSL/root.pem -------------------------------------------------------------------------------- /X/StrSecSSL/TLSServer.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StrSecSSL/TLSServer.bdsproj -------------------------------------------------------------------------------- /X/StrSecSSL/TLSServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StrSecSSL/TLSServer.dpr -------------------------------------------------------------------------------- /X/StrSecSSL/TLSServerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StrSecSSL/TLSServerMain.dfm -------------------------------------------------------------------------------- /X/StrSecSSL/TLSServerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/StrSecSSL/TLSServerMain.pas -------------------------------------------------------------------------------- /X/Taxi/Client.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Client.dfm -------------------------------------------------------------------------------- /X/Taxi/Client.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Client.pas -------------------------------------------------------------------------------- /X/Taxi/ClientOrders.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/ClientOrders.dfm -------------------------------------------------------------------------------- /X/Taxi/ClientOrders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/ClientOrders.pas -------------------------------------------------------------------------------- /X/Taxi/Database/client.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/client.DAT -------------------------------------------------------------------------------- /X/Taxi/Database/client.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/client.IDX -------------------------------------------------------------------------------- /X/Taxi/Database/driver.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/driver.DAT -------------------------------------------------------------------------------- /X/Taxi/Database/driver.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/driver.IDX -------------------------------------------------------------------------------- /X/Taxi/Database/taxi_order.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/taxi_order.DAT -------------------------------------------------------------------------------- /X/Taxi/Database/taxi_order.IDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Database/taxi_order.IDX -------------------------------------------------------------------------------- /X/Taxi/Driver.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Driver.dfm -------------------------------------------------------------------------------- /X/Taxi/Driver.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Driver.pas -------------------------------------------------------------------------------- /X/Taxi/DriverOrders.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/DriverOrders.dfm -------------------------------------------------------------------------------- /X/Taxi/DriverOrders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/DriverOrders.pas -------------------------------------------------------------------------------- /X/Taxi/EditClient.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditClient.dfm -------------------------------------------------------------------------------- /X/Taxi/EditClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditClient.pas -------------------------------------------------------------------------------- /X/Taxi/EditOrder.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditOrder.dfm -------------------------------------------------------------------------------- /X/Taxi/EditOrder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditOrder.pas -------------------------------------------------------------------------------- /X/Taxi/EditOrderByDriver.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditOrderByDriver.dfm -------------------------------------------------------------------------------- /X/Taxi/EditOrderByDriver.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/EditOrderByDriver.pas -------------------------------------------------------------------------------- /X/Taxi/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/ServerController.dfm -------------------------------------------------------------------------------- /X/Taxi/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/ServerController.pas -------------------------------------------------------------------------------- /X/Taxi/Taxi.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Taxi.bdsproj -------------------------------------------------------------------------------- /X/Taxi/Taxi.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/Taxi.dpr -------------------------------------------------------------------------------- /X/Taxi/TaxiDM.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/TaxiDM.dfm -------------------------------------------------------------------------------- /X/Taxi/TaxiDM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/TaxiDM.pas -------------------------------------------------------------------------------- /X/Taxi/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/UserSessionUnit.dfm -------------------------------------------------------------------------------- /X/Taxi/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/UserSessionUnit.pas -------------------------------------------------------------------------------- /X/Taxi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/Taxi/readme.txt -------------------------------------------------------------------------------- /X/WebMail32/Mail.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/Mail.dfm -------------------------------------------------------------------------------- /X/WebMail32/Mail.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/Mail.pas -------------------------------------------------------------------------------- /X/WebMail32/MailWAP.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MailWAP.dfm -------------------------------------------------------------------------------- /X/WebMail32/MailWAP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MailWAP.pas -------------------------------------------------------------------------------- /X/WebMail32/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/Main.dfm -------------------------------------------------------------------------------- /X/WebMail32/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/Main.pas -------------------------------------------------------------------------------- /X/WebMail32/MainWAP.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MainWAP.dfm -------------------------------------------------------------------------------- /X/WebMail32/MainWAP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MainWAP.pas -------------------------------------------------------------------------------- /X/WebMail32/MsgWAP.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MsgWAP.dfm -------------------------------------------------------------------------------- /X/WebMail32/MsgWAP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/MsgWAP.pas -------------------------------------------------------------------------------- /X/WebMail32/WebMail32.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/WebMail32.bdsproj -------------------------------------------------------------------------------- /X/WebMail32/WebMail32.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebMail32/WebMail32.dpr -------------------------------------------------------------------------------- /X/WebSnapSurvey/AppModule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/AppModule.dfm -------------------------------------------------------------------------------- /X/WebSnapSurvey/AppModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/AppModule.pas -------------------------------------------------------------------------------- /X/WebSnapSurvey/DebugForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/DebugForm.dfm -------------------------------------------------------------------------------- /X/WebSnapSurvey/DebugForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/DebugForm.pas -------------------------------------------------------------------------------- /X/WebSnapSurvey/Global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/Global.pas -------------------------------------------------------------------------------- /X/WebSnapSurvey/Page1Form.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/Page1Form.dfm -------------------------------------------------------------------------------- /X/WebSnapSurvey/Page1Form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/Page1Form.pas -------------------------------------------------------------------------------- /X/WebSnapSurvey/Page1Module.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/Page1Module.dfm -------------------------------------------------------------------------------- /X/WebSnapSurvey/Page1Module.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/WebSnapSurvey/Page1Module.pas -------------------------------------------------------------------------------- /X/madExceptDemo/Demo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/madExceptDemo/Demo.dfm -------------------------------------------------------------------------------- /X/madExceptDemo/Demo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/madExceptDemo/Demo.pas -------------------------------------------------------------------------------- /X/madExceptDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/madExceptDemo/Unit1.dfm -------------------------------------------------------------------------------- /X/madExceptDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/X/madExceptDemo/Unit1.pas -------------------------------------------------------------------------------- /XI/AJAXNotifier/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/AJAXNotifier/Unit2.dfm -------------------------------------------------------------------------------- /XI/AJAXNotifier/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/AJAXNotifier/Unit2.pas -------------------------------------------------------------------------------- /XI/Authentication/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Authentication/Main.dfm -------------------------------------------------------------------------------- /XI/Authentication/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Authentication/Main.pas -------------------------------------------------------------------------------- /XI/ChangeImage/Project7.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ChangeImage/Project7.dpr -------------------------------------------------------------------------------- /XI/ChangeImage/Project7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ChangeImage/Project7.res -------------------------------------------------------------------------------- /XI/ChangeImage/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ChangeImage/Unit2.dfm -------------------------------------------------------------------------------- /XI/ChangeImage/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ChangeImage/Unit2.pas -------------------------------------------------------------------------------- /XI/ContentPah/ContentPah.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ContentPah/ContentPah.dpr -------------------------------------------------------------------------------- /XI/ContentPah/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ContentPah/Unit1.dfm -------------------------------------------------------------------------------- /XI/ContentPah/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/ContentPah/Unit1.pas -------------------------------------------------------------------------------- /XI/CustomStandAlone/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/CustomStandAlone/Main.dfm -------------------------------------------------------------------------------- /XI/CustomStandAlone/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/CustomStandAlone/Main.pas -------------------------------------------------------------------------------- /XI/CustomURLResponder/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | This is an HTML file... :-) -------------------------------------------------------------------------------- /XI/Demos.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Demos.groupproj -------------------------------------------------------------------------------- /XI/Features/ActiveXForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ActiveXForm.dfm -------------------------------------------------------------------------------- /XI/Features/ActiveXForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ActiveXForm.pas -------------------------------------------------------------------------------- /XI/Features/CalendarForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/CalendarForm.dfm -------------------------------------------------------------------------------- /XI/Features/CalendarForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/CalendarForm.pas -------------------------------------------------------------------------------- /XI/Features/Cancelar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Cancelar.bmp -------------------------------------------------------------------------------- /XI/Features/Combobox.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Combobox.dfm -------------------------------------------------------------------------------- /XI/Features/Combobox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Combobox.pas -------------------------------------------------------------------------------- /XI/Features/ContentWindow.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ContentWindow.dfm -------------------------------------------------------------------------------- /XI/Features/ContentWindow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ContentWindow.pas -------------------------------------------------------------------------------- /XI/Features/DownloadForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/DownloadForm.dfm -------------------------------------------------------------------------------- /XI/Features/DownloadForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/DownloadForm.pas -------------------------------------------------------------------------------- /XI/Features/EditGridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/EditGridForm.dfm -------------------------------------------------------------------------------- /XI/Features/EditGridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/EditGridForm.pas -------------------------------------------------------------------------------- /XI/Features/FDatamodule.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FDatamodule.dfm -------------------------------------------------------------------------------- /XI/Features/FDatamodule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FDatamodule.pas -------------------------------------------------------------------------------- /XI/Features/Features.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Features.dpr -------------------------------------------------------------------------------- /XI/Features/FileUploadForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FileUploadForm.dfm -------------------------------------------------------------------------------- /XI/Features/FileUploadForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FileUploadForm.pas -------------------------------------------------------------------------------- /XI/Features/Flash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Flash.dfm -------------------------------------------------------------------------------- /XI/Features/Flash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Flash.pas -------------------------------------------------------------------------------- /XI/Features/FlowForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FlowForm.dfm -------------------------------------------------------------------------------- /XI/Features/FlowForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/FlowForm.pas -------------------------------------------------------------------------------- /XI/Features/Global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Global.pas -------------------------------------------------------------------------------- /XI/Features/GridForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/GridForm.dfm -------------------------------------------------------------------------------- /XI/Features/GridForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/GridForm.pas -------------------------------------------------------------------------------- /XI/Features/IX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/IX.xml -------------------------------------------------------------------------------- /XI/Features/JavaApplet.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/JavaApplet.dfm -------------------------------------------------------------------------------- /XI/Features/JavaApplet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/JavaApplet.pas -------------------------------------------------------------------------------- /XI/Features/MPEGForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MPEGForm.dfm -------------------------------------------------------------------------------- /XI/Features/MPEGForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MPEGForm.pas -------------------------------------------------------------------------------- /XI/Features/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Main.dfm -------------------------------------------------------------------------------- /XI/Features/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Main.pas -------------------------------------------------------------------------------- /XI/Features/MapForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MapForm.dfm -------------------------------------------------------------------------------- /XI/Features/MapForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MapForm.pas -------------------------------------------------------------------------------- /XI/Features/MenuForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MenuForm.dfm -------------------------------------------------------------------------------- /XI/Features/MenuForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MenuForm.pas -------------------------------------------------------------------------------- /XI/Features/MenuFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MenuFrame.dfm -------------------------------------------------------------------------------- /XI/Features/MenuFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MenuFrame.pas -------------------------------------------------------------------------------- /XI/Features/MessageDialogs.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MessageDialogs.dfm -------------------------------------------------------------------------------- /XI/Features/MessageDialogs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/MessageDialogs.pas -------------------------------------------------------------------------------- /XI/Features/QuickTimeForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/QuickTimeForm.dfm -------------------------------------------------------------------------------- /XI/Features/QuickTimeForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/QuickTimeForm.pas -------------------------------------------------------------------------------- /XI/Features/RegionForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/RegionForm.dfm -------------------------------------------------------------------------------- /XI/Features/RegionForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/RegionForm.pas -------------------------------------------------------------------------------- /XI/Features/ResizeForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ResizeForm.dfm -------------------------------------------------------------------------------- /XI/Features/ResizeForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/ResizeForm.pas -------------------------------------------------------------------------------- /XI/Features/Simple.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Simple.dfm -------------------------------------------------------------------------------- /XI/Features/Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Simple.pas -------------------------------------------------------------------------------- /XI/Features/StyleSheetForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/StyleSheetForm.dfm -------------------------------------------------------------------------------- /XI/Features/StyleSheetForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/StyleSheetForm.pas -------------------------------------------------------------------------------- /XI/Features/TemplateForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TemplateForm.dfm -------------------------------------------------------------------------------- /XI/Features/TemplateForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TemplateForm.pas -------------------------------------------------------------------------------- /XI/Features/Threaded.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Threaded.dfm -------------------------------------------------------------------------------- /XI/Features/Threaded.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/Threaded.pas -------------------------------------------------------------------------------- /XI/Features/TimerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TimerForm.dfm -------------------------------------------------------------------------------- /XI/Features/TimerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TimerForm.pas -------------------------------------------------------------------------------- /XI/Features/TreeViewForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TreeViewForm.dfm -------------------------------------------------------------------------------- /XI/Features/TreeViewForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/TreeViewForm.pas -------------------------------------------------------------------------------- /XI/Features/map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/map.bmp -------------------------------------------------------------------------------- /XI/Features/parrothv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/parrothv3.png -------------------------------------------------------------------------------- /XI/Features/pdfDemoForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/pdfDemoForm.dfm -------------------------------------------------------------------------------- /XI/Features/pdfDemoForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Features/pdfDemoForm.pas -------------------------------------------------------------------------------- /XI/FileManager/#Auth.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/#Auth.ini -------------------------------------------------------------------------------- /XI/FileManager/FileManager.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/FileManager.dpr -------------------------------------------------------------------------------- /XI/FileManager/FileManager.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/FileManager.res -------------------------------------------------------------------------------- /XI/FileManager/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/MainForm.dfm -------------------------------------------------------------------------------- /XI/FileManager/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/MainForm.pas -------------------------------------------------------------------------------- /XI/FileManager/UploadForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/UploadForm.dfm -------------------------------------------------------------------------------- /XI/FileManager/UploadForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FileManager/UploadForm.pas -------------------------------------------------------------------------------- /XI/FilesDir/FilesDir.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/FilesDir.dpr -------------------------------------------------------------------------------- /XI/FilesDir/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/Unit1.dfm -------------------------------------------------------------------------------- /XI/FilesDir/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/Unit1.pas -------------------------------------------------------------------------------- /XI/FilesDir/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/FilesDir/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/FilesDir/myFiles/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FilesDir/myFiles/sample.css -------------------------------------------------------------------------------- /XI/FilesDir/wwwroot/Terminate.html: -------------------------------------------------------------------------------- 1 | The application was terminated. 2 | -------------------------------------------------------------------------------- /XI/FishFact/Fishfact.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFact/Fishfact.dpr -------------------------------------------------------------------------------- /XI/FishFact/Fishfact.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFact/Fishfact.res -------------------------------------------------------------------------------- /XI/FishFact/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFact/Main.dfm -------------------------------------------------------------------------------- /XI/FishFact/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFact/Main.pas -------------------------------------------------------------------------------- /XI/FishFact/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFact/biolife.cds -------------------------------------------------------------------------------- /XI/FishFactExtended/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFactExtended/Main.dfm -------------------------------------------------------------------------------- /XI/FishFactExtended/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFactExtended/Main.pas -------------------------------------------------------------------------------- /XI/FishFactExtended/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/FishFactExtended/biolife.cds -------------------------------------------------------------------------------- /XI/Guess/Guess.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/Guess.dpr -------------------------------------------------------------------------------- /XI/Guess/Guess.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/Guess.res -------------------------------------------------------------------------------- /XI/Guess/GuessDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/GuessDLL.dpr -------------------------------------------------------------------------------- /XI/Guess/GuessDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/GuessDLL.res -------------------------------------------------------------------------------- /XI/Guess/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/Main.dfm -------------------------------------------------------------------------------- /XI/Guess/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/Main.pas -------------------------------------------------------------------------------- /XI/Guess/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/ServerController.dfm -------------------------------------------------------------------------------- /XI/Guess/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Guess/ServerController.pas -------------------------------------------------------------------------------- /XI/HiddenFields/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HiddenFields/Unit2.dfm -------------------------------------------------------------------------------- /XI/HiddenFields/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HiddenFields/Unit2.pas -------------------------------------------------------------------------------- /XI/HttpAndCookie/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HttpAndCookie/Main.dfm -------------------------------------------------------------------------------- /XI/HttpAndCookie/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HttpAndCookie/Main.pas -------------------------------------------------------------------------------- /XI/HttpAndCookie/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HttpAndCookie/Unit2.dfm -------------------------------------------------------------------------------- /XI/HttpAndCookie/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/HttpAndCookie/Unit2.pas -------------------------------------------------------------------------------- /XI/IWDocs/AZ Docs WWW.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/AZ Docs WWW.sln -------------------------------------------------------------------------------- /XI/IWDocs/Atozed Docs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Atozed Docs.sln -------------------------------------------------------------------------------- /XI/IWDocs/EditForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/EditForm.dfm -------------------------------------------------------------------------------- /XI/IWDocs/EditForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/EditForm.pas -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwItalic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwItalic.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwUnderline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwUnderline.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwalignleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwalignleft.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwbold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwbold.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwbullets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwbullets.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwcopy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwcopy.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwcut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwcut.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwimg.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwlink.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwnew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwnew.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwpaste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwpaste.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwruler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwruler.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/iwstrikeout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/iwstrikeout.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/subscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/subscript.gif -------------------------------------------------------------------------------- /XI/IWDocs/Files/superscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/Files/superscript.gif -------------------------------------------------------------------------------- /XI/IWDocs/IWDocs.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/IWDocs.dpr -------------------------------------------------------------------------------- /XI/IWDocs/IWDocs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/IWDocs.res -------------------------------------------------------------------------------- /XI/IWDocs/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/MainForm.dfm -------------------------------------------------------------------------------- /XI/IWDocs/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/MainForm.pas -------------------------------------------------------------------------------- /XI/IWDocs/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/ServerController.dfm -------------------------------------------------------------------------------- /XI/IWDocs/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/ServerController.pas -------------------------------------------------------------------------------- /XI/IWDocs/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/IWDocs/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Atozed Docs -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/#Tmplt.Contents.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Parent=Default -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/CrossTalk/index_files/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | 3 | [Enum] 4 | Exclude=True -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=IntraWeb XI Docs -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/AppMode/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Application Mode -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/AppMode/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Deployment/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Deploying Sites -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Deployment/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/IPM/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/IPM/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Installation/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/StandAlone/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=StandAlone Server -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/StandAlone/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Folder] 2 | Title=Tags 3 | -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Arg/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Arguments -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Cookie/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Cookies -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Dir/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Directories -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Dir/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Doc/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Documents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Doc/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents 3 | 4 | [Enum] 5 | Exclude=True -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Enum/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Enumerators -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Enum/Preset#.cfg: -------------------------------------------------------------------------------- 1 | [Enum] 2 | Exclude=True 3 | 4 | -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Enum/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/HTTP/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=HTTP Query Parameters -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Session/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=User Sessions -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Sys/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=System -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Sys/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/User/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=User (Developer) -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Tags/Var/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Variables -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Upgrade/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Upgrading from 10 -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/Upgrade/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Contents -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/IntraWeb/VisualCustomComps/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Custom Visual Components -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/Root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/wwwroot/Root.css -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/gfx/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Enum] 2 | Exclude=True -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/wwwroot/index.html -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/rss#.cfg: -------------------------------------------------------------------------------- 1 | [Enum] 2 | Exclude=True -------------------------------------------------------------------------------- /XI/IWDocs/wwwroot/rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWDocs/wwwroot/rss.html -------------------------------------------------------------------------------- /XI/IWPDemo/IWPDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/IWPDemo.dpr -------------------------------------------------------------------------------- /XI/IWPDemo/IWPDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/IWPDemo.res -------------------------------------------------------------------------------- /XI/IWPDemo/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/MainForm.dfm -------------------------------------------------------------------------------- /XI/IWPDemo/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/MainForm.pas -------------------------------------------------------------------------------- /XI/IWPDemo/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/ServerController.dfm -------------------------------------------------------------------------------- /XI/IWPDemo/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/ServerController.pas -------------------------------------------------------------------------------- /XI/IWPDemo/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/IWPDemo/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/IWPDemo/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/IWPDemo/wwwroot/index.html -------------------------------------------------------------------------------- /XI/PNG/PNG.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/PNG.dpr -------------------------------------------------------------------------------- /XI/PNG/PNG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/PNG.res -------------------------------------------------------------------------------- /XI/PNG/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/ServerController.dfm -------------------------------------------------------------------------------- /XI/PNG/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/ServerController.pas -------------------------------------------------------------------------------- /XI/PNG/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/Unit2.dfm -------------------------------------------------------------------------------- /XI/PNG/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/Unit2.pas -------------------------------------------------------------------------------- /XI/PNG/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/PNG/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/PNG/wwwroot/intraweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/PNG/wwwroot/intraweb.png -------------------------------------------------------------------------------- /XI/SessionTag/SessionTag.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/SessionTag/SessionTag.dpr -------------------------------------------------------------------------------- /XI/SessionTag/SessionTag.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/SessionTag/SessionTag.res -------------------------------------------------------------------------------- /XI/SessionTag/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/SessionTag/Unit3.dfm -------------------------------------------------------------------------------- /XI/SessionTag/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/SessionTag/Unit3.pas -------------------------------------------------------------------------------- /XI/StandAloneSSL/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/Main.dfm -------------------------------------------------------------------------------- /XI/StandAloneSSL/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/Main.pas -------------------------------------------------------------------------------- /XI/StandAloneSSL/SecureForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/SecureForm.dfm -------------------------------------------------------------------------------- /XI/StandAloneSSL/SecureForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/SecureForm.pas -------------------------------------------------------------------------------- /XI/StandAloneSSL/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/cert.pem -------------------------------------------------------------------------------- /XI/StandAloneSSL/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/key.pem -------------------------------------------------------------------------------- /XI/StandAloneSSL/root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/StandAloneSSL/root.pem -------------------------------------------------------------------------------- /XI/TemplatesAndCSS/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/TemplatesAndCSS/Unit1.dfm -------------------------------------------------------------------------------- /XI/TemplatesAndCSS/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/TemplatesAndCSS/Unit1.pas -------------------------------------------------------------------------------- /XI/TimeOutResponse/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/TimeOutResponse/Unit1.dfm -------------------------------------------------------------------------------- /XI/TimeOutResponse/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/TimeOutResponse/Unit1.pas -------------------------------------------------------------------------------- /XI/URLMapping/BlueForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/BlueForm.dfm -------------------------------------------------------------------------------- /XI/URLMapping/BlueForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/BlueForm.pas -------------------------------------------------------------------------------- /XI/URLMapping/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/MainForm.dfm -------------------------------------------------------------------------------- /XI/URLMapping/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/MainForm.pas -------------------------------------------------------------------------------- /XI/URLMapping/RedForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/RedForm.dfm -------------------------------------------------------------------------------- /XI/URLMapping/RedForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/RedForm.pas -------------------------------------------------------------------------------- /XI/URLMapping/URLMapping.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/URLMapping.dpr -------------------------------------------------------------------------------- /XI/URLMapping/URLMapping.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLMapping/URLMapping.res -------------------------------------------------------------------------------- /XI/URLWindow/URLWindow.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLWindow/URLWindow.dpr -------------------------------------------------------------------------------- /XI/URLWindow/URLWindow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLWindow/URLWindow.res -------------------------------------------------------------------------------- /XI/URLWindow/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLWindow/Unit1.dfm -------------------------------------------------------------------------------- /XI/URLWindow/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/URLWindow/Unit1.pas -------------------------------------------------------------------------------- /XI/WebCam/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/ServerController.dfm -------------------------------------------------------------------------------- /XI/WebCam/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/ServerController.pas -------------------------------------------------------------------------------- /XI/WebCam/Unit11.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/Unit11.dfm -------------------------------------------------------------------------------- /XI/WebCam/Unit11.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/Unit11.pas -------------------------------------------------------------------------------- /XI/WebCam/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/WebCam/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/WebCam/WebCam.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/WebCam.cfg -------------------------------------------------------------------------------- /XI/WebCam/WebCam.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/WebCam.dof -------------------------------------------------------------------------------- /XI/WebCam/WebCam.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/WebCam.dpr -------------------------------------------------------------------------------- /XI/WebCam/WebCam.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/WebCam.res -------------------------------------------------------------------------------- /XI/WebCam/blank_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/WebCam/blank_image.jpg -------------------------------------------------------------------------------- /XI/Website/Files/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/Files/website.css -------------------------------------------------------------------------------- /XI/Website/ServerController.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/ServerController.dfm -------------------------------------------------------------------------------- /XI/Website/ServerController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/ServerController.pas -------------------------------------------------------------------------------- /XI/Website/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/Unit1.dfm -------------------------------------------------------------------------------- /XI/Website/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/Unit1.pas -------------------------------------------------------------------------------- /XI/Website/UserSessionUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/UserSessionUnit.dfm -------------------------------------------------------------------------------- /XI/Website/UserSessionUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/UserSessionUnit.pas -------------------------------------------------------------------------------- /XI/Website/Website.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/Website.dpr -------------------------------------------------------------------------------- /XI/Website/Website.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/Website.res -------------------------------------------------------------------------------- /XI/Website/wwwroot/#Email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/wwwroot/#Email.html -------------------------------------------------------------------------------- /XI/Website/wwwroot/#Phone.txt: -------------------------------------------------------------------------------- 1 | (800) 555-1212 -------------------------------------------------------------------------------- /XI/Website/wwwroot/Team/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=Our Team 3 | -------------------------------------------------------------------------------- /XI/Website/wwwroot/Team/#Tmplt.Default.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Parent=Default 3 | -------------------------------------------------------------------------------- /XI/Website/wwwroot/Team/Jack#Phone.txt: -------------------------------------------------------------------------------- 1 | 555-1212 x99 -------------------------------------------------------------------------------- /XI/Website/wwwroot/Team/Joe#.var: -------------------------------------------------------------------------------- 1 | Name=Joe White 2 | Title=Legal Schmoe 3 | Phone=555-1212 x98 4 | -------------------------------------------------------------------------------- /XI/Website/wwwroot/Team/index#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Path=.. 3 | -------------------------------------------------------------------------------- /XI/Website/wwwroot/Test/Params#.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=! -------------------------------------------------------------------------------- /XI/Website/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XI/Website/wwwroot/index.html -------------------------------------------------------------------------------- /XII/Delphi/CustomURLResponder/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | This is an HTML file... :-) -------------------------------------------------------------------------------- /XII/Delphi/Features/Features.dproj.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /XII/Delphi/Features/Flash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Flash.dfm -------------------------------------------------------------------------------- /XII/Delphi/Features/Flash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Flash.pas -------------------------------------------------------------------------------- /XII/Delphi/Features/Global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Global.pas -------------------------------------------------------------------------------- /XII/Delphi/Features/IX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/IX.xml -------------------------------------------------------------------------------- /XII/Delphi/Features/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Main.dfm -------------------------------------------------------------------------------- /XII/Delphi/Features/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Main.pas -------------------------------------------------------------------------------- /XII/Delphi/Features/MapForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/MapForm.dfm -------------------------------------------------------------------------------- /XII/Delphi/Features/MapForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/MapForm.pas -------------------------------------------------------------------------------- /XII/Delphi/Features/Simple.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Simple.dfm -------------------------------------------------------------------------------- /XII/Delphi/Features/Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/Simple.pas -------------------------------------------------------------------------------- /XII/Delphi/Features/map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Features/map.bmp -------------------------------------------------------------------------------- /XII/Delphi/FishFact/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/FishFact/Main.dfm -------------------------------------------------------------------------------- /XII/Delphi/FishFact/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/FishFact/Main.pas -------------------------------------------------------------------------------- /XII/Delphi/FishFact/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/FishFact/biolife.cds -------------------------------------------------------------------------------- /XII/Delphi/Guess/Guess.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Guess/Guess.dpr -------------------------------------------------------------------------------- /XII/Delphi/Guess/GuessDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Guess/GuessDLL.dpr -------------------------------------------------------------------------------- /XII/Delphi/Guess/GuessDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Guess/GuessDLL.res -------------------------------------------------------------------------------- /XII/Delphi/Guess/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Guess/Main.dfm -------------------------------------------------------------------------------- /XII/Delphi/Guess/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/Guess/Main.pas -------------------------------------------------------------------------------- /XII/Delphi/HTMLEditor/Unit3.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/HTMLEditor/Unit3.dcu -------------------------------------------------------------------------------- /XII/Delphi/HTMLEditor/Unit3.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/HTMLEditor/Unit3.dfm -------------------------------------------------------------------------------- /XII/Delphi/HTMLEditor/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/HTMLEditor/Unit3.pas -------------------------------------------------------------------------------- /XII/Delphi/IWPDemo/IWPDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWPDemo/IWPDemo.dpr -------------------------------------------------------------------------------- /XII/Delphi/IWPDemo/IWPDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWPDemo/IWPDemo.res -------------------------------------------------------------------------------- /XII/Delphi/IWPDemo/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWPDemo/MainForm.dfm -------------------------------------------------------------------------------- /XII/Delphi/IWPDemo/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWPDemo/MainForm.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/#Auth.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/#Auth.ini -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/IWWiki.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/IWWiki.dpr -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Login.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Login.dfm -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Login.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Login.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Main.dfm -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Main.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Search.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Search.dfm -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Search.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Search.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/Utils.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/WikiItem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/IWWiki/WikiItem.pas -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/wwwroot/#index.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Name=Default 3 | -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/wwwroot/CrossTalk/#index.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Parent=Default 3 | -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/wwwroot/Images/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Enum] 2 | Exclude=True 3 | -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/wwwroot/IntraWeb/#Dir.cfg: -------------------------------------------------------------------------------- 1 | [Dir] 2 | Title=IntraWeb XI Docs -------------------------------------------------------------------------------- /XII/Delphi/IWWiki/wwwroot/IntraWeb/#index.cfg: -------------------------------------------------------------------------------- 1 | [Template] 2 | Parent=Default 3 | -------------------------------------------------------------------------------- /XII/Delphi/JavaApplet/Unit5.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/JavaApplet/Unit5.dfm -------------------------------------------------------------------------------- /XII/Delphi/JavaApplet/Unit5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/JavaApplet/Unit5.pas -------------------------------------------------------------------------------- /XII/Delphi/JavaScript/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/JavaScript/Unit2.dfm -------------------------------------------------------------------------------- /XII/Delphi/JavaScript/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/JavaScript/Unit2.pas -------------------------------------------------------------------------------- /XII/Delphi/PNG/PNG.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/PNG/PNG.dpr -------------------------------------------------------------------------------- /XII/Delphi/PNG/PNG.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/PNG/PNG.dproj -------------------------------------------------------------------------------- /XII/Delphi/PNG/PNG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/PNG/PNG.res -------------------------------------------------------------------------------- /XII/Delphi/PNG/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/PNG/Unit2.dfm -------------------------------------------------------------------------------- /XII/Delphi/PNG/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XII/Delphi/PNG/Unit2.pas -------------------------------------------------------------------------------- /XII/Delphi/SearchEngine/wwwroot/Googlebot.html: -------------------------------------------------------------------------------- 1 | Hello Googlebot, welcome to my website 2 | -------------------------------------------------------------------------------- /XII/Delphi/URLMapping/URLMapping.dproj.local: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /XIV/C++/ContentHandlers/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ContentHandlers/Unit1.h -------------------------------------------------------------------------------- /XIV/C++/MinimalISAPI/Unit1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/MinimalISAPI/Unit1.cpp -------------------------------------------------------------------------------- /XIV/C++/MinimalISAPI/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/MinimalISAPI/Unit1.dfm -------------------------------------------------------------------------------- /XIV/C++/MinimalISAPI/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/MinimalISAPI/Unit1.h -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit1.cpp -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit1.dfm -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit1.h -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit2.cpp -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit2.dfm -------------------------------------------------------------------------------- /XIV/C++/ReverseProxy/Unit2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/C++/ReverseProxy/Unit2.h -------------------------------------------------------------------------------- /XIV/Delphi/AsyncLock/Unit10.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/AsyncLock/Unit10.dfm -------------------------------------------------------------------------------- /XIV/Delphi/AsyncLock/Unit10.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/AsyncLock/Unit10.pas -------------------------------------------------------------------------------- /XIV/Delphi/CacheFiles/BuildImagesScript.bat: -------------------------------------------------------------------------------- 1 | brcc32 Images.rc 2 | -------------------------------------------------------------------------------- /XIV/Delphi/CacheFiles/Images.rc: -------------------------------------------------------------------------------- 1 | MyImageFile RCDATA DISCARDABLE "AtozedLogo.gif" 2 | -------------------------------------------------------------------------------- /XIV/Delphi/CacheFiles/Unit6.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/CacheFiles/Unit6.dfm -------------------------------------------------------------------------------- /XIV/Delphi/CacheFiles/Unit6.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/CacheFiles/Unit6.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/FileUploadForm.vlb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XIV/Delphi/Features/Flash.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Flash.dfm -------------------------------------------------------------------------------- /XIV/Delphi/Features/Flash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Flash.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/Global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Global.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Main.dfm -------------------------------------------------------------------------------- /XIV/Delphi/Features/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Main.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/MapForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/MapForm.dfm -------------------------------------------------------------------------------- /XIV/Delphi/Features/MapForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/MapForm.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/Simple.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Simple.dfm -------------------------------------------------------------------------------- /XIV/Delphi/Features/Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/Simple.pas -------------------------------------------------------------------------------- /XIV/Delphi/Features/map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Features/map.bmp -------------------------------------------------------------------------------- /XIV/Delphi/FishFact/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/FishFact/Main.dfm -------------------------------------------------------------------------------- /XIV/Delphi/FishFact/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/FishFact/Main.pas -------------------------------------------------------------------------------- /XIV/Delphi/FishFact/biolife.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/FishFact/biolife.cds -------------------------------------------------------------------------------- /XIV/Delphi/GradButton/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/GradButton/Unit2.dfm -------------------------------------------------------------------------------- /XIV/Delphi/GradButton/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/GradButton/Unit2.pas -------------------------------------------------------------------------------- /XIV/Delphi/Guess/Guess12.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/Guess12.res -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessDLL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessDLL.dpr -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessDLL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessDLL.dproj -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessDLL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessDLL.res -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessISAPI.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessISAPI.dpr -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessISAPI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessISAPI.res -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessLib.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessLib.dpr -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessLib.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessLib.dproj -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessLib.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessLib.res -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessSA.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessSA.dpr -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessSA.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessSA.dproj -------------------------------------------------------------------------------- /XIV/Delphi/Guess/GuessSA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/GuessSA.res -------------------------------------------------------------------------------- /XIV/Delphi/Guess/Guess_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/Guess_Icon.ico -------------------------------------------------------------------------------- /XIV/Delphi/Guess/Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/Main.dfm -------------------------------------------------------------------------------- /XIV/Delphi/Guess/Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/Guess/Main.pas -------------------------------------------------------------------------------- /XIV/Delphi/IWAudio/IWAudio.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/IWAudio/IWAudio.dpr -------------------------------------------------------------------------------- /XIV/Delphi/IWAudio/IWAudio.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/IWAudio/IWAudio.res -------------------------------------------------------------------------------- /XIV/Delphi/IWAudio/Unit5.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/IWAudio/Unit5.dfm -------------------------------------------------------------------------------- /XIV/Delphi/IWAudio/Unit5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/IWAudio/Unit5.pas -------------------------------------------------------------------------------- /XIV/Delphi/JavaScript/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/JavaScript/Unit2.dfm -------------------------------------------------------------------------------- /XIV/Delphi/JavaScript/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/JavaScript/Unit2.pas -------------------------------------------------------------------------------- /XIV/Delphi/NewDialogs/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/NewDialogs/Unit1.dfm -------------------------------------------------------------------------------- /XIV/Delphi/NewDialogs/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/NewDialogs/Unit1.pas -------------------------------------------------------------------------------- /XIV/Delphi/TChart/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/TChart/Unit1.dfm -------------------------------------------------------------------------------- /XIV/Delphi/TChart/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/TChart/Unit1.pas -------------------------------------------------------------------------------- /XIV/Delphi/Template Demos/Template Unicode/Unit1.vlb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XIV/Delphi/WoffDemo/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/WoffDemo/Unit1.dfm -------------------------------------------------------------------------------- /XIV/Delphi/WoffDemo/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/WoffDemo/Unit1.pas -------------------------------------------------------------------------------- /XIV/Delphi/XML/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/XML/Unit1.dfm -------------------------------------------------------------------------------- /XIV/Delphi/XML/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/XML/Unit1.pas -------------------------------------------------------------------------------- /XIV/Delphi/XML/XMLDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/XML/XMLDemo.dpr -------------------------------------------------------------------------------- /XIV/Delphi/XML/XMLDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/XML/XMLDemo.dproj -------------------------------------------------------------------------------- /XIV/Delphi/XML/XMLDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atozed/IntraWeb/HEAD/XIV/Delphi/XML/XMLDemo.res --------------------------------------------------------------------------------