├── .gitattributes ├── .gitignore ├── AUTHORS.txt ├── LICENSE.txt ├── README.txt ├── VERSION.txt ├── XanaNewsGroup_D2009.groupproj ├── XanaNewsGroup_D2010.groupproj ├── XanaNewsGroup_D2011.groupproj ├── XanaNewsGroup_DXE2.groupproj ├── XanaNewsGroup_DXE3.groupproj ├── XanaNewsGroup_DXE5.groupproj ├── bin32 ├── .gitignore ├── FastMM_FullDebugMode.dll ├── libeay32.dll └── ssleay32.dll ├── bin64 ├── .gitignore ├── FastMM_FullDebugMode64.dll ├── libeay32.dll └── ssleay32.dll ├── bin_common ├── Quotes.txt ├── XanaNews.chm └── XanaNews.wav ├── components ├── ImageTypes │ └── Source │ │ ├── .gitignore │ │ ├── ImageTypesD2009.dpk │ │ ├── ImageTypesD2009.dproj │ │ ├── ImageTypesD2009.res │ │ ├── ImageTypesD2010.dpk │ │ ├── ImageTypesD2010.dproj │ │ ├── ImageTypesD2010.res │ │ ├── ImageTypesD2011.dpk │ │ ├── ImageTypesD2011.dproj │ │ ├── ImageTypesD2011.res │ │ ├── ImageTypesDXE2.dpk │ │ ├── ImageTypesDXE2.dproj │ │ ├── ImageTypesDXE2.res │ │ ├── ImageTypesDXE2_Icon.ico │ │ ├── ImageTypesDXE3.dpk │ │ ├── ImageTypesDXE3.dproj │ │ ├── ImageTypesDXE3.res │ │ ├── ImageTypesDXE5.dpk │ │ ├── ImageTypesDXE5.dproj │ │ ├── ImageTypesDXE5.res │ │ ├── ImageTypesDXE5.skincfg │ │ ├── XFace.pas │ │ ├── XFaceBigInt.pas │ │ ├── XFaceBitMap.pas │ │ ├── XFaceConstants.pas │ │ ├── XFaceHelper.pas │ │ ├── XFaceInterfaces.pas │ │ ├── XFaceProbabilityBuffer.pas │ │ ├── XFaceTransferInGraphic.pas │ │ ├── XFaceTransferInHexString.pas │ │ ├── XFaceTransferOutAscii.pas │ │ ├── XFaceTransferOutBitmap.pas │ │ └── XFaceTransferOutHexString.pas ├── LowLevel │ └── Source │ │ ├── CompVers.inc │ │ ├── LowLevelD2009.dpk │ │ ├── LowLevelD2009.dproj │ │ ├── LowLevelD2009.res │ │ ├── LowLevelD2010.dpk │ │ ├── LowLevelD2010.dproj │ │ ├── LowLevelD2010.res │ │ ├── LowLevelD2011.dpk │ │ ├── LowLevelD2011.dproj │ │ ├── LowLevelD2011.res │ │ ├── LowLevelDXE2.dpk │ │ ├── LowLevelDXE2.dproj │ │ ├── LowLevelDXE2.res │ │ ├── LowLevelDXE2_Icon.ico │ │ ├── LowLevelDXE3.dpk │ │ ├── LowLevelDXE3.dproj │ │ ├── LowLevelDXE3.res │ │ ├── LowLevelDXE5.dpk │ │ ├── LowLevelDXE5.dproj │ │ ├── LowLevelDXE5.res │ │ ├── LowLevelDXE5.skincfg │ │ ├── MultiLanguage_tlb.pas │ │ ├── RichOle.pas │ │ ├── XnClasses.pas │ │ ├── XnRawByteStrings.pas │ │ ├── ras.pas │ │ ├── unitBTree.pas │ │ ├── unitCharsetMap.pas │ │ ├── unitExFileSettings.pas │ │ ├── unitExRegSettings.pas │ │ ├── unitExSettings.pas │ │ ├── unitExXMLSettings.pas │ │ ├── unitObjectCache.pas │ │ ├── unitQpcTimer.pas │ │ ├── unitRTF2HTML.pas │ │ ├── unitSearchString.pas │ │ ├── unitStreamTextReader.pas │ │ ├── unitVersionHelpers.pas │ │ └── unitWow64.pas ├── MiscUnits │ └── Source │ │ ├── MiscUnitsD2009.dpk │ │ ├── MiscUnitsD2009.dproj │ │ ├── MiscUnitsD2009.res │ │ ├── MiscUnitsD2010.dpk │ │ ├── MiscUnitsD2010.dproj │ │ ├── MiscUnitsD2010.res │ │ ├── MiscUnitsD2011.dpk │ │ ├── MiscUnitsD2011.dproj │ │ ├── MiscUnitsD2011.res │ │ ├── MiscUnitsDXE2.dpk │ │ ├── MiscUnitsDXE2.dproj │ │ ├── MiscUnitsDXE2.res │ │ ├── MiscUnitsDXE2_Icon.ico │ │ ├── MiscUnitsDXE3.dpk │ │ ├── MiscUnitsDXE3.dproj │ │ ├── MiscUnitsDXE3.res │ │ ├── MiscUnitsDXE5.dpk │ │ ├── MiscUnitsDXE5.dproj │ │ ├── MiscUnitsDXE5.res │ │ ├── MiscUnitsDXE5.skincfg │ │ ├── MiscUnitsReg.dcr │ │ ├── MiscUnitsReg.pas │ │ ├── SpellCheckerForm.dfm │ │ ├── SpellCheckerForm.pas │ │ ├── cmpCWRichEdit.pas │ │ ├── cmpCWSpellChecker.pas │ │ ├── cmpExSplitter.pas │ │ ├── cmpExWebBrowser.pas │ │ ├── cmpFileCopier.pas │ │ ├── cmpHyperlinkButton.pas │ │ ├── cmpMessageDisplay.pas │ │ ├── cmpNTAboutBox.dfm │ │ ├── cmpNTAboutBox.pas │ │ ├── cmpNewsRichEdit.pas │ │ ├── cmpPersistentPosition.pas │ │ ├── cmpRuler.pas │ │ ├── cmpRunOnce.pas │ │ ├── cmpSpellChecker.pas │ │ ├── cmpSplitterPanel.pas │ │ ├── cmpStandardSystemMenu.pas │ │ ├── cmpThemedScrollBox.pas │ │ ├── unitGUIUtils.pas │ │ ├── unitHTMLStringsDisplayObject.pas │ │ └── unitNewsStringsDisplayObject.pas └── thirdparty │ ├── Indy10 │ ├── Core │ │ ├── AboutBackground.bmp │ │ ├── AboutIndyNET.resources │ │ ├── AboutProg.res │ │ ├── IconsDotNet │ │ │ ├── TIdAntiFreeze.bmp │ │ │ ├── TIdCmdTCPClient.bmp │ │ │ ├── TIdCmdTCPServer.bmp │ │ │ ├── TIdConnectionIntercept.bmp │ │ │ ├── TIdICMPClient.bmp │ │ │ ├── TIdIOHandlerStack.bmp │ │ │ ├── TIdIOHandlerStream.bmp │ │ │ ├── TIdIPMCastClient.bmp │ │ │ ├── TIdIPMCastServer.bmp │ │ │ ├── TIdInterceptSimLog.bmp │ │ │ ├── TIdInterceptThrottler.bmp │ │ │ ├── TIdLogDebug.bmp │ │ │ ├── TIdLogEvent.bmp │ │ │ ├── TIdLogFile.bmp │ │ │ ├── TIdLogStream.bmp │ │ │ ├── TIdSchedulerOfThreadDefault.bmp │ │ │ ├── TIdSchedulerOfThreadPool.bmp │ │ │ ├── TIdServerIOHandlerStack.bmp │ │ │ ├── TIdSimpleServer.bmp │ │ │ ├── TIdSocksInfo.bmp │ │ │ ├── TIdTCPClient.bmp │ │ │ ├── TIdTCPServer.bmp │ │ │ ├── TIdThreadComponent.bmp │ │ │ ├── TIdTraceRoute.bmp │ │ │ ├── TIdUDPClient.bmp │ │ │ └── TIdUDPServer.bmp │ │ ├── IdAbout.TWinForm.resources │ │ ├── IdAbout.TfrmAbout.resources │ │ ├── IdAbout.pas │ │ ├── IdAbout.resources │ │ ├── IdAbout.resx │ │ ├── IdAboutDotNET.TfrmAbout.resources │ │ ├── IdAboutDotNET.pas │ │ ├── IdAboutDotNET.resources │ │ ├── IdAboutDotNET.resx │ │ ├── IdAboutNET.resources │ │ ├── IdAboutVCL.RES │ │ ├── IdAboutVCL.lrs │ │ ├── IdAboutVCL.pas │ │ ├── IdAboutVCL.rc │ │ ├── IdAboutVCL.xpm │ │ ├── IdAntiFreeze.pas │ │ ├── IdAssignedNumbers.pas │ │ ├── IdBuffer.pas │ │ ├── IdCmdTCPClient.pas │ │ ├── IdCmdTCPServer.pas │ │ ├── IdCommandHandlers.pas │ │ ├── IdCompilerDefines.inc │ │ ├── IdContext.pas │ │ ├── IdCore90ASM90.inc │ │ ├── IdCoreDsnRegister.pas │ │ ├── IdCoreRegister.dcr │ │ ├── IdCoreRegisterCool.dcr │ │ ├── IdCreditsBitmap.res │ │ ├── IdCreditsBitmap.resources │ │ ├── IdCustomTCPServer.pas │ │ ├── IdCustomTransparentProxy.pas │ │ ├── IdDeprecatedImplBugOff.inc │ │ ├── IdDeprecatedImplBugOn.inc │ │ ├── IdDsnBaseCmpEdt.pas │ │ ├── IdDsnCoreResourceStrings.pas │ │ ├── IdDsnPropEdBinding.pas │ │ ├── IdDsnPropEdBindingNET.TIdDsnPropEdBindingNET.resources │ │ ├── IdDsnPropEdBindingNET.pas │ │ ├── IdDsnPropEdBindingNET.resx │ │ ├── IdDsnPropEdBindingVCL.pas │ │ ├── IdExceptionCore.pas │ │ ├── IdGlobalCore.pas │ │ ├── IdIOHandler.pas │ │ ├── IdIOHandlerSocket.pas │ │ ├── IdIOHandlerStack.pas │ │ ├── IdIOHandlerStream.pas │ │ ├── IdIPAddress.pas │ │ ├── IdIPMCastBase.pas │ │ ├── IdIPMCastClient.pas │ │ ├── IdIPMCastServer.pas │ │ ├── IdIcmpClient.pas │ │ ├── IdIntercept.pas │ │ ├── IdInterceptSimLog.pas │ │ ├── IdInterceptThrottler.pas │ │ ├── IdLogBase.pas │ │ ├── IdLogDebug.pas │ │ ├── IdLogEvent.pas │ │ ├── IdLogFile.pas │ │ ├── IdLogStream.pas │ │ ├── IdRawBase.pas │ │ ├── IdRawClient.pas │ │ ├── IdRawFunctions.pas │ │ ├── IdRawHeaders.pas │ │ ├── IdRegisterCore.lrs │ │ ├── IdRegisterCore.pas │ │ ├── IdReply.pas │ │ ├── IdReplyRFC.pas │ │ ├── IdResourceStringsCore.pas │ │ ├── IdScheduler.pas │ │ ├── IdSchedulerOfThread.pas │ │ ├── IdSchedulerOfThreadDefault.pas │ │ ├── IdSchedulerOfThreadPool.pas │ │ ├── IdServerIOHandler.pas │ │ ├── IdServerIOHandlerSocket.pas │ │ ├── IdServerIOHandlerStack.pas │ │ ├── IdSimpleServer.pas │ │ ├── IdSocketHandle.pas │ │ ├── IdSocks.pas │ │ ├── IdSymbolDeprecatedOff.inc │ │ ├── IdSymbolDeprecatedOn.inc │ │ ├── IdSymbolPlatformOff.inc │ │ ├── IdSymbolPlatformOn.inc │ │ ├── IdSync.pas │ │ ├── IdTCPClient.pas │ │ ├── IdTCPConnection.pas │ │ ├── IdTCPServer.pas │ │ ├── IdTCPStream.pas │ │ ├── IdTask.pas │ │ ├── IdThread.pas │ │ ├── IdThreadComponent.pas │ │ ├── IdThreadSafe.pas │ │ ├── IdTraceRoute.pas │ │ ├── IdUDPBase.pas │ │ ├── IdUDPClient.pas │ │ ├── IdUDPServer.pas │ │ ├── IdUnitPlatformOff.inc │ │ ├── IdUnitPlatformOn.inc │ │ ├── IdYarn.pas │ │ ├── IddclCore90ASM90.inc │ │ ├── IndyCar.bmp │ │ ├── IndyCore.rc │ │ ├── IndyCore.rc.tmpl │ │ ├── IndyCore100.bdsproj │ │ ├── IndyCore100.cfg1 │ │ ├── IndyCore100.cfg2 │ │ ├── IndyCore100.dpk │ │ ├── IndyCore100.rc │ │ ├── IndyCore100.rc.tmpl │ │ ├── IndyCore100.res │ │ ├── IndyCore100Net.bdsproj │ │ ├── IndyCore100Net.dpk │ │ ├── IndyCore110.RES │ │ ├── IndyCore110.cfg1 │ │ ├── IndyCore110.cfg2 │ │ ├── IndyCore110.dpk │ │ ├── IndyCore110.rc │ │ ├── IndyCore110.rc.tmpl │ │ ├── IndyCore110Net.dpk │ │ ├── IndyCore120.cfg1 │ │ ├── IndyCore120.cfg2 │ │ ├── IndyCore120.dpk │ │ ├── IndyCore120.proj │ │ ├── IndyCore120.rc │ │ ├── IndyCore120.rc.tmpl │ │ ├── IndyCore120.res │ │ ├── IndyCore120Net.dpk │ │ ├── IndyCore130.dpk │ │ ├── IndyCore130.rc │ │ ├── IndyCore130.rc.tmpl │ │ ├── IndyCore130.res │ │ ├── IndyCore130Net.dpk │ │ ├── IndyCore140.RES │ │ ├── IndyCore140.cfg1 │ │ ├── IndyCore140.cfg2 │ │ ├── IndyCore140.dpk │ │ ├── IndyCore140.rc │ │ ├── IndyCore140.rc.tmpl │ │ ├── IndyCore150.RES │ │ ├── IndyCore150.cfg1 │ │ ├── IndyCore150.cfg2 │ │ ├── IndyCore150.dpk │ │ ├── IndyCore150.rc │ │ ├── IndyCore150.rc.tmpl │ │ ├── IndyCore160.dpk │ │ ├── IndyCore160.dproj │ │ ├── IndyCore160.rc │ │ ├── IndyCore160.rc.tmpl │ │ ├── IndyCore160.res │ │ ├── IndyCore170.dpk │ │ ├── IndyCore170.dproj │ │ ├── IndyCore170.rc │ │ ├── IndyCore170.rc.tmpl │ │ ├── IndyCore170.res │ │ ├── IndyCore180.dpk │ │ ├── IndyCore180.dproj │ │ ├── IndyCore180.rc │ │ ├── IndyCore180.rc.tmpl │ │ ├── IndyCore180.res │ │ ├── IndyCore190.dpk │ │ ├── IndyCore190.dproj │ │ ├── IndyCore190.rc │ │ ├── IndyCore190.rc.tmpl │ │ ├── IndyCore190.res │ │ ├── IndyCore200.dpk │ │ ├── IndyCore200.dproj │ │ ├── IndyCore200.rc │ │ ├── IndyCore200.rc.tmpl │ │ ├── IndyCore200.res │ │ ├── IndyCore210.dpk │ │ ├── IndyCore210.dproj │ │ ├── IndyCore210.rc │ │ ├── IndyCore210.rc.tmpl │ │ ├── IndyCore210.res │ │ ├── IndyCore220.dpk │ │ ├── IndyCore220.dproj │ │ ├── IndyCore220.rc │ │ ├── IndyCore220.rc.tmpl │ │ ├── IndyCore220.res │ │ ├── IndyCore230.dpk │ │ ├── IndyCore230.dproj │ │ ├── IndyCore230.rc │ │ ├── IndyCore230.rc.tmpl │ │ ├── IndyCore230.res │ │ ├── IndyCore240.dpk │ │ ├── IndyCore240.dproj │ │ ├── IndyCore240.rc │ │ ├── IndyCore240.rc.tmpl │ │ ├── IndyCore240.res │ │ ├── IndyCore40.RES │ │ ├── IndyCore40.rc │ │ ├── IndyCore40.rc.tmpl │ │ ├── IndyCore50.RES │ │ ├── IndyCore50.cfg1 │ │ ├── IndyCore50.cfg2 │ │ ├── IndyCore50.dpk │ │ ├── IndyCore50.rc │ │ ├── IndyCore50.rc.tmpl │ │ ├── IndyCore60.RES │ │ ├── IndyCore60.cfg1 │ │ ├── IndyCore60.cfg2 │ │ ├── IndyCore60.dpk │ │ ├── IndyCore60.rc │ │ ├── IndyCore60.rc.tmpl │ │ ├── IndyCore70.RES │ │ ├── IndyCore70.dpk │ │ ├── IndyCore70.rc │ │ ├── IndyCore70.rc.tmpl │ │ ├── IndyCore90.RES │ │ ├── IndyCore90.bdsproj │ │ ├── IndyCore90.dpk │ │ ├── IndyCore90.rc │ │ ├── IndyCore90.rc.tmpl │ │ ├── IndyCore90Net.bdsproj │ │ ├── IndyCore90Net.dpk │ │ ├── IndyCoreK3.dpk │ │ ├── IndyCore_Icon.ico │ │ ├── Makefile.fpc │ │ ├── Makefile.fpc.tmpl │ │ ├── Res │ │ │ ├── IdCreditsBitmap.RES │ │ │ ├── IdCreditsBitmap.rc │ │ │ ├── Maint │ │ │ │ ├── 1sink.jpg │ │ │ │ ├── 1sinkCropped.jpg │ │ │ │ ├── 1sinkPlainCropped.jpg │ │ │ │ ├── 1sinkPlainCroppedRed.bmp │ │ │ │ ├── 1sinkPlainCroppedRed.jpg │ │ │ │ └── sinkdr.wav │ │ │ ├── Sink.bmp │ │ │ ├── TIDABOUTPICTURE.BMP │ │ │ ├── makeres.bat │ │ │ └── sinkdr.wav │ │ ├── dclIndyCore.rc │ │ ├── dclIndyCore.rc.tmpl │ │ ├── dclIndyCore100.bdsproj │ │ ├── dclIndyCore100.cfg1 │ │ ├── dclIndyCore100.dpk │ │ ├── dclIndyCore100.rc │ │ ├── dclIndyCore100.rc.tmpl │ │ ├── dclIndyCore100.res │ │ ├── dclIndyCore100Net.bdsproj │ │ ├── dclIndyCore100Net.dpk │ │ ├── dclIndyCore110.RES │ │ ├── dclIndyCore110.cfg1 │ │ ├── dclIndyCore110.dpk │ │ ├── dclIndyCore110.rc │ │ ├── dclIndyCore110.rc.tmpl │ │ ├── dclIndyCore110Net.dpk │ │ ├── dclIndyCore120.RES │ │ ├── dclIndyCore120.cfg1 │ │ ├── dclIndyCore120.dpk │ │ ├── dclIndyCore120.proj │ │ ├── dclIndyCore120.rc │ │ ├── dclIndyCore120.rc.tmpl │ │ ├── dclIndyCore120Net.dpk │ │ ├── dclIndyCore130.dpk │ │ ├── dclIndyCore130.rc │ │ ├── dclIndyCore130.rc.tmpl │ │ ├── dclIndyCore130.res │ │ ├── dclIndyCore130Net.dpk │ │ ├── dclIndyCore140.RES │ │ ├── dclIndyCore140.cfg1 │ │ ├── dclIndyCore140.dpk │ │ ├── dclIndyCore140.rc │ │ ├── dclIndyCore140.rc.tmpl │ │ ├── dclIndyCore150.RES │ │ ├── dclIndyCore150.cfg1 │ │ ├── dclIndyCore150.dpk │ │ ├── dclIndyCore150.rc │ │ ├── dclIndyCore150.rc.tmpl │ │ ├── dclIndyCore160.dpk │ │ ├── dclIndyCore160.dproj │ │ ├── dclIndyCore160.rc │ │ ├── dclIndyCore160.rc.tmpl │ │ ├── dclIndyCore160.res │ │ ├── dclIndyCore170.dpk │ │ ├── dclIndyCore170.dproj │ │ ├── dclIndyCore170.rc │ │ ├── dclIndyCore170.rc.tmpl │ │ ├── dclIndyCore170.res │ │ ├── dclIndyCore180.dpk │ │ ├── dclIndyCore180.dproj │ │ ├── dclIndyCore180.rc │ │ ├── dclIndyCore180.rc.tmpl │ │ ├── dclIndyCore180.res │ │ ├── dclIndyCore190.dpk │ │ ├── dclIndyCore190.dproj │ │ ├── dclIndyCore190.rc │ │ ├── dclIndyCore190.rc.tmpl │ │ ├── dclIndyCore190.res │ │ ├── dclIndyCore200.dpk │ │ ├── dclIndyCore200.dproj │ │ ├── dclIndyCore200.rc │ │ ├── dclIndyCore200.rc.tmpl │ │ ├── dclIndyCore200.res │ │ ├── dclIndyCore210.dpk │ │ ├── dclIndyCore210.dproj │ │ ├── dclIndyCore210.rc │ │ ├── dclIndyCore210.rc.tmpl │ │ ├── dclIndyCore210.res │ │ ├── dclIndyCore220.dpk │ │ ├── dclIndyCore220.dproj │ │ ├── dclIndyCore220.rc │ │ ├── dclIndyCore220.rc.tmpl │ │ ├── dclIndyCore220.res │ │ ├── dclIndyCore230.dpk │ │ ├── dclIndyCore230.dproj │ │ ├── dclIndyCore230.rc │ │ ├── dclIndyCore230.rc.tmpl │ │ ├── dclIndyCore230.res │ │ ├── dclIndyCore240.dpk │ │ ├── dclIndyCore240.dproj │ │ ├── dclIndyCore240.rc │ │ ├── dclIndyCore240.rc.tmpl │ │ ├── dclIndyCore240.res │ │ ├── dclIndyCore40.RES │ │ ├── dclIndyCore40.dpk │ │ ├── dclIndyCore40.rc │ │ ├── dclIndyCore40.rc.tmpl │ │ ├── dclIndyCore50.cfg1 │ │ ├── dclIndyCore50.cfg2 │ │ ├── dclIndyCore50.dpk │ │ ├── dclIndyCore50.rc │ │ ├── dclIndyCore50.rc.tmpl │ │ ├── dclIndyCore50.res │ │ ├── dclIndyCore60.cfg1 │ │ ├── dclIndyCore60.cfg2 │ │ ├── dclIndyCore60.dpk │ │ ├── dclIndyCore60.rc │ │ ├── dclIndyCore60.rc.tmpl │ │ ├── dclIndyCore60.res │ │ ├── dclIndyCore70.dpk │ │ ├── dclIndyCore70.rc │ │ ├── dclIndyCore70.rc.tmpl │ │ ├── dclIndyCore70.res │ │ ├── dclIndyCore80Net.dpk │ │ ├── dclIndyCore90.bdsproj │ │ ├── dclIndyCore90.dpk │ │ ├── dclIndyCore90.rc │ │ ├── dclIndyCore90.rc.tmpl │ │ ├── dclIndyCore90.res │ │ ├── dclIndyCore90Net.bdsproj │ │ ├── dclIndyCore90Net.dpk │ │ ├── dclIndyCore_Icon.ico │ │ ├── dclindycorek3.dpk │ │ ├── dclindycorek3.dpkl │ │ ├── dclindycorek3.res │ │ ├── dclindycorelaz.lpk │ │ ├── dclindycorelaz.lpk.tmpl │ │ ├── indy_pit_crew_credits_window.psd │ │ └── indycorefpc.pas │ ├── Protocols │ │ ├── DelphiZLib.cpp │ │ ├── DelphiZLib.lib │ │ ├── IconsDotNet │ │ │ ├── TIdBlockCipherIntercept.bmp │ │ │ ├── TIdChargenServer.bmp │ │ │ ├── TIdChargenUDPServer.bmp │ │ │ ├── TIdConnectThroughHttpProxy.bmp │ │ │ ├── TIdCookieManager.bmp │ │ │ ├── TIdDICT.bmp │ │ │ ├── TIdDICTServer.bmp │ │ │ ├── TIdDISCARDServer.bmp │ │ │ ├── TIdDNSResolver.bmp │ │ │ ├── TIdDNSServer.bmp │ │ │ ├── TIdDateTimeStamp.bmp │ │ │ ├── TIdDayTime.bmp │ │ │ ├── TIdDayTimeServer.bmp │ │ │ ├── TIdDayTimeUDP.bmp │ │ │ ├── TIdDayTimeUDPServer.bmp │ │ │ ├── TIdDecoderBinHex4.bmp │ │ │ ├── TIdDecoderMIME.bmp │ │ │ ├── TIdDecoderQuotedPrintable.bmp │ │ │ ├── TIdDecoderUUE.bmp │ │ │ ├── TIdDecoderXXE.bmp │ │ │ ├── TIdDiscardUDPServer.bmp │ │ │ ├── TIdECHOServer.bmp │ │ │ ├── TIdEcho.bmp │ │ │ ├── TIdEchoUDP.bmp │ │ │ ├── TIdEchoUDPServer.bmp │ │ │ ├── TIdEncoderBinHex4.bmp │ │ │ ├── TIdEncoderMIME.bmp │ │ │ ├── TIdEncoderQuotedPrintable.bmp │ │ │ ├── TIdEncoderUUE.bmp │ │ │ ├── TIdEncoderXXE.bmp │ │ │ ├── TIdFSP.bmp │ │ │ ├── TIdFTP.bmp │ │ │ ├── TIdFTPServer.bmp │ │ │ ├── TIdFinger.bmp │ │ │ ├── TIdFingerServer.bmp │ │ │ ├── TIdGopher.bmp │ │ │ ├── TIdGopherServer.bmp │ │ │ ├── TIdHTTP.bmp │ │ │ ├── TIdHTTPProxyServer.bmp │ │ │ ├── TIdHTTPServer.bmp │ │ │ ├── TIdHostnameServer.bmp │ │ │ ├── TIdIMAP4.bmp │ │ │ ├── TIdIMAP4Server.bmp │ │ │ ├── TIdIOHandlerChain.bmp │ │ │ ├── TIdIOHandlerSocket.bmp │ │ │ ├── TIdIOHandlerThrottle.bmp │ │ │ ├── TIdIPAddrMon.bmp │ │ │ ├── TIdIPWatch.bmp │ │ │ ├── TIdIRC.bmp │ │ │ ├── TIdIRCServer.bmp │ │ │ ├── TIdIdent.bmp │ │ │ ├── TIdIdentServer.bmp │ │ │ ├── TIdLPR.bmp │ │ │ ├── TIdMBCSDecoder.bmp │ │ │ ├── TIdMailBox.bmp │ │ │ ├── TIdMappedFTP.bmp │ │ │ ├── TIdMappedPOP3.bmp │ │ │ ├── TIdMappedPortTCP.bmp │ │ │ ├── TIdMappedPortUDP.bmp │ │ │ ├── TIdMappedTelnet.bmp │ │ │ ├── TIdMessage.bmp │ │ │ ├── TIdMessageDecoder.bmp │ │ │ ├── TIdMessageDecoderMIME.bmp │ │ │ ├── TIdMessageDecoderYENC.bmp │ │ │ ├── TIdMessageEncoder.bmp │ │ │ ├── TIdMessageEncoderMIME.bmp │ │ │ ├── TIdMessageEncoderYENC.bmp │ │ │ ├── TIdNNTP.bmp │ │ │ ├── TIdNNTPServer.bmp │ │ │ ├── TIdNetworkCalculator.bmp │ │ │ ├── TIdPOP3.bmp │ │ │ ├── TIdPOP3Server.bmp │ │ │ ├── TIdQOTD.bmp │ │ │ ├── TIdQOTDServer.bmp │ │ │ ├── TIdQOTDUDP.bmp │ │ │ ├── TIdQotdUDPServer.bmp │ │ │ ├── TIdRSH.bmp │ │ │ ├── TIdRSHServer.bmp │ │ │ ├── TIdRawClient.bmp │ │ │ ├── TIdRexec.bmp │ │ │ ├── TIdRexecServer.bmp │ │ │ ├── TIdSASL.bmp │ │ │ ├── TIdSASLAnonymous.bmp │ │ │ ├── TIdSASLCRAMMD5.bmp │ │ │ ├── TIdSASLDigest.bmp │ │ │ ├── TIdSASLExternal.bmp │ │ │ ├── TIdSASLList.bmp │ │ │ ├── TIdSASLLogin.bmp │ │ │ ├── TIdSASLOTP.bmp │ │ │ ├── TIdSASLPlain.bmp │ │ │ ├── TIdSASLSKey.bmp │ │ │ ├── TIdSMTP.bmp │ │ │ ├── TIdSMTPRelay.bmp │ │ │ ├── TIdSMTPServer.bmp │ │ │ ├── TIdSNPP.bmp │ │ │ ├── TIdSNTP.bmp │ │ │ ├── TIdSOCKSServer.bmp │ │ │ ├── TIdSSLIOHandlerSocket.bmp │ │ │ ├── TIdSSLIOHandlerSocketNET.bmp │ │ │ ├── TIdServerCompressionIntercept.bmp │ │ │ ├── TIdServerIOHandlerSSLNET.bmp │ │ │ ├── TIdServerIOHandlerSocket.bmp │ │ │ ├── TIdServerIOHandlerStream.bmp │ │ │ ├── TIdServerInterceptLogEvent.bmp │ │ │ ├── TIdServerInterceptLogFile.bmp │ │ │ ├── TIdSysLog.bmp │ │ │ ├── TIdSysLogMessage.bmp │ │ │ ├── TIdSyslogServer.bmp │ │ │ ├── TIdSystat.bmp │ │ │ ├── TIdSystatServer.bmp │ │ │ ├── TIdSystatUDP.bmp │ │ │ ├── TIdSystatUDPServer.bmp │ │ │ ├── TIdTelnet.bmp │ │ │ ├── TIdTelnetServer.bmp │ │ │ ├── TIdTime.bmp │ │ │ ├── TIdTimeServer.bmp │ │ │ ├── TIdTimeUDP.bmp │ │ │ ├── TIdTimeUDPServer.bmp │ │ │ ├── TIdTrivialFTP.bmp │ │ │ ├── TIdTrivialFTPServer.bmp │ │ │ ├── TIdTunnelMaster.bmp │ │ │ ├── TIdTunnelSlave.bmp │ │ │ ├── TIdUnixTime.bmp │ │ │ ├── TIdUnixTimeServer.bmp │ │ │ ├── TIdUnixTimeUDP.bmp │ │ │ ├── TIdUnixTimeUDPServer.bmp │ │ │ ├── TIdUserAccounts.bmp │ │ │ ├── TIdUserManager.bmp │ │ │ ├── TIdUserPassProvider.bmp │ │ │ ├── TIdVCard.bmp │ │ │ ├── TIdWebDAV.bmp │ │ │ ├── TIdWhoIsServer.bmp │ │ │ ├── TIdWhois.bmp │ │ │ └── Unref │ │ │ │ ├── TIDIMFEncoder.bmp │ │ │ │ ├── TIDMBCSEncoder.bmp │ │ │ │ ├── TIdCoderMD2.bmp │ │ │ │ ├── TIdCoderMD4.bmp │ │ │ │ ├── TIdCoderMD5.bmp │ │ │ │ ├── TIdCompressionIntercept.bmp │ │ │ │ ├── TIdCompressorBorZLib.bmp │ │ │ │ ├── TIdCompressorZLibEx.bmp │ │ │ │ ├── TIdConnectionInterceptOpenSSL.bmp │ │ │ │ ├── TIdFTPFileSystem.bmp │ │ │ │ ├── TIdHL7.bmp │ │ │ │ ├── TIdIMFDecoder.bmp │ │ │ │ ├── TIdRLECompress.bmp │ │ │ │ ├── TIdRLEDecompress.bmp │ │ │ │ ├── TIdSNMP.bmp │ │ │ │ ├── TIdSSLIOHandlerSocketOpenSSL.bmp │ │ │ │ ├── TIdServerIOHandlerOpenSSL.bmp │ │ │ │ ├── TIdServerIOHandlerSSL.bmp │ │ │ │ ├── TIdServerInterceptOpenSSL.bmp │ │ │ │ ├── TIdThreadMgrDefault.bmp │ │ │ │ └── TIdThreadMgrPool.bmp │ │ ├── IdASN1Coder.pas │ │ ├── IdASN1Util.pas │ │ ├── IdAllAuthentications.pas │ │ ├── IdAllFTPListParsers.pas │ │ ├── IdAllHeaderCoders.pas │ │ ├── IdAttachment.pas │ │ ├── IdAttachmentFile.pas │ │ ├── IdAttachmentMemory.pas │ │ ├── IdAuthentication.pas │ │ ├── IdAuthenticationDigest.pas │ │ ├── IdAuthenticationManager.pas │ │ ├── IdAuthenticationNTLM.pas │ │ ├── IdAuthenticationSSPI.pas │ │ ├── IdBlockCipherIntercept.pas │ │ ├── IdChargenServer.pas │ │ ├── IdChargenUDPServer.pas │ │ ├── IdCharsets.pas │ │ ├── IdCoder.pas │ │ ├── IdCoder00E.pas │ │ ├── IdCoder3to4.pas │ │ ├── IdCoderBinHex4.pas │ │ ├── IdCoderHeader.pas │ │ ├── IdCoderMIME.pas │ │ ├── IdCoderQuotedPrintable.pas │ │ ├── IdCoderTNEF.pas │ │ ├── IdCoderUUE.pas │ │ ├── IdCoderXXE.pas │ │ ├── IdCompilerDefines.inc │ │ ├── IdCompressionIntercept.pas │ │ ├── IdCompressorZLib.pas │ │ ├── IdConnectThroughHttpProxy.pas │ │ ├── IdContainers.pas │ │ ├── IdCookie.pas │ │ ├── IdCookieManager.pas │ │ ├── IdCustomHTTPServer.pas │ │ ├── IdDICT.pas │ │ ├── IdDICTCommon.pas │ │ ├── IdDICTServer.pas │ │ ├── IdDNSCommon.pas │ │ ├── IdDNSResolver.pas │ │ ├── IdDNSServer.pas │ │ ├── IdDateTimeStamp.pas │ │ ├── IdDayTime.pas │ │ ├── IdDayTimeServer.pas │ │ ├── IdDayTimeUDP.pas │ │ ├── IdDayTimeUDPServer.pas │ │ ├── IdDeprecatedImplBugOff.inc │ │ ├── IdDeprecatedImplBugOn.inc │ │ ├── IdDiscardServer.pas │ │ ├── IdDiscardUDPServer.pas │ │ ├── IdDsnRegister.pas │ │ ├── IdDsnResourceStrings.pas │ │ ├── IdDsnSASLListEditor.pas │ │ ├── IdDsnSASLListEditorForm.pas │ │ ├── IdDsnSASLListEditorFormNET.TfrmSASLListEditor.resources │ │ ├── IdDsnSASLListEditorFormNET.pas │ │ ├── IdDsnSASLListEditorFormNET.resx │ │ ├── IdDsnSASLListEditorFormVCL.lrs │ │ ├── IdDsnSASLListEditorFormVCL.pas │ │ ├── IdDummyUnit.pas │ │ ├── IdEMailAddress.pas │ │ ├── IdEcho.pas │ │ ├── IdEchoServer.pas │ │ ├── IdEchoUDP.pas │ │ ├── IdEchoUDPServer.pas │ │ ├── IdExplicitTLSClientServerBase.pas │ │ ├── IdFIPS.pas │ │ ├── IdFSP.pas │ │ ├── IdFTP.pas │ │ ├── IdFTPBaseFileSystem.pas │ │ ├── IdFTPCommon.pas │ │ ├── IdFTPList.pas │ │ ├── IdFTPListOutput.pas │ │ ├── IdFTPListParseAS400.pas │ │ ├── IdFTPListParseBase.pas │ │ ├── IdFTPListParseBullGCOS7.pas │ │ ├── IdFTPListParseBullGCOS8.pas │ │ ├── IdFTPListParseChameleonNewt.pas │ │ ├── IdFTPListParseCiscoIOS.pas │ │ ├── IdFTPListParseDistinctTCPIP.pas │ │ ├── IdFTPListParseEPLF.pas │ │ ├── IdFTPListParseHellSoft.pas │ │ ├── IdFTPListParseIEFTPGateway.pas │ │ ├── IdFTPListParseKA9Q.pas │ │ ├── IdFTPListParseMPEiX.pas │ │ ├── IdFTPListParseMVS.pas │ │ ├── IdFTPListParseMicrowareOS9.pas │ │ ├── IdFTPListParseMusic.pas │ │ ├── IdFTPListParseNCSAForDOS.pas │ │ ├── IdFTPListParseNCSAForMACOS.pas │ │ ├── IdFTPListParseNovellNetware.pas │ │ ├── IdFTPListParseNovellNetwarePSU.pas │ │ ├── IdFTPListParseOS2.pas │ │ ├── IdFTPListParsePCNFSD.pas │ │ ├── IdFTPListParsePCTCP.pas │ │ ├── IdFTPListParseStercomOS390Exp.pas │ │ ├── IdFTPListParseStercomUnixEnt.pas │ │ ├── IdFTPListParseStratusVOS.pas │ │ ├── IdFTPListParseSuperTCP.pas │ │ ├── IdFTPListParseTOPS20.pas │ │ ├── IdFTPListParseTSXPlus.pas │ │ ├── IdFTPListParseTandemGuardian.pas │ │ ├── IdFTPListParseUnisysClearPath.pas │ │ ├── IdFTPListParseUnix.pas │ │ ├── IdFTPListParseVM.pas │ │ ├── IdFTPListParseVMS.pas │ │ ├── IdFTPListParseVSE.pas │ │ ├── IdFTPListParseVxWorks.pas │ │ ├── IdFTPListParseWfFTP.pas │ │ ├── IdFTPListParseWinQVTNET.pas │ │ ├── IdFTPListParseWindowsNT.pas │ │ ├── IdFTPListParseXecomMicroRTOS.pas │ │ ├── IdFTPListTypes.pas │ │ ├── IdFTPServer.pas │ │ ├── IdFTPServerContextBase.pas │ │ ├── IdFinger.pas │ │ ├── IdFingerServer.pas │ │ ├── IdGlobalProtocols.pas │ │ ├── IdGopher.pas │ │ ├── IdGopherConsts.pas │ │ ├── IdGopherServer.pas │ │ ├── IdHL7.pas │ │ ├── IdHMAC.pas │ │ ├── IdHMACMD5.pas │ │ ├── IdHMACSHA1.pas │ │ ├── IdHTTP.pas │ │ ├── IdHTTPHeaderInfo.pas │ │ ├── IdHTTPProxyServer.pas │ │ ├── IdHTTPServer.pas │ │ ├── IdHTTPWebBrokerBridge.pas │ │ ├── IdHash.pas │ │ ├── IdHashAdler32.pas │ │ ├── IdHashCRC.pas │ │ ├── IdHashElf.pas │ │ ├── IdHashIntf.pas │ │ ├── IdHashMessageDigest.pas │ │ ├── IdHashSHA.pas │ │ ├── IdHashSHA1.pas │ │ ├── IdHeaderCoder2022JP.pas │ │ ├── IdHeaderCoderBase.pas │ │ ├── IdHeaderCoderBig5.pas │ │ ├── IdHeaderCoderIndy.pas │ │ ├── IdHeaderCoderPlain.pas │ │ ├── IdHeaderList.pas │ │ ├── IdHostnameServer.pas │ │ ├── IdIMAP4.pas │ │ ├── IdIMAP4Server.pas │ │ ├── IdIOChecksOff.inc │ │ ├── IdIOChecksOn.inc │ │ ├── IdIPAddrMon.pas │ │ ├── IdIPWatch.pas │ │ ├── IdIRC.pas │ │ ├── IdIdent.pas │ │ ├── IdIdentServer.pas │ │ ├── IdIrcServer.pas │ │ ├── IdLDAPV3.pas │ │ ├── IdLDAPV3Coder.pas │ │ ├── IdLPR.pas │ │ ├── IdMIMETypes.pas │ │ ├── IdMailBox.pas │ │ ├── IdMappedFTP.pas │ │ ├── IdMappedPOP3.pas │ │ ├── IdMappedPortTCP.pas │ │ ├── IdMappedPortUDP.pas │ │ ├── IdMappedTelnet.pas │ │ ├── IdMessage.pas │ │ ├── IdMessageBuilder.pas │ │ ├── IdMessageClient.pas │ │ ├── IdMessageCoder.pas │ │ ├── IdMessageCoderBinHex4.pas │ │ ├── IdMessageCoderMIME.pas │ │ ├── IdMessageCoderQuotedPrintable.pas │ │ ├── IdMessageCoderUUE.pas │ │ ├── IdMessageCoderXXE.pas │ │ ├── IdMessageCoderYenc.pas │ │ ├── IdMessageCollection.pas │ │ ├── IdMessageHelper.pas │ │ ├── IdMessageParts.pas │ │ ├── IdMultipartFormData.pas │ │ ├── IdNNTP.pas │ │ ├── IdNNTPServer.pas │ │ ├── IdNTLM.pas │ │ ├── IdNTLMv2.pas │ │ ├── IdNetworkCalculator.pas │ │ ├── IdOSFileName.pas │ │ ├── IdOTPCalculator.pas │ │ ├── IdPOP3.pas │ │ ├── IdPOP3Server.pas │ │ ├── IdPOP4Server.pas │ │ ├── IdProtocols90ASM90.inc │ │ ├── IdQOTDUDP.pas │ │ ├── IdQOTDUDPServer.pas │ │ ├── IdQotd.pas │ │ ├── IdQotdServer.pas │ │ ├── IdRSH.pas │ │ ├── IdRSHServer.pas │ │ ├── IdRegister.dcr │ │ ├── IdRegister.lrs │ │ ├── IdRegister.pas │ │ ├── IdRegisterCool.dcr │ │ ├── IdRemoteCMDClient.pas │ │ ├── IdRemoteCMDServer.pas │ │ ├── IdReplyFTP.pas │ │ ├── IdReplyIMAP4.pas │ │ ├── IdReplyPOP3.pas │ │ ├── IdReplySMTP.pas │ │ ├── IdResourceStringsOpenSSL.pas │ │ ├── IdResourceStringsProtocols.pas │ │ ├── IdResourceStringsSSLDotNet.pas │ │ ├── IdResourceStringsSSPI.pas │ │ ├── IdResourceStringsUriUtils.pas │ │ ├── IdRexec.pas │ │ ├── IdRexecServer.pas │ │ ├── IdSASL.pas │ │ ├── IdSASLAnonymous.pas │ │ ├── IdSASLCollection.pas │ │ ├── IdSASLDigest.pas │ │ ├── IdSASLExternal.pas │ │ ├── IdSASLListEditorForm.RES │ │ ├── IdSASLListEditorForm.resources │ │ ├── IdSASLLogin.pas │ │ ├── IdSASLOTP.pas │ │ ├── IdSASLPlain.pas │ │ ├── IdSASLSKey.pas │ │ ├── IdSASLUserPass.pas │ │ ├── IdSASL_CRAMBase.pas │ │ ├── IdSASL_CRAM_MD5.pas │ │ ├── IdSASL_CRAM_SHA1.pas │ │ ├── IdSASL_NTLM.pas │ │ ├── IdSMTP.pas │ │ ├── IdSMTPBase.pas │ │ ├── IdSMTPRelay.pas │ │ ├── IdSMTPServer.pas │ │ ├── IdSNMP.pas │ │ ├── IdSNPP.pas │ │ ├── IdSNTP.pas │ │ ├── IdSSH.pas │ │ ├── IdSSL.pas │ │ ├── IdSSLDotNET.pas │ │ ├── IdSSLOpenSSL.pas │ │ ├── IdSSLOpenSSLHeaders.pas │ │ ├── IdSSLOpenSSLHeaders_static.pas │ │ ├── IdSSLOpenSSLUtils.pas │ │ ├── IdSSPI.pas │ │ ├── IdSecurity90ASM90.inc │ │ ├── IdServerIOHandlerSSLOpenSSL.pas │ │ ├── IdServerInterceptLogBase.pas │ │ ├── IdServerInterceptLogEvent.pas │ │ ├── IdServerInterceptLogFile.pas │ │ ├── IdSocksServer.pas │ │ ├── IdStrings.pas │ │ ├── IdSymbolDeprecatedOff.inc │ │ ├── IdSymbolDeprecatedOn.inc │ │ ├── IdSymbolPlatformOff.inc │ │ ├── IdSymbolPlatformOn.inc │ │ ├── IdSysLog.pas │ │ ├── IdSysLogMessage.pas │ │ ├── IdSysLogServer.pas │ │ ├── IdSystat.pas │ │ ├── IdSystatServer.pas │ │ ├── IdSystatUDP.pas │ │ ├── IdSystatUDPServer.pas │ │ ├── IdTelnet.pas │ │ ├── IdTelnetServer.pas │ │ ├── IdText.pas │ │ ├── IdTime.pas │ │ ├── IdTimeServer.pas │ │ ├── IdTimeUDP.pas │ │ ├── IdTimeUDPServer.pas │ │ ├── IdTrivialFTP.pas │ │ ├── IdTrivialFTPBase.pas │ │ ├── IdTrivialFTPServer.pas │ │ ├── IdTunnelCommon.pas │ │ ├── IdTunnelMaster.pas │ │ ├── IdTunnelSlave.pas │ │ ├── IdURI.pas │ │ ├── IdUnitPlatformOff.inc │ │ ├── IdUnitPlatformOn.inc │ │ ├── IdUnixTime.pas │ │ ├── IdUnixTimeServer.pas │ │ ├── IdUnixTimeUDP.pas │ │ ├── IdUnixTimeUDPServer.pas │ │ ├── IdUriUtils.pas │ │ ├── IdUserAccounts.pas │ │ ├── IdUserAccountsOTP.pas │ │ ├── IdUserPassProvider.pas │ │ ├── IdVCard.pas │ │ ├── IdWebDAV.pas │ │ ├── IdWhoIsServer.pas │ │ ├── IdWhois.pas │ │ ├── IdZLib.pas │ │ ├── IdZLibCompressorBase.pas │ │ ├── IdZLibConst.pas │ │ ├── IdZLibHeaders.pas │ │ ├── IddclProtocols90ASM90.inc │ │ ├── IndyProtocols.rc │ │ ├── IndyProtocols.rc.tmpl │ │ ├── IndyProtocols100.bdsproj │ │ ├── IndyProtocols100.cfg1 │ │ ├── IndyProtocols100.cfg2 │ │ ├── IndyProtocols100.dpk │ │ ├── IndyProtocols100.rc │ │ ├── IndyProtocols100.rc.tmpl │ │ ├── IndyProtocols100.res │ │ ├── IndyProtocols100Net.bdsproj │ │ ├── IndyProtocols100Net.dpk │ │ ├── IndyProtocols110.RES │ │ ├── IndyProtocols110.cfg1 │ │ ├── IndyProtocols110.cfg2 │ │ ├── IndyProtocols110.dpk │ │ ├── IndyProtocols110.rc │ │ ├── IndyProtocols110.rc.tmpl │ │ ├── IndyProtocols110Net.dpk │ │ ├── IndyProtocols120.cfg1 │ │ ├── IndyProtocols120.cfg2 │ │ ├── IndyProtocols120.dpk │ │ ├── IndyProtocols120.proj │ │ ├── IndyProtocols120.rc │ │ ├── IndyProtocols120.rc.tmpl │ │ ├── IndyProtocols120.res │ │ ├── IndyProtocols120Net.dpk │ │ ├── IndyProtocols130.dpk │ │ ├── IndyProtocols130.rc │ │ ├── IndyProtocols130.rc.tmpl │ │ ├── IndyProtocols130.res │ │ ├── IndyProtocols130Net.dpk │ │ ├── IndyProtocols140.RES │ │ ├── IndyProtocols140.cfg1 │ │ ├── IndyProtocols140.cfg2 │ │ ├── IndyProtocols140.dpk │ │ ├── IndyProtocols140.rc │ │ ├── IndyProtocols140.rc.tmpl │ │ ├── IndyProtocols150.RES │ │ ├── IndyProtocols150.cfg1 │ │ ├── IndyProtocols150.cfg2 │ │ ├── IndyProtocols150.dpk │ │ ├── IndyProtocols150.rc │ │ ├── IndyProtocols150.rc.tmpl │ │ ├── IndyProtocols160.dpk │ │ ├── IndyProtocols160.dproj │ │ ├── IndyProtocols160.rc │ │ ├── IndyProtocols160.rc.tmpl │ │ ├── IndyProtocols160.res │ │ ├── IndyProtocols170.dpk │ │ ├── IndyProtocols170.dproj │ │ ├── IndyProtocols170.rc │ │ ├── IndyProtocols170.rc.tmpl │ │ ├── IndyProtocols170.res │ │ ├── IndyProtocols180.dpk │ │ ├── IndyProtocols180.dproj │ │ ├── IndyProtocols180.rc │ │ ├── IndyProtocols180.rc.tmpl │ │ ├── IndyProtocols180.res │ │ ├── IndyProtocols190.dpk │ │ ├── IndyProtocols190.dproj │ │ ├── IndyProtocols190.rc │ │ ├── IndyProtocols190.rc.tmpl │ │ ├── IndyProtocols190.res │ │ ├── IndyProtocols200.dpk │ │ ├── IndyProtocols200.dproj │ │ ├── IndyProtocols200.rc │ │ ├── IndyProtocols200.rc.tmpl │ │ ├── IndyProtocols200.res │ │ ├── IndyProtocols210.dpk │ │ ├── IndyProtocols210.dproj │ │ ├── IndyProtocols210.rc │ │ ├── IndyProtocols210.rc.tmpl │ │ ├── IndyProtocols210.res │ │ ├── IndyProtocols220.dpk │ │ ├── IndyProtocols220.dproj │ │ ├── IndyProtocols220.rc │ │ ├── IndyProtocols220.rc.tmpl │ │ ├── IndyProtocols220.res │ │ ├── IndyProtocols230.dpk │ │ ├── IndyProtocols230.dproj │ │ ├── IndyProtocols230.rc │ │ ├── IndyProtocols230.rc.tmpl │ │ ├── IndyProtocols230.res │ │ ├── IndyProtocols240.dpk │ │ ├── IndyProtocols240.dproj │ │ ├── IndyProtocols240.rc │ │ ├── IndyProtocols240.rc.tmpl │ │ ├── IndyProtocols240.res │ │ ├── IndyProtocols40.dpk │ │ ├── IndyProtocols40.rc │ │ ├── IndyProtocols40.rc.tmpl │ │ ├── IndyProtocols40.res │ │ ├── IndyProtocols50.cfg1a │ │ ├── IndyProtocols50.cfg1b │ │ ├── IndyProtocols50.cfg2 │ │ ├── IndyProtocols50.dpk │ │ ├── IndyProtocols50.rc │ │ ├── IndyProtocols50.rc.tmpl │ │ ├── IndyProtocols50.res │ │ ├── IndyProtocols60.cfg1 │ │ ├── IndyProtocols60.cfg2 │ │ ├── IndyProtocols60.dpk │ │ ├── IndyProtocols60.rc │ │ ├── IndyProtocols60.rc.tmpl │ │ ├── IndyProtocols60.res │ │ ├── IndyProtocols70.dpk │ │ ├── IndyProtocols70.rc │ │ ├── IndyProtocols70.rc.tmpl │ │ ├── IndyProtocols70.res │ │ ├── IndyProtocols80.dpk │ │ ├── IndyProtocols80Net.dpk │ │ ├── IndyProtocols90.bdsproj │ │ ├── IndyProtocols90.dpk │ │ ├── IndyProtocols90.rc │ │ ├── IndyProtocols90.rc.tmpl │ │ ├── IndyProtocols90.res │ │ ├── IndyProtocols90Net.bdsproj │ │ ├── IndyProtocols90Net.dpk │ │ ├── IndyProtocolsK3.dpk │ │ ├── IndyProtocols_Icon.ico │ │ ├── Makefile.fpc │ │ ├── Makefile.fpc.tmpl │ │ ├── ZLib │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── adler32.c │ │ │ ├── adler32.obj │ │ │ ├── build.bat │ │ │ ├── compress.c │ │ │ ├── compress.obj │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── crc32.obj │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── deflate.obj │ │ │ ├── example.c │ │ │ ├── example.obj │ │ │ ├── gzclose.c │ │ │ ├── gzclose.obj │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzlib.obj │ │ │ ├── gzread.c │ │ │ ├── gzread.obj │ │ │ ├── gzwrite.c │ │ │ ├── gzwrite.obj │ │ │ ├── i386-Win32-ZLib │ │ │ │ ├── adler32.obj │ │ │ │ ├── compress.obj │ │ │ │ ├── crc32.obj │ │ │ │ ├── deflate.obj │ │ │ │ ├── gzclose.obj │ │ │ │ ├── gzlib.obj │ │ │ │ ├── gzread.obj │ │ │ │ ├── gzwrite.obj │ │ │ │ ├── infback.obj │ │ │ │ ├── inffast.obj │ │ │ │ ├── inflate.obj │ │ │ │ ├── inftrees.obj │ │ │ │ ├── trees.obj │ │ │ │ ├── uncompr.obj │ │ │ │ ├── zlibudec.obj │ │ │ │ └── zutil.obj │ │ │ ├── infback.c │ │ │ ├── infback.obj │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffast.obj │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inflate.obj │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── inftrees.obj │ │ │ ├── minigzip.c │ │ │ ├── minigzip.obj │ │ │ ├── readme.txt │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── trees.obj │ │ │ ├── uncompr.c │ │ │ ├── uncompr.obj │ │ │ ├── x86_64-Win64-ZLib │ │ │ │ ├── adler32.obj │ │ │ │ ├── compress.obj │ │ │ │ ├── crc32.obj │ │ │ │ ├── deflate.obj │ │ │ │ ├── gzclose.obj │ │ │ │ ├── gzlib.obj │ │ │ │ ├── gzread.obj │ │ │ │ ├── gzwrite.obj │ │ │ │ ├── infback.obj │ │ │ │ ├── inffast.obj │ │ │ │ ├── inflate.obj │ │ │ │ ├── inftrees.obj │ │ │ │ ├── trees.obj │ │ │ │ ├── uncompr.obj │ │ │ │ └── zutil.obj │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zlib.lib │ │ │ ├── zlibd32.mak │ │ │ ├── zutil.c │ │ │ ├── zutil.h │ │ │ └── zutil.obj │ │ ├── adler32.obj │ │ ├── compress.obj │ │ ├── crc32.obj │ │ ├── dclIndyProtocols.rc │ │ ├── dclIndyProtocols.rc.tmpl │ │ ├── dclIndyProtocols100.RES │ │ ├── dclIndyProtocols100.bdsproj │ │ ├── dclIndyProtocols100.cfg1 │ │ ├── dclIndyProtocols100.dpk │ │ ├── dclIndyProtocols100.rc │ │ ├── dclIndyProtocols100.rc.tmpl │ │ ├── dclIndyProtocols100Net.bdsproj │ │ ├── dclIndyProtocols100Net.dpk │ │ ├── dclIndyProtocols110.RES │ │ ├── dclIndyProtocols110.cfg1 │ │ ├── dclIndyProtocols110.dpk │ │ ├── dclIndyProtocols110.rc │ │ ├── dclIndyProtocols110.rc.tmpl │ │ ├── dclIndyProtocols110Net.dpk │ │ ├── dclIndyProtocols120.RES │ │ ├── dclIndyProtocols120.cfg1 │ │ ├── dclIndyProtocols120.dpk │ │ ├── dclIndyProtocols120.proj │ │ ├── dclIndyProtocols120.rc │ │ ├── dclIndyProtocols120.rc.tmpl │ │ ├── dclIndyProtocols120Net.dpk │ │ ├── dclIndyProtocols130.dpk │ │ ├── dclIndyProtocols130.rc │ │ ├── dclIndyProtocols130.rc.tmpl │ │ ├── dclIndyProtocols130.res │ │ ├── dclIndyProtocols130Net.dpk │ │ ├── dclIndyProtocols140.RES │ │ ├── dclIndyProtocols140.cfg1 │ │ ├── dclIndyProtocols140.dpk │ │ ├── dclIndyProtocols140.rc │ │ ├── dclIndyProtocols140.rc.tmpl │ │ ├── dclIndyProtocols150.RES │ │ ├── dclIndyProtocols150.cfg1 │ │ ├── dclIndyProtocols150.dpk │ │ ├── dclIndyProtocols150.rc │ │ ├── dclIndyProtocols150.rc.tmpl │ │ ├── dclIndyProtocols160.dpk │ │ ├── dclIndyProtocols160.dproj │ │ ├── dclIndyProtocols160.rc │ │ ├── dclIndyProtocols160.rc.tmpl │ │ ├── dclIndyProtocols160.res │ │ ├── dclIndyProtocols170.RES │ │ ├── dclIndyProtocols170.dpk │ │ ├── dclIndyProtocols170.dproj │ │ ├── dclIndyProtocols170.rc │ │ ├── dclIndyProtocols170.rc.tmpl │ │ ├── dclIndyProtocols180.dpk │ │ ├── dclIndyProtocols180.dproj │ │ ├── dclIndyProtocols180.rc │ │ ├── dclIndyProtocols180.rc.tmpl │ │ ├── dclIndyProtocols180.res │ │ ├── dclIndyProtocols190.dpk │ │ ├── dclIndyProtocols190.dproj │ │ ├── dclIndyProtocols190.rc │ │ ├── dclIndyProtocols190.rc.tmpl │ │ ├── dclIndyProtocols190.res │ │ ├── dclIndyProtocols200.dpk │ │ ├── dclIndyProtocols200.dproj │ │ ├── dclIndyProtocols200.rc │ │ ├── dclIndyProtocols200.rc.tmpl │ │ ├── dclIndyProtocols200.res │ │ ├── dclIndyProtocols210.dpk │ │ ├── dclIndyProtocols210.dproj │ │ ├── dclIndyProtocols210.rc │ │ ├── dclIndyProtocols210.rc.tmpl │ │ ├── dclIndyProtocols210.res │ │ ├── dclIndyProtocols220.dpk │ │ ├── dclIndyProtocols220.dproj │ │ ├── dclIndyProtocols220.rc │ │ ├── dclIndyProtocols220.rc.tmpl │ │ ├── dclIndyProtocols220.res │ │ ├── dclIndyProtocols230.dpk │ │ ├── dclIndyProtocols230.dproj │ │ ├── dclIndyProtocols230.rc │ │ ├── dclIndyProtocols230.rc.tmpl │ │ ├── dclIndyProtocols230.res │ │ ├── dclIndyProtocols240.dpk │ │ ├── dclIndyProtocols240.dproj │ │ ├── dclIndyProtocols240.rc │ │ ├── dclIndyProtocols240.rc.tmpl │ │ ├── dclIndyProtocols240.res │ │ ├── dclIndyProtocols40.RES │ │ ├── dclIndyProtocols40.dpk │ │ ├── dclIndyProtocols40.rc │ │ ├── dclIndyProtocols40.rc.tmpl │ │ ├── dclIndyProtocols50.RES │ │ ├── dclIndyProtocols50.cfg1 │ │ ├── dclIndyProtocols50.cfg2 │ │ ├── dclIndyProtocols50.dpk │ │ ├── dclIndyProtocols50.rc │ │ ├── dclIndyProtocols50.rc.tmpl │ │ ├── dclIndyProtocols60.RES │ │ ├── dclIndyProtocols60.cfg1 │ │ ├── dclIndyProtocols60.cfg2 │ │ ├── dclIndyProtocols60.dpk │ │ ├── dclIndyProtocols60.rc │ │ ├── dclIndyProtocols60.rc.tmpl │ │ ├── dclIndyProtocols70.dpk │ │ ├── dclIndyProtocols70.rc │ │ ├── dclIndyProtocols70.rc.tmpl │ │ ├── dclIndyProtocols70.res │ │ ├── dclIndyProtocols90.bdsproj │ │ ├── dclIndyProtocols90.dpk │ │ ├── dclIndyProtocols90.rc │ │ ├── dclIndyProtocols90.rc.tmpl │ │ ├── dclIndyProtocols90.res │ │ ├── dclIndyProtocols90Net.bdsproj │ │ ├── dclIndyProtocols90Net.dpk │ │ ├── dclIndyProtocolsK3.dpk │ │ ├── dclIndyProtocols_Icon.ico │ │ ├── dclindyprotocolslaz.lpk │ │ ├── deflate.obj │ │ ├── example.obj │ │ ├── gzclose.obj │ │ ├── gzlib.obj │ │ ├── gzread.obj │ │ ├── gzwrite.obj │ │ ├── indyprotocolsfpc.pas │ │ ├── infback.obj │ │ ├── inffast.obj │ │ ├── inflate.obj │ │ ├── inftrees.obj │ │ ├── minigzip.obj │ │ ├── trees.obj │ │ ├── uncompr.obj │ │ └── zutil.obj │ └── System │ │ ├── IdAntiFreezeBase.pas │ │ ├── IdAssemblyInfo.pas │ │ ├── IdBaseComponent.pas │ │ ├── IdCTypes.pas │ │ ├── IdCompilerDefines.inc │ │ ├── IdComponent.pas │ │ ├── IdDeprecatedImplBugOff.inc │ │ ├── IdDeprecatedImplBugOn.inc │ │ ├── IdException.pas │ │ ├── IdGlobal.pas │ │ ├── IdIDN.pas │ │ ├── IdIconv.pas │ │ ├── IdOverflowCheckingOff.inc │ │ ├── IdOverflowCheckingOn.inc │ │ ├── IdRangeCheckingOff.inc │ │ ├── IdRangeCheckingOn.inc │ │ ├── IdResourceStrings.pas │ │ ├── IdResourceStringsDotNet11.pas │ │ ├── IdResourceStringsIconv.pas │ │ ├── IdResourceStringsKylixCompat.pas │ │ ├── IdResourceStringsTextEncoding.pas │ │ ├── IdResourceStringsUnix.pas │ │ ├── IdResourceStringsVCLposix.pas │ │ ├── IdStack.pas │ │ ├── IdStackBSDBase.pas │ │ ├── IdStackConsts.pas │ │ ├── IdStackDotNet.pas │ │ ├── IdStackFramesOff.inc │ │ ├── IdStackFramesOn.inc │ │ ├── IdStackLibc.pas │ │ ├── IdStackLinux.pas │ │ ├── IdStackUnix.pas │ │ ├── IdStackVCLPosix.pas │ │ ├── IdStackWindows.pas │ │ ├── IdStream.pas │ │ ├── IdStreamNET.pas │ │ ├── IdStreamVCL.pas │ │ ├── IdStruct.pas │ │ ├── IdSymbolDeprecatedOff.inc │ │ ├── IdSymbolDeprecatedOn.inc │ │ ├── IdSymbolPlatformOff.inc │ │ ├── IdSymbolPlatformOn.inc │ │ ├── IdSystem90ASM90.inc │ │ ├── IdTransactedFileStream.pas │ │ ├── IdUnitPlatformOff.inc │ │ ├── IdUnitPlatformOn.inc │ │ ├── IdVCLPosixSupplemental.pas │ │ ├── IdVers.inc │ │ ├── IdVers.inc.tmpl │ │ ├── IdWinsock2.pas │ │ ├── IdWship6.pas │ │ ├── IndySystem.rc │ │ ├── IndySystem.rc.tmpl │ │ ├── IndySystem100.bdsproj │ │ ├── IndySystem100.cfg1 │ │ ├── IndySystem100.cfg2 │ │ ├── IndySystem100.dpk │ │ ├── IndySystem100.rc │ │ ├── IndySystem100.rc.tmpl │ │ ├── IndySystem100.res │ │ ├── IndySystem100Net.bdsproj │ │ ├── IndySystem100Net.dpk │ │ ├── IndySystem110.RES │ │ ├── IndySystem110.cfg1 │ │ ├── IndySystem110.cfg2 │ │ ├── IndySystem110.dpk │ │ ├── IndySystem110.rc │ │ ├── IndySystem110.rc.tmpl │ │ ├── IndySystem110Net.dpk │ │ ├── IndySystem120.cfg1 │ │ ├── IndySystem120.cfg2 │ │ ├── IndySystem120.dpk │ │ ├── IndySystem120.proj │ │ ├── IndySystem120.rc │ │ ├── IndySystem120.rc.tmpl │ │ ├── IndySystem120.res │ │ ├── IndySystem120Net.dpk │ │ ├── IndySystem130.dpk │ │ ├── IndySystem130.rc │ │ ├── IndySystem130.rc.tmpl │ │ ├── IndySystem130.res │ │ ├── IndySystem130Net.dpk │ │ ├── IndySystem140.RES │ │ ├── IndySystem140.cfg1 │ │ ├── IndySystem140.cfg2 │ │ ├── IndySystem140.dpk │ │ ├── IndySystem140.rc │ │ ├── IndySystem140.rc.tmpl │ │ ├── IndySystem150.RES │ │ ├── IndySystem150.cfg1 │ │ ├── IndySystem150.cfg2 │ │ ├── IndySystem150.dpk │ │ ├── IndySystem150.rc │ │ ├── IndySystem150.rc.tmpl │ │ ├── IndySystem160.dpk │ │ ├── IndySystem160.dproj │ │ ├── IndySystem160.rc │ │ ├── IndySystem160.rc.tmpl │ │ ├── IndySystem160.res │ │ ├── IndySystem170.dpk │ │ ├── IndySystem170.dproj │ │ ├── IndySystem170.rc │ │ ├── IndySystem170.rc.tmpl │ │ ├── IndySystem170.res │ │ ├── IndySystem180.dpk │ │ ├── IndySystem180.dproj │ │ ├── IndySystem180.rc │ │ ├── IndySystem180.rc.tmpl │ │ ├── IndySystem180.res │ │ ├── IndySystem190.dpk │ │ ├── IndySystem190.dproj │ │ ├── IndySystem190.rc │ │ ├── IndySystem190.rc.tmpl │ │ ├── IndySystem190.res │ │ ├── IndySystem200.dpk │ │ ├── IndySystem200.dproj │ │ ├── IndySystem200.rc │ │ ├── IndySystem200.rc.tmpl │ │ ├── IndySystem200.res │ │ ├── IndySystem210.dpk │ │ ├── IndySystem210.dproj │ │ ├── IndySystem210.rc │ │ ├── IndySystem210.rc.tmpl │ │ ├── IndySystem210.res │ │ ├── IndySystem220.dpk │ │ ├── IndySystem220.dproj │ │ ├── IndySystem220.rc │ │ ├── IndySystem220.rc.tmpl │ │ ├── IndySystem220.res │ │ ├── IndySystem230.dpk │ │ ├── IndySystem230.dproj │ │ ├── IndySystem230.rc │ │ ├── IndySystem230.rc.tmpl │ │ ├── IndySystem230.res │ │ ├── IndySystem240.dpk │ │ ├── IndySystem240.dproj │ │ ├── IndySystem240.rc │ │ ├── IndySystem240.rc.tmpl │ │ ├── IndySystem240.res │ │ ├── IndySystem40.dpk │ │ ├── IndySystem40.rc │ │ ├── IndySystem40.rc.tmpl │ │ ├── IndySystem40.res │ │ ├── IndySystem50.cfg1 │ │ ├── IndySystem50.cfg2 │ │ ├── IndySystem50.dpk │ │ ├── IndySystem50.rc │ │ ├── IndySystem50.rc.tmpl │ │ ├── IndySystem50.res │ │ ├── IndySystem60.cfg1 │ │ ├── IndySystem60.cfg2 │ │ ├── IndySystem60.dpk │ │ ├── IndySystem60.rc │ │ ├── IndySystem60.rc.tmpl │ │ ├── IndySystem60.res │ │ ├── IndySystem70.dpk │ │ ├── IndySystem70.rc │ │ ├── IndySystem70.rc.tmpl │ │ ├── IndySystem70.res │ │ ├── IndySystem80Net.bdsproj │ │ ├── IndySystem80Net.dpk │ │ ├── IndySystem90.bdsproj │ │ ├── IndySystem90.dpk │ │ ├── IndySystem90.rc │ │ ├── IndySystem90.rc.tmpl │ │ ├── IndySystem90.res │ │ ├── IndySystem90Net.bdsproj │ │ ├── IndySystem90Net.dpk │ │ ├── IndySystemK3.dpk │ │ ├── IndySystem_Icon.ico │ │ ├── Makefile.fpc │ │ ├── Makefile.fpc.tmpl │ │ └── indysystemfpc.pas │ └── VirtualTreeView │ ├── CHANGES.txt │ ├── Design │ ├── VirtualTrees.dcr │ └── VirtualTreesReg.pas │ ├── Packages │ ├── BDS 2006 │ │ ├── VirtualTreesD.bdsproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.bdsproj │ │ ├── VirtualTreesR.dpk │ │ └── VirtualTreesR.res │ ├── CBuilder 2010 │ │ ├── VirtualTrees.groupproj │ │ ├── VirtualTreesD.cbproj │ │ ├── VirtualTreesD.cpp │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.cbproj │ │ ├── VirtualTreesR.cpp │ │ └── VirtualTreesR.res │ ├── Delphi 2005 │ │ ├── VirtualTreesD.bdsproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.bdsproj │ │ ├── VirtualTreesR.dpk │ │ └── VirtualTreesR.res │ ├── Delphi 2007 │ │ ├── Delphi 2007.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── Delphi 2009 │ │ ├── Delphi 2009.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── Delphi 2010 │ │ ├── Delphi 2010.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── Delphi 7 │ │ ├── VirtualTrees.bpg │ │ ├── VirtualTreesD.cfg │ │ ├── VirtualTreesD.dof │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.cfg │ │ ├── VirtualTreesR.dof │ │ ├── VirtualTreesR.dpk │ │ └── VirtualTreesR.res │ ├── Delphi XE │ │ ├── Delphi XE.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── RAD Studio XE2 │ │ ├── RAD Studio XE2.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── RAD Studio XE3 │ │ ├── RAD Studio XE3.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ └── RAD Studio XE4 │ │ ├── RAD Studio XE4.groupproj │ │ ├── VirtualTreesD.dpk │ │ ├── VirtualTreesD.dproj │ │ ├── VirtualTreesD.res │ │ ├── VirtualTreesR.dpk │ │ ├── VirtualTreesR.dproj │ │ └── VirtualTreesR.res │ ├── Resources │ ├── VT XP button minus.bmp │ ├── VT XP button plus.bmp │ ├── VT XP.bmp │ ├── VT check dark.bmp │ ├── VT check light.bmp │ ├── VT flat.bmp │ ├── VT header split.cur │ ├── VT move all.bmp │ ├── VT move all.cur │ ├── VT move east-west.bmp │ ├── VT move east-west.cur │ ├── VT move east.cur │ ├── VT move north-east.cur │ ├── VT move north-south.bmp │ ├── VT move north-south.cur │ ├── VT move north-west.cur │ ├── VT move north.cur │ ├── VT move south-east.cur │ ├── VT move south-west.cur │ ├── VT move south.cur │ ├── VT move west.cur │ ├── VT tick dark.bmp │ ├── VT tick light.bmp │ ├── VT utilities.bmp │ └── VT vertical split.cur │ └── Source │ ├── VTAccessibility.pas │ ├── VTAccessibilityFactory.pas │ ├── VTHeaderPopup.dtx │ ├── VTHeaderPopup.pas │ ├── VirtualTrees.dtx │ ├── VirtualTrees.pas │ └── VirtualTrees.res ├── dcu32 └── placeholder.txt ├── dcu64 └── placeholder.txt └── source ├── AccountForm.dfm ├── AccountForm.pas ├── AccountsDialog.dfm ├── AccountsDialog.pas ├── AddAccountWizard.dfm ├── AddAccountWizard.pas ├── AddFilterDialog.dfm ├── AddFilterDialog.pas ├── AdvancedHeadersDialog.dfm ├── AdvancedHeadersDialog.pas ├── AttachmentsDialog.dfm ├── AttachmentsDialog.pas ├── BatchDialog.dfm ├── BatchDialog.pas ├── BatchesDialog.dfm ├── BatchesDialog.pas ├── BozoDetailsDialog.dfm ├── BozoDetailsDialog.pas ├── CancelArticleDialog.dfm ├── CancelArticleDialog.pas ├── CheckCrosspostDialog.dfm ├── CheckCrosspostDialog.pas ├── CombineDecodeDialog.dfm ├── CombineDecodeDialog.pas ├── DockingUtils.pas ├── ExportDialog.pas ├── ExportSettingsFrame.dfm ├── ExportSettingsFrame.pas ├── FastMM4.pas ├── FastMM4Messages.pas ├── FastMM4Options.inc ├── FastMM4_Readme.txt ├── FilterDetailsDialog.dfm ├── FilterDetailsDialog.pas ├── FilterDialog.dfm ├── FilterDialog.pas ├── FiltersDialog.dfm ├── FiltersDialog.pas ├── FindOnInternetDialog.dfm ├── FindOnInternetDialog.pas ├── IdNNTPX.pas ├── IdentitiesDialog.dfm ├── IdentitiesDialog.pas ├── IdentityDialog.dfm ├── IdentityDialog.pas ├── MailAccountForm.dfm ├── MailAccountForm.pas ├── MailAccountsDialog.dfm ├── MailAccountsDialog.pas ├── MainForm.dfm ├── MainForm.pas ├── MessagebaseManagementDialog.dfm ├── MessagebaseManagementDialog.pas ├── MessagesDialog.dfm ├── MessagesDialog.pas ├── MoveMessagebaseDialog.dfm ├── MoveMessagebaseDialog.pas ├── NewUserWizardForm.dfm ├── NewUserWizardForm.pas ├── NewVersionDialog.dfm ├── NewVersionDialog.pas ├── NewsGlobals.pas ├── NewsgroupForm.dfm ├── NewsgroupForm.pas ├── NewsgroupStatisticsForm.dfm ├── NewsgroupStatisticsForm.pas ├── NewsgroupsDialog.dfm ├── NewsgroupsDialog.pas ├── OptionsForm.dfm ├── OptionsForm.pas ├── PostFrame.dfm ├── PostFrame.pas ├── PostMessageForm.dfm ├── PostMessageForm.pas ├── PostToGroupsForm.dfm ├── PostToGroupsForm.pas ├── PropertyBaseForm.dfm ├── PropertyBaseForm.pas ├── PropertyPageAccountAdvancedServerForm.dfm ├── PropertyPageAccountAdvancedServerForm.pas ├── PropertyPageAccountGeneralForm.dfm ├── PropertyPageAccountGeneralForm.pas ├── PropertyPageAccountServerForm.dfm ├── PropertyPageAccountServerForm.pas ├── PropertyPageBozoForm.dfm ├── PropertyPageBozoForm.pas ├── PropertyPageColorFontForm.dfm ├── PropertyPageColorFontForm.pas ├── PropertyPageConnectionForm.dfm ├── PropertyPageConnectionForm.pas ├── PropertyPageCustomHeadersForm.dfm ├── PropertyPageCustomHeadersForm.pas ├── PropertyPageDefaultsForm.dfm ├── PropertyPageDefaultsForm.pas ├── PropertyPageEnterKeyForm.dfm ├── PropertyPageEnterKeyForm.pas ├── PropertyPageExtraPostingForm.dfm ├── PropertyPageExtraPostingForm.pas ├── PropertyPageFiltersForm.dfm ├── PropertyPageFiltersForm.pas ├── PropertyPageFontForm.dfm ├── PropertyPageFontForm.pas ├── PropertyPageForm.dfm ├── PropertyPageForm.pas ├── PropertyPageGeneralForm.dfm ├── PropertyPageGeneralForm.pas ├── PropertyPageGroupsTreeForm.dfm ├── PropertyPageGroupsTreeForm.pas ├── PropertyPageKeywordsForm.dfm ├── PropertyPageKeywordsForm.pas ├── PropertyPageMailAccountConnectionForm.dfm ├── PropertyPageMailAccountConnectionForm.pas ├── PropertyPageMailAccountGeneralForm.dfm ├── PropertyPageMailAccountGeneralForm.pas ├── PropertyPageMailAccountPreferencesForm.dfm ├── PropertyPageMailAccountPreferencesForm.pas ├── PropertyPageMailAccountServerForm.dfm ├── PropertyPageMailAccountServerForm.pas ├── PropertyPageMessagePaneForm.dfm ├── PropertyPageMessagePaneForm.pas ├── PropertyPageMessageTreeActionsForm.dfm ├── PropertyPageMessageTreeActionsForm.pas ├── PropertyPageMessageTreeDisplayForm.dfm ├── PropertyPageMessageTreeDisplayForm.pas ├── PropertyPageNewsgroupGeneralForm.dfm ├── PropertyPageNewsgroupGeneralForm.pas ├── PropertyPagePosting.dfm ├── PropertyPagePosting.pas ├── PropertyPagePostingServersForm.dfm ├── PropertyPagePostingServersForm.pas ├── PropertyPagePreferencesForm.dfm ├── PropertyPagePreferencesForm.pas ├── PropertyPageQuotingForm.dfm ├── PropertyPageQuotingForm.pas ├── PropertyPageShortcutsForm.dfm ├── PropertyPageShortcutsForm.pas ├── PropertyPageSortingForm.dfm ├── PropertyPageSortingForm.pas ├── PropertyPageWin98Form.dfm ├── PropertyPageWin98Form.pas ├── ReadLnDelayDialog.dfm ├── ReadLnDelayDialog.pas ├── ReplyByMailForm.dfm ├── ReplyByMailForm.pas ├── SearchDialog.dfm ├── SearchDialog.pas ├── ServerAdminCreateGroupDialog.dfm ├── ServerAdminCreateGroupDialog.pas ├── ServerAdminRemoveGroupDialog.dfm ├── ServerAdminRemoveGroupDialog.pas ├── SplashForm.dfm ├── SplashForm.pas ├── TestPerformanceDialog.dfm ├── TestPerformanceDialog.pas ├── XanaNews.dpr ├── XanaNews.dproj ├── XanaNews.mes ├── XanaNews.res ├── XanaNews.skincfg ├── XanaNews_Icon.ico ├── XnCaptionedDockTree.pas ├── XnCoderQuotedPrintable.pas ├── XnCoderUUE.pas ├── XnXFace.pas ├── cmpMessageScrollBox.pas ├── i.res ├── unitArticleHash.pas ├── unitBatches.pas ├── unitBookmarks.pas ├── unitCIDMimeHandler.pas ├── unitCRC32.pas ├── unitCheckVersion.pas ├── unitDefaultNewsreader.pas ├── unitFontDetails.pas ├── unitGetMessages1.dfm ├── unitGetMessages1.pas ├── unitIdentities.pas ├── unitLog.pas ├── unitMailServices.pas ├── unitMessageBaseSearch.pas ├── unitMessageMime.pas ├── unitMessageNNTPBinary.pas ├── unitMessageYEncodedBinary.pas ├── unitMessages.pas ├── unitNNTPFilters.pas ├── unitNNTPServices.pas ├── unitNNTPThreadManager.pas ├── unitNNTPThreads.pas ├── unitNewUserWizard.pas ├── unitNewsReaderOptions.pas ├── unitNewsThread.pas ├── unitNewsgroups.pas ├── unitRFC2646Coder.pas ├── unitSavedArticles.pas ├── unitSettings.pas ├── unitXanaExporter.pas └── version.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/README.txt -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | version:1.21.0.0 -------------------------------------------------------------------------------- /XanaNewsGroup_D2009.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_D2009.groupproj -------------------------------------------------------------------------------- /XanaNewsGroup_D2010.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_D2010.groupproj -------------------------------------------------------------------------------- /XanaNewsGroup_D2011.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_D2011.groupproj -------------------------------------------------------------------------------- /XanaNewsGroup_DXE2.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_DXE2.groupproj -------------------------------------------------------------------------------- /XanaNewsGroup_DXE3.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_DXE3.groupproj -------------------------------------------------------------------------------- /XanaNewsGroup_DXE5.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/XanaNewsGroup_DXE5.groupproj -------------------------------------------------------------------------------- /bin32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin32/.gitignore -------------------------------------------------------------------------------- /bin32/FastMM_FullDebugMode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin32/FastMM_FullDebugMode.dll -------------------------------------------------------------------------------- /bin32/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin32/libeay32.dll -------------------------------------------------------------------------------- /bin32/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin32/ssleay32.dll -------------------------------------------------------------------------------- /bin64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin64/.gitignore -------------------------------------------------------------------------------- /bin64/FastMM_FullDebugMode64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin64/FastMM_FullDebugMode64.dll -------------------------------------------------------------------------------- /bin64/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin64/libeay32.dll -------------------------------------------------------------------------------- /bin64/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin64/ssleay32.dll -------------------------------------------------------------------------------- /bin_common/Quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin_common/Quotes.txt -------------------------------------------------------------------------------- /bin_common/XanaNews.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin_common/XanaNews.chm -------------------------------------------------------------------------------- /bin_common/XanaNews.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/bin_common/XanaNews.wav -------------------------------------------------------------------------------- /components/ImageTypes/Source/.gitignore: -------------------------------------------------------------------------------- 1 | /*.local 2 | -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2009.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2009.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2009.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2009.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2009.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2009.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2010.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2010.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2010.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2010.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2010.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2010.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2011.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2011.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2011.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2011.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesD2011.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesD2011.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE2.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE2.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE2.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE2.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE2_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE2_Icon.ico -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE3.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE3.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE3.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE5.dpk -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE5.dproj -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE5.res -------------------------------------------------------------------------------- /components/ImageTypes/Source/ImageTypesDXE5.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/ImageTypesDXE5.skincfg -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFace.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFace.pas -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFaceBigInt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFaceBigInt.pas -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFaceBitMap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFaceBitMap.pas -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFaceConstants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFaceConstants.pas -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFaceHelper.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFaceHelper.pas -------------------------------------------------------------------------------- /components/ImageTypes/Source/XFaceInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/ImageTypes/Source/XFaceInterfaces.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/CompVers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/CompVers.inc -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2009.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2009.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2009.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2009.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2009.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2009.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2010.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2010.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2010.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2010.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2010.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2010.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2011.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2011.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2011.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2011.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelD2011.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelD2011.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE2.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE2.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE2.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE2.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE2_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE2_Icon.ico -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE3.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE3.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE3.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE5.dpk -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE5.dproj -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE5.res -------------------------------------------------------------------------------- /components/LowLevel/Source/LowLevelDXE5.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/LowLevelDXE5.skincfg -------------------------------------------------------------------------------- /components/LowLevel/Source/MultiLanguage_tlb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/MultiLanguage_tlb.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/RichOle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/RichOle.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/XnClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/XnClasses.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/XnRawByteStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/XnRawByteStrings.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/ras.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/ras.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitBTree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitBTree.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitCharsetMap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitCharsetMap.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitExFileSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitExFileSettings.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitExRegSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitExRegSettings.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitExSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitExSettings.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitExXMLSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitExXMLSettings.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitObjectCache.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitObjectCache.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitQpcTimer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitQpcTimer.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitRTF2HTML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitRTF2HTML.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitSearchString.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitSearchString.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitStreamTextReader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitStreamTextReader.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitVersionHelpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitVersionHelpers.pas -------------------------------------------------------------------------------- /components/LowLevel/Source/unitWow64.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/LowLevel/Source/unitWow64.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2009.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2009.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2009.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2009.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2009.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2009.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2010.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2010.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2010.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2010.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2010.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2010.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2011.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2011.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2011.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2011.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsD2011.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsD2011.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE2.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE2.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE2.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE2.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE2.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE2_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE2_Icon.ico -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE3.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE3.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE3.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE5.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE5.dpk -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE5.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE5.dproj -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE5.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE5.res -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsDXE5.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsDXE5.skincfg -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsReg.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsReg.dcr -------------------------------------------------------------------------------- /components/MiscUnits/Source/MiscUnitsReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/MiscUnitsReg.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/SpellCheckerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/SpellCheckerForm.dfm -------------------------------------------------------------------------------- /components/MiscUnits/Source/SpellCheckerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/SpellCheckerForm.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpCWRichEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpCWRichEdit.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpCWSpellChecker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpCWSpellChecker.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpExSplitter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpExSplitter.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpExWebBrowser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpExWebBrowser.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpFileCopier.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpFileCopier.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpHyperlinkButton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpHyperlinkButton.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpMessageDisplay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpMessageDisplay.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpNTAboutBox.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpNTAboutBox.dfm -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpNTAboutBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpNTAboutBox.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpNewsRichEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpNewsRichEdit.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpPersistentPosition.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpPersistentPosition.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpRuler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpRuler.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpRunOnce.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpRunOnce.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpSpellChecker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpSpellChecker.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpSplitterPanel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpSplitterPanel.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpStandardSystemMenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpStandardSystemMenu.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/cmpThemedScrollBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/cmpThemedScrollBox.pas -------------------------------------------------------------------------------- /components/MiscUnits/Source/unitGUIUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/MiscUnits/Source/unitGUIUtils.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/AboutBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/AboutBackground.bmp -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/AboutProg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/AboutProg.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAbout.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAbout.resources -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAbout.resx -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutDotNET.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutDotNET.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutDotNET.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutDotNET.resx -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutVCL.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutVCL.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutVCL.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutVCL.lrs -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutVCL.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutVCL.rc: -------------------------------------------------------------------------------- 1 | INDY_ABOUT_BACKGROUND BITMAP AboutBackground.bmp -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAboutVCL.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAboutVCL.xpm -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdAntiFreeze.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdAntiFreeze.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdBuffer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdCmdTCPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdCmdTCPClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdCmdTCPServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdCmdTCPServer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdContext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdContext.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdCore90ASM90.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdCore90ASM90.inc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdCoreRegister.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdCoreRegister.dcr -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdCreditsBitmap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdCreditsBitmap.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdDsnBaseCmpEdt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdDsnBaseCmpEdt.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdExceptionCore.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdExceptionCore.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdGlobalCore.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdGlobalCore.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIOHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIOHandler.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIPAddress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIPAddress.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIPMCastBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIPMCastBase.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIPMCastClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIPMCastClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIPMCastServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIPMCastServer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIcmpClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIcmpClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdIntercept.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdIntercept.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdLogBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdLogBase.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdLogDebug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdLogDebug.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdLogEvent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdLogEvent.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdLogFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdLogFile.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdLogStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdLogStream.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRawBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRawBase.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRawClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRawClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRawFunctions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRawFunctions.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRawHeaders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRawHeaders.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRegisterCore.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRegisterCore.lrs -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdRegisterCore.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdRegisterCore.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdReply.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdReply.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdReplyRFC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdReplyRFC.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdScheduler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdScheduler.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdSimpleServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdSimpleServer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdSocketHandle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdSocketHandle.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdSocks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdSocks.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdSync.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdSync.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTCPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTCPClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTCPConnection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTCPConnection.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTCPServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTCPServer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTCPStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTCPStream.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTask.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTask.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdThread.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdThreadSafe.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdThreadSafe.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdTraceRoute.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdTraceRoute.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdUDPBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdUDPBase.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdUDPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdUDPClient.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdUDPServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdUDPServer.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IdYarn.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IdYarn.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCar.bmp -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.bdsproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore100Net.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore100Net.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore110Net.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore110Net.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.proj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore120Net.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore120Net.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore130.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore130.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore130.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore130.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore130.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore130.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore130.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore130.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore130Net.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore130Net.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore140.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore140.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore150.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore150.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore160.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore160.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore160.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore160.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore160.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore160.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore160.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore160.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore160.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore160.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore170.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore170.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore170.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore170.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore170.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore170.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore170.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore170.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore170.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore170.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore180.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore180.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore180.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore180.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore180.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore180.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore180.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore180.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore180.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore180.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore190.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore190.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore190.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore190.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore190.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore190.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore190.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore190.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore190.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore190.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore200.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore200.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore200.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore200.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore200.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore200.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore200.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore200.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore200.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore210.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore210.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore210.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore210.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore210.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore210.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore210.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore210.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore210.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore210.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore220.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore220.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore220.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore220.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore220.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore220.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore220.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore220.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore220.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore220.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore230.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore230.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore230.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore230.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore230.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore230.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore230.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore230.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore230.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore230.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore240.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore240.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore240.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore240.dproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore240.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore240.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore240.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore240.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore240.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore240.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore40.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore40.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore40.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore40.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore40.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore40.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore50.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore50.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore60.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore60.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore70.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore70.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore70.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore70.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore70.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore70.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore70.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore70.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90.bdsproj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore90Net.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore90Net.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCoreK3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCoreK3.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/IndyCore_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/IndyCore_Icon.ico -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Makefile.fpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/Makefile.fpc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Makefile.fpc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/Makefile.fpc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Res/Maint/1sink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/Res/Maint/1sink.jpg -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Res/Sink.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/Res/Sink.bmp -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Res/makeres.bat: -------------------------------------------------------------------------------- 1 | brcc32 IdCreditsBitmap.rc 2 | copy *.res .. -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/Res/sinkdr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/Res/sinkdr.wav -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore.rc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore.rc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore100.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore100.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore100.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore100.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore100.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore100.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore100.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore110.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore110.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore110.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore110.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore110.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore110.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore110.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore110.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore120.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore120.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore120.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore120.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore120.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore120.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore120.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore120.proj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore120.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore120.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore130.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore130.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore130.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore130.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore130.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore130.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore140.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore140.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore140.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore140.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore140.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore140.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore140.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore140.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore150.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore150.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore150.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore150.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore150.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore150.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore150.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore150.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore160.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore160.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore160.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore160.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore160.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore160.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore170.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore170.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore170.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore170.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore170.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore170.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore180.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore180.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore180.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore180.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore180.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore180.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore190.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore190.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore190.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore190.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore190.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore190.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore200.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore200.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore200.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore200.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore200.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore210.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore210.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore210.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore210.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore210.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore210.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore220.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore220.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore220.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore220.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore220.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore220.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore230.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore230.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore230.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore230.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore230.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore230.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore240.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore240.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore240.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore240.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore240.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore240.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore40.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore40.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore40.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore40.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore40.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore40.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore50.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore50.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore50.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore50.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore50.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore50.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore50.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore50.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore50.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore50.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore60.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore60.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore60.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore60.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore60.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore60.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore60.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore60.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore60.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore60.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore70.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore70.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore70.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore70.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore70.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore70.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore90.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore90.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore90.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore90.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclIndyCore90.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclIndyCore90.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclindycorek3.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclindycorek3.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclindycorek3.dpkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclindycorek3.dpkl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclindycorek3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclindycorek3.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/dclindycorelaz.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/dclindycorelaz.lpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Core/indycorefpc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Core/indycorefpc.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/DelphiZLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/DelphiZLib.cpp -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/DelphiZLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/DelphiZLib.lib -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdASN1Util.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdASN1Util.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCharsets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCharsets.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCoder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCoder.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCoder00E.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCoder00E.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCoderUUE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCoderUUE.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCoderXXE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCoderXXE.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdCookie.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdCookie.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdDICT.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdDICT.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdDayTime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdDayTime.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdEcho.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdEcho.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdEchoUDP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdEchoUDP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdFIPS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdFIPS.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdFSP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdFSP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdFTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdFTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdFTPList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdFTPList.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdFinger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdFinger.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdGopher.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdGopher.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHL7.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHL7.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHMAC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHMAC.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHMACMD5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHMACMD5.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHMACSHA1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHMACSHA1.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHTTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHTTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHash.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHashCRC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHashCRC.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHashElf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHashElf.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHashIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHashIntf.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHashSHA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHashSHA.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdHashSHA1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdHashSHA1.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdIMAP4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdIMAP4.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdIPWatch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdIPWatch.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdIRC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdIRC.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdIdent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdIdent.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdLDAPV3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdLDAPV3.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdLPR.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdLPR.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdMailBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdMailBox.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdMessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdMessage.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdNNTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdNNTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdNTLM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdNTLM.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdNTLMv2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdNTLMv2.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdPOP3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdPOP3.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdQOTDUDP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdQOTDUDP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdQotd.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdQotd.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdRSH.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdRSH.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdRegister.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdRegister.dcr -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdRegister.lrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdRegister.lrs -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdRegister.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdRegister.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdReplyFTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdReplyFTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdRexec.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdRexec.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSASL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSASL.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSASLOTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSASLOTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSASLSKey.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSASLSKey.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSMTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSMTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSMTPBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSMTPBase.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSNMP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSNMP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSNPP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSNPP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSNTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSNTP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSSH.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSSH.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSSL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSSL.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSSPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSSPI.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdStrings.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSysLog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSysLog.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdSystat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdSystat.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdTelnet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdTelnet.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdText.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdText.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdTime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdTime.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdTimeUDP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdTimeUDP.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdURI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdURI.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdUnixTime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdUnixTime.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdUriUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdUriUtils.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdVCard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdVCard.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdWebDAV.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdWebDAV.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdWhois.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdWhois.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/IdZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/IdZLib.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/Makefile.fpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/Makefile.fpc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/ZLib.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/adler32.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/build.bat -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/crc32.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/crc32.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/crc32.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/deflate.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/deflate.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/example.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzclose.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzguts.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzlib.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzlib.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzread.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/gzwrite.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/infback.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/inffast.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/inffast.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/inflate.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/inflate.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/trees.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/trees.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/trees.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/uncompr.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zconf.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zlib.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zlib.lib -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zutil.c -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zutil.h -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/ZLib/zutil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/ZLib/zutil.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/adler32.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/compress.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/crc32.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/deflate.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/example.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/example.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/gzclose.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/gzclose.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/gzlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/gzlib.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/gzread.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/gzread.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/gzwrite.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/gzwrite.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/infback.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/inffast.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/inflate.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/inftrees.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/minigzip.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/minigzip.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/trees.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/uncompr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/uncompr.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/Protocols/zutil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/Protocols/zutil.obj -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdCTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdCTypes.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdComponent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdComponent.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdException.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdException.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdGlobal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdGlobal.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdIDN.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdIDN.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdIconv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdIconv.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStack.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStack.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStackConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStackConsts.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStackDotNet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStackDotNet.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStackLibc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStackLibc.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStackLinux.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStackLinux.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStackUnix.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStackUnix.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStream.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStreamNET.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStreamNET.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStreamVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStreamVCL.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdStruct.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdStruct.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdVers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdVers.inc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdVers.inc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdVers.inc.tmpl -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdWinsock2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdWinsock2.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IdWship6.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IdWship6.pas -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem100.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem100.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem100.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem100.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem100.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem100.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem110.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem110.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem110.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem110.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem110.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem110.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem120.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem120.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem120.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem120.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem120.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem120.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem130.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem130.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem130.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem130.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem130.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem130.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem140.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem140.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem140.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem140.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem140.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem140.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem150.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem150.RES -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem150.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem150.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem150.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem150.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem160.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem160.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem160.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem160.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem160.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem160.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem170.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem170.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem170.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem170.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem170.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem170.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem180.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem180.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem180.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem180.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem180.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem180.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem190.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem190.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem190.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem190.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem190.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem190.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem200.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem200.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem200.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem200.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem200.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem200.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem210.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem210.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem210.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem210.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem210.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem210.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem220.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem220.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem220.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem220.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem220.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem220.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem230.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem230.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem230.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem230.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem230.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem230.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem240.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem240.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem240.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem240.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem240.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem240.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem40.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem40.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem40.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem40.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem40.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem40.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem50.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem50.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem50.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem50.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem50.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem50.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem50.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem50.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem50.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem50.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem60.cfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem60.cfg1 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem60.cfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem60.cfg2 -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem60.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem60.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem60.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem60.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem60.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem60.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem70.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem70.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem70.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem70.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem70.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem70.res -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem90.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem90.dpk -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/IndySystem90.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/IndySystem90.rc -------------------------------------------------------------------------------- /components/thirdparty/Indy10/System/Makefile.fpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/Indy10/System/Makefile.fpc -------------------------------------------------------------------------------- /components/thirdparty/VirtualTreeView/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/components/thirdparty/VirtualTreeView/CHANGES.txt -------------------------------------------------------------------------------- /dcu32/placeholder.txt: -------------------------------------------------------------------------------- 1 | Do not delete! -------------------------------------------------------------------------------- /dcu64/placeholder.txt: -------------------------------------------------------------------------------- 1 | Do not delete! -------------------------------------------------------------------------------- /source/AccountForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AccountForm.dfm -------------------------------------------------------------------------------- /source/AccountForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AccountForm.pas -------------------------------------------------------------------------------- /source/AccountsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AccountsDialog.dfm -------------------------------------------------------------------------------- /source/AccountsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AccountsDialog.pas -------------------------------------------------------------------------------- /source/AddAccountWizard.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AddAccountWizard.dfm -------------------------------------------------------------------------------- /source/AddAccountWizard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AddAccountWizard.pas -------------------------------------------------------------------------------- /source/AddFilterDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AddFilterDialog.dfm -------------------------------------------------------------------------------- /source/AddFilterDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AddFilterDialog.pas -------------------------------------------------------------------------------- /source/AdvancedHeadersDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AdvancedHeadersDialog.dfm -------------------------------------------------------------------------------- /source/AdvancedHeadersDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AdvancedHeadersDialog.pas -------------------------------------------------------------------------------- /source/AttachmentsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AttachmentsDialog.dfm -------------------------------------------------------------------------------- /source/AttachmentsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/AttachmentsDialog.pas -------------------------------------------------------------------------------- /source/BatchDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BatchDialog.dfm -------------------------------------------------------------------------------- /source/BatchDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BatchDialog.pas -------------------------------------------------------------------------------- /source/BatchesDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BatchesDialog.dfm -------------------------------------------------------------------------------- /source/BatchesDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BatchesDialog.pas -------------------------------------------------------------------------------- /source/BozoDetailsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BozoDetailsDialog.dfm -------------------------------------------------------------------------------- /source/BozoDetailsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/BozoDetailsDialog.pas -------------------------------------------------------------------------------- /source/CancelArticleDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CancelArticleDialog.dfm -------------------------------------------------------------------------------- /source/CancelArticleDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CancelArticleDialog.pas -------------------------------------------------------------------------------- /source/CheckCrosspostDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CheckCrosspostDialog.dfm -------------------------------------------------------------------------------- /source/CheckCrosspostDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CheckCrosspostDialog.pas -------------------------------------------------------------------------------- /source/CombineDecodeDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CombineDecodeDialog.dfm -------------------------------------------------------------------------------- /source/CombineDecodeDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/CombineDecodeDialog.pas -------------------------------------------------------------------------------- /source/DockingUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/DockingUtils.pas -------------------------------------------------------------------------------- /source/ExportDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ExportDialog.pas -------------------------------------------------------------------------------- /source/ExportSettingsFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ExportSettingsFrame.dfm -------------------------------------------------------------------------------- /source/ExportSettingsFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ExportSettingsFrame.pas -------------------------------------------------------------------------------- /source/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FastMM4.pas -------------------------------------------------------------------------------- /source/FastMM4Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FastMM4Messages.pas -------------------------------------------------------------------------------- /source/FastMM4Options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FastMM4Options.inc -------------------------------------------------------------------------------- /source/FastMM4_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FastMM4_Readme.txt -------------------------------------------------------------------------------- /source/FilterDetailsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FilterDetailsDialog.dfm -------------------------------------------------------------------------------- /source/FilterDetailsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FilterDetailsDialog.pas -------------------------------------------------------------------------------- /source/FilterDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FilterDialog.dfm -------------------------------------------------------------------------------- /source/FilterDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FilterDialog.pas -------------------------------------------------------------------------------- /source/FiltersDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FiltersDialog.dfm -------------------------------------------------------------------------------- /source/FiltersDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FiltersDialog.pas -------------------------------------------------------------------------------- /source/FindOnInternetDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FindOnInternetDialog.dfm -------------------------------------------------------------------------------- /source/FindOnInternetDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/FindOnInternetDialog.pas -------------------------------------------------------------------------------- /source/IdNNTPX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/IdNNTPX.pas -------------------------------------------------------------------------------- /source/IdentitiesDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/IdentitiesDialog.dfm -------------------------------------------------------------------------------- /source/IdentitiesDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/IdentitiesDialog.pas -------------------------------------------------------------------------------- /source/IdentityDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/IdentityDialog.dfm -------------------------------------------------------------------------------- /source/IdentityDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/IdentityDialog.pas -------------------------------------------------------------------------------- /source/MailAccountForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MailAccountForm.dfm -------------------------------------------------------------------------------- /source/MailAccountForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MailAccountForm.pas -------------------------------------------------------------------------------- /source/MailAccountsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MailAccountsDialog.dfm -------------------------------------------------------------------------------- /source/MailAccountsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MailAccountsDialog.pas -------------------------------------------------------------------------------- /source/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MainForm.dfm -------------------------------------------------------------------------------- /source/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MainForm.pas -------------------------------------------------------------------------------- /source/MessagebaseManagementDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MessagebaseManagementDialog.dfm -------------------------------------------------------------------------------- /source/MessagebaseManagementDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MessagebaseManagementDialog.pas -------------------------------------------------------------------------------- /source/MessagesDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MessagesDialog.dfm -------------------------------------------------------------------------------- /source/MessagesDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MessagesDialog.pas -------------------------------------------------------------------------------- /source/MoveMessagebaseDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MoveMessagebaseDialog.dfm -------------------------------------------------------------------------------- /source/MoveMessagebaseDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/MoveMessagebaseDialog.pas -------------------------------------------------------------------------------- /source/NewUserWizardForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewUserWizardForm.dfm -------------------------------------------------------------------------------- /source/NewUserWizardForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewUserWizardForm.pas -------------------------------------------------------------------------------- /source/NewVersionDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewVersionDialog.dfm -------------------------------------------------------------------------------- /source/NewVersionDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewVersionDialog.pas -------------------------------------------------------------------------------- /source/NewsGlobals.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsGlobals.pas -------------------------------------------------------------------------------- /source/NewsgroupForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupForm.dfm -------------------------------------------------------------------------------- /source/NewsgroupForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupForm.pas -------------------------------------------------------------------------------- /source/NewsgroupStatisticsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupStatisticsForm.dfm -------------------------------------------------------------------------------- /source/NewsgroupStatisticsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupStatisticsForm.pas -------------------------------------------------------------------------------- /source/NewsgroupsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupsDialog.dfm -------------------------------------------------------------------------------- /source/NewsgroupsDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/NewsgroupsDialog.pas -------------------------------------------------------------------------------- /source/OptionsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/OptionsForm.dfm -------------------------------------------------------------------------------- /source/OptionsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/OptionsForm.pas -------------------------------------------------------------------------------- /source/PostFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostFrame.dfm -------------------------------------------------------------------------------- /source/PostFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostFrame.pas -------------------------------------------------------------------------------- /source/PostMessageForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostMessageForm.dfm -------------------------------------------------------------------------------- /source/PostMessageForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostMessageForm.pas -------------------------------------------------------------------------------- /source/PostToGroupsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostToGroupsForm.dfm -------------------------------------------------------------------------------- /source/PostToGroupsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PostToGroupsForm.pas -------------------------------------------------------------------------------- /source/PropertyBaseForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyBaseForm.dfm -------------------------------------------------------------------------------- /source/PropertyBaseForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyBaseForm.pas -------------------------------------------------------------------------------- /source/PropertyPageAccountAdvancedServerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountAdvancedServerForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageAccountAdvancedServerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountAdvancedServerForm.pas -------------------------------------------------------------------------------- /source/PropertyPageAccountGeneralForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountGeneralForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageAccountGeneralForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountGeneralForm.pas -------------------------------------------------------------------------------- /source/PropertyPageAccountServerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountServerForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageAccountServerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageAccountServerForm.pas -------------------------------------------------------------------------------- /source/PropertyPageBozoForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageBozoForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageBozoForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageBozoForm.pas -------------------------------------------------------------------------------- /source/PropertyPageColorFontForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageColorFontForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageColorFontForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageColorFontForm.pas -------------------------------------------------------------------------------- /source/PropertyPageConnectionForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageConnectionForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageConnectionForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageConnectionForm.pas -------------------------------------------------------------------------------- /source/PropertyPageCustomHeadersForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageCustomHeadersForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageCustomHeadersForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageCustomHeadersForm.pas -------------------------------------------------------------------------------- /source/PropertyPageDefaultsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageDefaultsForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageDefaultsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageDefaultsForm.pas -------------------------------------------------------------------------------- /source/PropertyPageEnterKeyForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageEnterKeyForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageEnterKeyForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageEnterKeyForm.pas -------------------------------------------------------------------------------- /source/PropertyPageExtraPostingForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageExtraPostingForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageExtraPostingForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageExtraPostingForm.pas -------------------------------------------------------------------------------- /source/PropertyPageFiltersForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageFiltersForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageFiltersForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageFiltersForm.pas -------------------------------------------------------------------------------- /source/PropertyPageFontForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageFontForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageFontForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageFontForm.pas -------------------------------------------------------------------------------- /source/PropertyPageForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageForm.pas -------------------------------------------------------------------------------- /source/PropertyPageGeneralForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageGeneralForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageGeneralForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageGeneralForm.pas -------------------------------------------------------------------------------- /source/PropertyPageGroupsTreeForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageGroupsTreeForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageGroupsTreeForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageGroupsTreeForm.pas -------------------------------------------------------------------------------- /source/PropertyPageKeywordsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageKeywordsForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageKeywordsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageKeywordsForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMailAccountConnectionForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountConnectionForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMailAccountConnectionForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountConnectionForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMailAccountGeneralForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountGeneralForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMailAccountGeneralForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountGeneralForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMailAccountPreferencesForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountPreferencesForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMailAccountPreferencesForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountPreferencesForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMailAccountServerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountServerForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMailAccountServerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMailAccountServerForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMessagePaneForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessagePaneForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMessagePaneForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessagePaneForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMessageTreeActionsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessageTreeActionsForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMessageTreeActionsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessageTreeActionsForm.pas -------------------------------------------------------------------------------- /source/PropertyPageMessageTreeDisplayForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessageTreeDisplayForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageMessageTreeDisplayForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageMessageTreeDisplayForm.pas -------------------------------------------------------------------------------- /source/PropertyPageNewsgroupGeneralForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageNewsgroupGeneralForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageNewsgroupGeneralForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageNewsgroupGeneralForm.pas -------------------------------------------------------------------------------- /source/PropertyPagePosting.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePosting.dfm -------------------------------------------------------------------------------- /source/PropertyPagePosting.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePosting.pas -------------------------------------------------------------------------------- /source/PropertyPagePostingServersForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePostingServersForm.dfm -------------------------------------------------------------------------------- /source/PropertyPagePostingServersForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePostingServersForm.pas -------------------------------------------------------------------------------- /source/PropertyPagePreferencesForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePreferencesForm.dfm -------------------------------------------------------------------------------- /source/PropertyPagePreferencesForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPagePreferencesForm.pas -------------------------------------------------------------------------------- /source/PropertyPageQuotingForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageQuotingForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageQuotingForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageQuotingForm.pas -------------------------------------------------------------------------------- /source/PropertyPageShortcutsForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageShortcutsForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageShortcutsForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageShortcutsForm.pas -------------------------------------------------------------------------------- /source/PropertyPageSortingForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageSortingForm.dfm -------------------------------------------------------------------------------- /source/PropertyPageSortingForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageSortingForm.pas -------------------------------------------------------------------------------- /source/PropertyPageWin98Form.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageWin98Form.dfm -------------------------------------------------------------------------------- /source/PropertyPageWin98Form.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/PropertyPageWin98Form.pas -------------------------------------------------------------------------------- /source/ReadLnDelayDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ReadLnDelayDialog.dfm -------------------------------------------------------------------------------- /source/ReadLnDelayDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ReadLnDelayDialog.pas -------------------------------------------------------------------------------- /source/ReplyByMailForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ReplyByMailForm.dfm -------------------------------------------------------------------------------- /source/ReplyByMailForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ReplyByMailForm.pas -------------------------------------------------------------------------------- /source/SearchDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/SearchDialog.dfm -------------------------------------------------------------------------------- /source/SearchDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/SearchDialog.pas -------------------------------------------------------------------------------- /source/ServerAdminCreateGroupDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ServerAdminCreateGroupDialog.dfm -------------------------------------------------------------------------------- /source/ServerAdminCreateGroupDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ServerAdminCreateGroupDialog.pas -------------------------------------------------------------------------------- /source/ServerAdminRemoveGroupDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ServerAdminRemoveGroupDialog.dfm -------------------------------------------------------------------------------- /source/ServerAdminRemoveGroupDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/ServerAdminRemoveGroupDialog.pas -------------------------------------------------------------------------------- /source/SplashForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/SplashForm.dfm -------------------------------------------------------------------------------- /source/SplashForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/SplashForm.pas -------------------------------------------------------------------------------- /source/TestPerformanceDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/TestPerformanceDialog.dfm -------------------------------------------------------------------------------- /source/TestPerformanceDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/TestPerformanceDialog.pas -------------------------------------------------------------------------------- /source/XanaNews.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews.dpr -------------------------------------------------------------------------------- /source/XanaNews.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews.dproj -------------------------------------------------------------------------------- /source/XanaNews.mes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews.mes -------------------------------------------------------------------------------- /source/XanaNews.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews.res -------------------------------------------------------------------------------- /source/XanaNews.skincfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews.skincfg -------------------------------------------------------------------------------- /source/XanaNews_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XanaNews_Icon.ico -------------------------------------------------------------------------------- /source/XnCaptionedDockTree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XnCaptionedDockTree.pas -------------------------------------------------------------------------------- /source/XnCoderQuotedPrintable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XnCoderQuotedPrintable.pas -------------------------------------------------------------------------------- /source/XnCoderUUE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XnCoderUUE.pas -------------------------------------------------------------------------------- /source/XnXFace.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/XnXFace.pas -------------------------------------------------------------------------------- /source/cmpMessageScrollBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/cmpMessageScrollBox.pas -------------------------------------------------------------------------------- /source/i.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/i.res -------------------------------------------------------------------------------- /source/unitArticleHash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitArticleHash.pas -------------------------------------------------------------------------------- /source/unitBatches.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitBatches.pas -------------------------------------------------------------------------------- /source/unitBookmarks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitBookmarks.pas -------------------------------------------------------------------------------- /source/unitCIDMimeHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitCIDMimeHandler.pas -------------------------------------------------------------------------------- /source/unitCRC32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitCRC32.pas -------------------------------------------------------------------------------- /source/unitCheckVersion.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitCheckVersion.pas -------------------------------------------------------------------------------- /source/unitDefaultNewsreader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitDefaultNewsreader.pas -------------------------------------------------------------------------------- /source/unitFontDetails.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitFontDetails.pas -------------------------------------------------------------------------------- /source/unitGetMessages1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitGetMessages1.dfm -------------------------------------------------------------------------------- /source/unitGetMessages1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitGetMessages1.pas -------------------------------------------------------------------------------- /source/unitIdentities.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitIdentities.pas -------------------------------------------------------------------------------- /source/unitLog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitLog.pas -------------------------------------------------------------------------------- /source/unitMailServices.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMailServices.pas -------------------------------------------------------------------------------- /source/unitMessageBaseSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMessageBaseSearch.pas -------------------------------------------------------------------------------- /source/unitMessageMime.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMessageMime.pas -------------------------------------------------------------------------------- /source/unitMessageNNTPBinary.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMessageNNTPBinary.pas -------------------------------------------------------------------------------- /source/unitMessageYEncodedBinary.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMessageYEncodedBinary.pas -------------------------------------------------------------------------------- /source/unitMessages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitMessages.pas -------------------------------------------------------------------------------- /source/unitNNTPFilters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNNTPFilters.pas -------------------------------------------------------------------------------- /source/unitNNTPServices.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNNTPServices.pas -------------------------------------------------------------------------------- /source/unitNNTPThreadManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNNTPThreadManager.pas -------------------------------------------------------------------------------- /source/unitNNTPThreads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNNTPThreads.pas -------------------------------------------------------------------------------- /source/unitNewUserWizard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNewUserWizard.pas -------------------------------------------------------------------------------- /source/unitNewsReaderOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNewsReaderOptions.pas -------------------------------------------------------------------------------- /source/unitNewsThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNewsThread.pas -------------------------------------------------------------------------------- /source/unitNewsgroups.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitNewsgroups.pas -------------------------------------------------------------------------------- /source/unitRFC2646Coder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitRFC2646Coder.pas -------------------------------------------------------------------------------- /source/unitSavedArticles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitSavedArticles.pas -------------------------------------------------------------------------------- /source/unitSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitSettings.pas -------------------------------------------------------------------------------- /source/unitXanaExporter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graemeg/xananews/HEAD/source/unitXanaExporter.pas -------------------------------------------------------------------------------- /source/version.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "c:\Program Files (x86)\Git\bin\git.exe" log --pretty=format:"'%%h';" -n 1 > version.inc 3 | --------------------------------------------------------------------------------