├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── app ├── Age.php ├── Auth.php ├── Cache.php ├── Census │ ├── AbstractCensusColumn.php │ ├── AbstractCensusColumnCondition.php │ ├── Census.php │ ├── CensusColumnAge.php │ ├── CensusColumnAgeFemale.php │ ├── CensusColumnAgeFemale5Years.php │ ├── CensusColumnAgeMale.php │ ├── CensusColumnAgeMale5Years.php │ ├── CensusColumnAgeMarried.php │ ├── CensusColumnAgeNextBirthDay.php │ ├── CensusColumnBirthDate.php │ ├── CensusColumnBirthDay.php │ ├── CensusColumnBirthDayDotMonthYear.php │ ├── CensusColumnBirthDayMonthYear.php │ ├── CensusColumnBirthDaySlashMonth.php │ ├── CensusColumnBirthDaySlashMonthYear.php │ ├── CensusColumnBirthMonth.php │ ├── CensusColumnBirthMonthDay.php │ ├── CensusColumnBirthPlace.php │ ├── CensusColumnBirthPlaceSimple.php │ ├── CensusColumnBirthYear.php │ ├── CensusColumnBornForeignParts.php │ ├── CensusColumnChildrenBornAlive.php │ ├── CensusColumnChildrenDied.php │ ├── CensusColumnChildrenLiving.php │ ├── CensusColumnConditionCanada.php │ ├── CensusColumnConditionCanadaMarriedSingle.php │ ├── CensusColumnConditionCanadaMarriedWidowed.php │ ├── CensusColumnConditionCanadaWidowed.php │ ├── CensusColumnConditionCanadaWidowedFemale.php │ ├── CensusColumnConditionCanadaWidowedMale.php │ ├── CensusColumnConditionDanish.php │ ├── CensusColumnConditionEnglish.php │ ├── CensusColumnConditionFrenchFemme.php │ ├── CensusColumnConditionFrenchFille.php │ ├── CensusColumnConditionFrenchGarcon.php │ ├── CensusColumnConditionFrenchHomme.php │ ├── CensusColumnConditionFrenchVeuf.php │ ├── CensusColumnConditionFrenchVeuve.php │ ├── CensusColumnConditionUs.php │ ├── CensusColumnFatherBirthPlace.php │ ├── CensusColumnFatherBirthPlaceSimple.php │ ├── CensusColumnFatherForeign.php │ ├── CensusColumnFullName.php │ ├── CensusColumnGivenNameInitial.php │ ├── CensusColumnGivenNames.php │ ├── CensusColumnInterface.php │ ├── CensusColumnMarriedWithinYear.php │ ├── CensusColumnMonthIfBornWithinYear.php │ ├── CensusColumnMonthIfMarriedWithinYear.php │ ├── CensusColumnMotherBirthPlace.php │ ├── CensusColumnMotherBirthPlaceSimple.php │ ├── CensusColumnMotherForeign.php │ ├── CensusColumnNationality.php │ ├── CensusColumnNull.php │ ├── CensusColumnOccupation.php │ ├── CensusColumnRelationToHead.php │ ├── CensusColumnRelationToHeadEnglish.php │ ├── CensusColumnRelationToHeadGerman.php │ ├── CensusColumnReligion.php │ ├── CensusColumnSexF.php │ ├── CensusColumnSexM.php │ ├── CensusColumnSexMF.php │ ├── CensusColumnSexMK.php │ ├── CensusColumnSexMZ.php │ ├── CensusColumnSurname.php │ ├── CensusColumnSurnameGivenNameInitial.php │ ├── CensusColumnSurnameGivenNames.php │ ├── CensusColumnYearsMarried.php │ ├── CensusInterface.php │ ├── CensusOfCanada.php │ ├── CensusOfCanada1851.php │ ├── CensusOfCanada1861.php │ ├── CensusOfCanada1871.php │ ├── CensusOfCanada1881.php │ ├── CensusOfCanada1891.php │ ├── CensusOfCanada1901.php │ ├── CensusOfCanada1911.php │ ├── CensusOfCanada1921.php │ ├── CensusOfCanada1931.php │ ├── CensusOfCanadaPraries1916.php │ ├── CensusOfCanadaPraries1926.php │ ├── CensusOfCzechRepublic.php │ ├── CensusOfCzechRepublic1880.php │ ├── CensusOfCzechRepublic1890.php │ ├── CensusOfCzechRepublic1900.php │ ├── CensusOfCzechRepublic1910.php │ ├── CensusOfCzechRepublic1921.php │ ├── CensusOfDenmark.php │ ├── CensusOfDenmark1787.php │ ├── CensusOfDenmark1801.php │ ├── CensusOfDenmark1803.php │ ├── CensusOfDenmark1834.php │ ├── CensusOfDenmark1835.php │ ├── CensusOfDenmark1840.php │ ├── CensusOfDenmark1845.php │ ├── CensusOfDenmark1850.php │ ├── CensusOfDenmark1855.php │ ├── CensusOfDenmark1860.php │ ├── CensusOfDenmark1870.php │ ├── CensusOfDenmark1880.php │ ├── CensusOfDenmark1885.php │ ├── CensusOfDenmark1890.php │ ├── CensusOfDenmark1901.php │ ├── CensusOfDenmark1906.php │ ├── CensusOfDenmark1911.php │ ├── CensusOfDenmark1916.php │ ├── CensusOfDenmark1921.php │ ├── CensusOfDenmark1925.php │ ├── CensusOfDenmark1930.php │ ├── CensusOfDenmark1940.php │ ├── CensusOfDeutschland.php │ ├── CensusOfDeutschland1819.php │ ├── CensusOfDeutschland1867.php │ ├── CensusOfDeutschland1900.php │ ├── CensusOfDeutschland1919.php │ ├── CensusOfDeutschlandNL1867.php │ ├── CensusOfEngland.php │ ├── CensusOfEngland1841.php │ ├── CensusOfEngland1851.php │ ├── CensusOfEngland1861.php │ ├── CensusOfEngland1871.php │ ├── CensusOfEngland1881.php │ ├── CensusOfEngland1891.php │ ├── CensusOfEngland1901.php │ ├── CensusOfEngland1911.php │ ├── CensusOfFrance.php │ ├── CensusOfFrance1831.php │ ├── CensusOfFrance1836.php │ ├── CensusOfFrance1841.php │ ├── CensusOfFrance1846.php │ ├── CensusOfFrance1851.php │ ├── CensusOfFrance1856.php │ ├── CensusOfFrance1861.php │ ├── CensusOfFrance1866.php │ ├── CensusOfFrance1872.php │ ├── CensusOfFrance1876.php │ ├── CensusOfFrance1881.php │ ├── CensusOfFrance1886.php │ ├── CensusOfFrance1891.php │ ├── CensusOfFrance1896.php │ ├── CensusOfFrance1901.php │ ├── CensusOfFrance1906.php │ ├── CensusOfFrance1911.php │ ├── CensusOfFrance1921.php │ ├── CensusOfFrance1926.php │ ├── CensusOfFrance1931.php │ ├── CensusOfFrance1936.php │ ├── CensusOfFrance1946.php │ ├── CensusOfRhodeIsland.php │ ├── CensusOfRhodeIsland1905.php │ ├── CensusOfRhodeIsland1915.php │ ├── CensusOfRhodeIsland1925.php │ ├── CensusOfScotland.php │ ├── CensusOfScotland1841.php │ ├── CensusOfScotland1851.php │ ├── CensusOfScotland1861.php │ ├── CensusOfScotland1871.php │ ├── CensusOfScotland1881.php │ ├── CensusOfScotland1891.php │ ├── CensusOfScotland1901.php │ ├── CensusOfScotland1911.php │ ├── CensusOfSlovakia.php │ ├── CensusOfSlovakia1869.php │ ├── CensusOfSlovakia1930.php │ ├── CensusOfSlovakia1940.php │ ├── CensusOfUnitedStates.php │ ├── CensusOfUnitedStates1790.php │ ├── CensusOfUnitedStates1800.php │ ├── CensusOfUnitedStates1810.php │ ├── CensusOfUnitedStates1820.php │ ├── CensusOfUnitedStates1830.php │ ├── CensusOfUnitedStates1840.php │ ├── CensusOfUnitedStates1850.php │ ├── CensusOfUnitedStates1860.php │ ├── CensusOfUnitedStates1870.php │ ├── CensusOfUnitedStates1880.php │ ├── CensusOfUnitedStates1890.php │ ├── CensusOfUnitedStates1900.php │ ├── CensusOfUnitedStates1910.php │ ├── CensusOfUnitedStates1920.php │ ├── CensusOfUnitedStates1930.php │ ├── CensusOfUnitedStates1940.php │ ├── CensusOfUnitedStates1950.php │ ├── CensusOfWales.php │ ├── CensusOfWales1841.php │ ├── CensusOfWales1851.php │ ├── CensusOfWales1861.php │ ├── CensusOfWales1871.php │ ├── CensusOfWales1881.php │ ├── CensusOfWales1891.php │ ├── CensusOfWales1901.php │ ├── CensusOfWales1911.php │ ├── CensusPlaceInterface.php │ ├── RegisterOfEngland1939.php │ ├── RegisterOfScotland1939.php │ └── RegisterOfWales1939.php ├── Cli │ ├── Commands │ │ ├── AbstractCommand.php │ │ ├── CompilePoFiles.php │ │ ├── ConfigIni.php │ │ ├── SiteOffline.php │ │ ├── SiteOnline.php │ │ ├── SiteSetting.php │ │ ├── TreeCreate.php │ │ ├── TreeExport.php │ │ ├── TreeImport.php │ │ ├── TreeList.php │ │ ├── TreeSetting.php │ │ ├── UserCreate.php │ │ ├── UserList.php │ │ ├── UserSetting.php │ │ └── UserTreeSetting.php │ └── Console.php ├── ColorGenerator.php ├── CommonMark │ ├── CensusTableContinueParser.php │ ├── CensusTableExtension.php │ ├── CensusTableStartParser.php │ ├── XrefExtension.php │ ├── XrefNode.php │ ├── XrefParser.php │ └── XrefRenderer.php ├── Container.php ├── Contracts │ ├── CacheFactoryInterface.php │ ├── CalendarDateFactoryInterface.php │ ├── ContainerInterface.php │ ├── CustomTagInterface.php │ ├── ElementFactoryInterface.php │ ├── ElementInterface.php │ ├── EncodingFactoryInterface.php │ ├── FamilyFactoryInterface.php │ ├── FilesystemFactoryInterface.php │ ├── GedcomRecordFactoryInterface.php │ ├── HeaderFactoryInterface.php │ ├── IdFactoryInterface.php │ ├── ImageFactoryInterface.php │ ├── IndividualFactoryInterface.php │ ├── LocationFactoryInterface.php │ ├── MarkdownFactoryInterface.php │ ├── MediaFactoryInterface.php │ ├── NoteFactoryInterface.php │ ├── RepositoryFactoryInterface.php │ ├── ResponseFactoryInterface.php │ ├── RouteFactoryInterface.php │ ├── SharedNoteFactoryInterface.php │ ├── SlugFactoryInterface.php │ ├── SourceFactoryInterface.php │ ├── SubmissionFactoryInterface.php │ ├── SubmitterFactoryInterface.php │ ├── SurnameTraditionFactoryInterface.php │ ├── TimeFactoryInterface.php │ ├── TimestampFactoryInterface.php │ ├── TimestampInterface.php │ ├── UserInterface.php │ └── XrefFactoryInterface.php ├── CustomTags │ ├── Aldfaer.php │ ├── Ancestry.php │ ├── BrothersKeeper.php │ ├── FamilySearch.php │ ├── FamilyTreeBuilder.php │ ├── FamilyTreeMaker.php │ ├── Gedcom7.php │ ├── GedcomL.php │ ├── GenPlusWin.php │ ├── Geneatique.php │ ├── Heredis.php │ ├── Legacy.php │ ├── MyHeritage.php │ ├── PersonalAncestralFile.php │ ├── PhpGedView.php │ ├── ProGen.php │ ├── Reunion.php │ ├── RootsMagic.php │ ├── TheMasterGenealogist.php │ └── TheNextGeneration.php ├── DB.php ├── Date.php ├── Date │ ├── AbstractCalendarDate.php │ ├── AbstractGregorianJulianDate.php │ ├── FrenchDate.php │ ├── GregorianDate.php │ ├── HijriDate.php │ ├── JalaliDate.php │ ├── JewishDate.php │ ├── JulianDate.php │ └── RomanDate.php ├── DefaultUser.php ├── Elements │ ├── AbstractElement.php │ ├── AbstractEventElement.php │ ├── AbstractExternalLink.php │ ├── AbstractXrefElement.php │ ├── AddressCity.php │ ├── AddressCountry.php │ ├── AddressEmail.php │ ├── AddressFax.php │ ├── AddressLine.php │ ├── AddressLine1.php │ ├── AddressLine2.php │ ├── AddressLine3.php │ ├── AddressPostalCode.php │ ├── AddressState.php │ ├── AddressWebPage.php │ ├── AdoptedByWhichParent.php │ ├── Adoption.php │ ├── AdultChristening.php │ ├── AgeAtEvent.php │ ├── AncestralFileNumber.php │ ├── Annulment.php │ ├── ApprovedSystemId.php │ ├── AttributeDescriptor.php │ ├── AutomatedRecordId.php │ ├── Baptism.php │ ├── BarMitzvah.php │ ├── BasMitzvah.php │ ├── Birth.php │ ├── Blessing.php │ ├── Burial.php │ ├── CasteName.php │ ├── CauseOfEvent.php │ ├── Census.php │ ├── CertaintyAssessment.php │ ├── Change.php │ ├── ChangeDate.php │ ├── CharacterSet.php │ ├── ChildLinkageStatus.php │ ├── Christening.php │ ├── Confirmation.php │ ├── ContentDescription.php │ ├── Coordinates.php │ ├── CopyrightFile.php │ ├── CopyrightSourceData.php │ ├── CountOfChildren.php │ ├── CountOfChildrenFam.php │ ├── CountOfMarriages.php │ ├── Creation.php │ ├── Cremation.php │ ├── CustomElement.php │ ├── CustomEvent.php │ ├── CustomFact.php │ ├── CustomFamilyEvent.php │ ├── CustomIndividualEvent.php │ ├── DateLdsOrd.php │ ├── DateValue.php │ ├── DateValueExact.php │ ├── DateValueToday.php │ ├── Death.php │ ├── DemographicDataType.php │ ├── DescriptiveTitle.php │ ├── Divorce.php │ ├── DivorceFiled.php │ ├── Emigration.php │ ├── EmptyElement.php │ ├── Engagement.php │ ├── EventAttributeType.php │ ├── EventOrFactClassification.php │ ├── EventTypeCitedFrom.php │ ├── EventsRecorded.php │ ├── ExternalIdentifier.php │ ├── ExternalIdentifierType.php │ ├── FamilyCensus.php │ ├── FamilyEvent.php │ ├── FamilyFact.php │ ├── FamilyNonEvent.php │ ├── FamilyRecord.php │ ├── FamilySearchFamilyTreeId.php │ ├── FamilyStatusText.php │ ├── FileName.php │ ├── FirstCommunion.php │ ├── Form.php │ ├── GedcomElement.php │ ├── GeneatiqueAct.php │ ├── GenerationsOfAncestors.php │ ├── GenerationsOfDescendants.php │ ├── GovIdType.php │ ├── GovIdentifier.php │ ├── Graduation.php │ ├── HeaderRecord.php │ ├── HierarchicalRelationship.php │ ├── Immigration.php │ ├── IndividualEvent.php │ ├── IndividualFact.php │ ├── IndividualNonEvent.php │ ├── IndividualRecord.php │ ├── LanguageId.php │ ├── LdsBaptism.php │ ├── LdsBaptismDateStatus.php │ ├── LdsChildSealing.php │ ├── LdsChildSealingDateStatus.php │ ├── LdsConfirmation.php │ ├── LdsEndowment.php │ ├── LdsEndowmentDateStatus.php │ ├── LdsInitiatory.php │ ├── LdsOrdinanceStatus.php │ ├── LdsSpouseSealing.php │ ├── LdsSpouseSealingDateStatus.php │ ├── LocationRecord.php │ ├── MaidenheadLocator.php │ ├── Marriage.php │ ├── MarriageBanns.php │ ├── MarriageContract.php │ ├── MarriageLicence.php │ ├── MarriageSettlement.php │ ├── MarriageType.php │ ├── MediaRecord.php │ ├── MultimediaFileReference.php │ ├── MultimediaFormat.php │ ├── NameOfBusiness.php │ ├── NameOfFamilyFile.php │ ├── NameOfProduct.php │ ├── NameOfRepository.php │ ├── NameOfSourceData.php │ ├── NamePersonal.php │ ├── NamePhoneticVariation.php │ ├── NamePieceGiven.php │ ├── NamePieceNickname.php │ ├── NamePiecePrefix.php │ ├── NamePieceSuffix.php │ ├── NamePieceSurname.php │ ├── NamePieceSurnamePrefix.php │ ├── NameRomanizedVariation.php │ ├── NameType.php │ ├── NationalIdNumber.php │ ├── NationalOrTribalOrigin.php │ ├── Naturalization.php │ ├── NobilityTypeTitle.php │ ├── NoteRecord.php │ ├── NoteStructure.php │ ├── Occupation.php │ ├── OrdinanceProcessFlag.php │ ├── Ordination.php │ ├── PafUid.php │ ├── PedigreeLinkageType.php │ ├── PermanentRecordFileNumber.php │ ├── PhoneNumber.php │ ├── PhoneticType.php │ ├── PhysicalDescription.php │ ├── PlaceHierarchy.php │ ├── PlaceLatitude.php │ ├── PlaceLivingOrdinance.php │ ├── PlaceLongtitude.php │ ├── PlaceName.php │ ├── PlacePhoneticVariation.php │ ├── PlaceRomanizedVariation.php │ ├── Possessions.php │ ├── Probate.php │ ├── PublicationDate.php │ ├── ReceivingSystemName.php │ ├── RelationIsDescriptor.php │ ├── ReligiousAffiliation.php │ ├── RepositoryRecord.php │ ├── ResearchTask.php │ ├── ResearchTaskPriority.php │ ├── ResearchTaskStatus.php │ ├── ResearchTaskType.php │ ├── Residence.php │ ├── ResidenceWithValue.php │ ├── ResponsibleAgency.php │ ├── RestrictionNotice.php │ ├── Retirement.php │ ├── RoleInEvent.php │ ├── RomanizedType.php │ ├── ScholasticAchievement.php │ ├── SexValue.php │ ├── SexXValue.php │ ├── SocialSecurityNumber.php │ ├── SourceCallNumber.php │ ├── SourceData.php │ ├── SourceDescriptiveTitle.php │ ├── SourceFiledByEntry.php │ ├── SourceJurisdictionPlace.php │ ├── SourceMediaType.php │ ├── SourceOriginator.php │ ├── SourcePublicationFacts.php │ ├── SourceRecord.php │ ├── SubmissionRecord.php │ ├── SubmitterName.php │ ├── SubmitterRecord.php │ ├── SubmitterRegisteredRfn.php │ ├── SubmitterText.php │ ├── TempleCode.php │ ├── TextFromSource.php │ ├── TimeValue.php │ ├── TimeValueNow.php │ ├── TransmissionDate.php │ ├── Uid.php │ ├── UnknownElement.php │ ├── UserReferenceNumber.php │ ├── UserReferenceType.php │ ├── VersionNumber.php │ ├── WebtreesUser.php │ ├── WhereWithinSource.php │ ├── Will.php │ ├── XrefAssociate.php │ ├── XrefFamily.php │ ├── XrefIndividual.php │ ├── XrefLocation.php │ ├── XrefMedia.php │ ├── XrefNote.php │ ├── XrefRepository.php │ ├── XrefSharedNote.php │ ├── XrefSource.php │ ├── XrefSubmission.php │ └── XrefSubmitter.php ├── Encodings │ ├── ANSEL.php │ ├── ASCII.php │ ├── AbstractEncoding.php │ ├── AbstractUTF16Encoding.php │ ├── CP437.php │ ├── CP850.php │ ├── EncodingInterface.php │ ├── ISO88591.php │ ├── ISO88592.php │ ├── MacRoman.php │ ├── UTF16BE.php │ ├── UTF16LE.php │ ├── UTF8.php │ ├── Windows1250.php │ ├── Windows1251.php │ └── Windows1252.php ├── Exceptions │ ├── FileUploadException.php │ ├── GedcomErrorException.php │ ├── InvalidGedcomEncodingException.php │ └── NotFoundInContainerException.php ├── Fact.php ├── Factories │ ├── AbstractGedcomRecordFactory.php │ ├── CacheFactory.php │ ├── CalendarDateFactory.php │ ├── ElementFactory.php │ ├── EncodingFactory.php │ ├── FamilyFactory.php │ ├── FilesystemFactory.php │ ├── GedcomRecordFactory.php │ ├── HeaderFactory.php │ ├── IdFactory.php │ ├── ImageFactory.php │ ├── IndividualFactory.php │ ├── LocationFactory.php │ ├── MarkdownFactory.php │ ├── MediaFactory.php │ ├── NoteFactory.php │ ├── RepositoryFactory.php │ ├── ResponseFactory.php │ ├── RouteFactory.php │ ├── SharedNoteFactory.php │ ├── SlugFactory.php │ ├── SourceFactory.php │ ├── SubmissionFactory.php │ ├── SubmitterFactory.php │ ├── SurnameTraditionFactory.php │ ├── TimeFactory.php │ ├── TimestampFactory.php │ └── XrefFactory.php ├── Family.php ├── FlashMessages.php ├── Gedcom.php ├── GedcomFilters │ └── GedcomEncodingFilter.php ├── GedcomRecord.php ├── GuestUser.php ├── Header.php ├── Helpers │ └── functions.php ├── Html.php ├── Http │ ├── Dispatcher.php │ ├── Exceptions │ │ ├── HttpAccessDeniedException.php │ │ ├── HttpBadRequestException.php │ │ ├── HttpException.php │ │ ├── HttpGoneException.php │ │ ├── HttpNotFoundException.php │ │ ├── HttpServerErrorException.php │ │ ├── HttpServiceUnavailableException.php │ │ └── HttpTooManyRequestsException.php │ ├── Middleware │ │ ├── AuthAdministrator.php │ │ ├── AuthEditor.php │ │ ├── AuthLoggedIn.php │ │ ├── AuthManager.php │ │ ├── AuthMember.php │ │ ├── AuthModerator.php │ │ ├── BadBotBlocker.php │ │ ├── BaseUrl.php │ │ ├── BootModules.php │ │ ├── CheckCsrf.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── CheckForNewVersion.php │ │ ├── ClientIp.php │ │ ├── CompressResponse.php │ │ ├── ContentLength.php │ │ ├── DoHousekeeping.php │ │ ├── EmitResponse.php │ │ ├── ErrorHandler.php │ │ ├── HandleExceptions.php │ │ ├── LoadRoutes.php │ │ ├── PublicFiles.php │ │ ├── ReadConfigIni.php │ │ ├── RegisterGedcomTags.php │ │ ├── RequestHandler.php │ │ ├── Router.php │ │ ├── SecurityHeaders.php │ │ ├── UpdateDatabaseSchema.php │ │ ├── UseDatabase.php │ │ ├── UseLanguage.php │ │ ├── UseSession.php │ │ ├── UseTheme.php │ │ └── UseTransaction.php │ ├── RequestHandlers │ │ ├── AbstractAutocompleteHandler.php │ │ ├── AbstractModuleComponentAction.php │ │ ├── AbstractModuleComponentPage.php │ │ ├── AbstractTomSelectHandler.php │ │ ├── AccountDelete.php │ │ ├── AccountEdit.php │ │ ├── AccountUpdate.php │ │ ├── AddChildToFamilyAction.php │ │ ├── AddChildToFamilyPage.php │ │ ├── AddChildToIndividualAction.php │ │ ├── AddChildToIndividualPage.php │ │ ├── AddMediaFileAction.php │ │ ├── AddMediaFileModal.php │ │ ├── AddNewFact.php │ │ ├── AddParentToIndividualAction.php │ │ ├── AddParentToIndividualPage.php │ │ ├── AddSpouseToFamilyAction.php │ │ ├── AddSpouseToFamilyPage.php │ │ ├── AddSpouseToIndividualAction.php │ │ ├── AddSpouseToIndividualPage.php │ │ ├── AddUnlinkedAction.php │ │ ├── AddUnlinkedPage.php │ │ ├── AdminMediaFileDownload.php │ │ ├── AdminMediaFileThumbnail.php │ │ ├── AdsTxt.php │ │ ├── AppAdsTxt.php │ │ ├── AppleTouchIconPng.php │ │ ├── AutoCompleteCitation.php │ │ ├── AutoCompleteFolder.php │ │ ├── AutoCompletePlace.php │ │ ├── AutoCompleteSurname.php │ │ ├── BroadcastAction.php │ │ ├── BroadcastPage.php │ │ ├── BrowserconfigXml.php │ │ ├── CalendarAction.php │ │ ├── CalendarEvents.php │ │ ├── CalendarPage.php │ │ ├── ChangeFamilyMembersAction.php │ │ ├── ChangeFamilyMembersPage.php │ │ ├── CheckForNewVersionNow.php │ │ ├── CheckTree.php │ │ ├── CleanDataFolder.php │ │ ├── ContactAction.php │ │ ├── ContactPage.php │ │ ├── ControlPanel.php │ │ ├── CopyFact.php │ │ ├── CreateLocationAction.php │ │ ├── CreateLocationModal.php │ │ ├── CreateMediaObjectAction.php │ │ ├── CreateMediaObjectFromFile.php │ │ ├── CreateMediaObjectModal.php │ │ ├── CreateNoteAction.php │ │ ├── CreateNoteModal.php │ │ ├── CreateRepositoryAction.php │ │ ├── CreateRepositoryModal.php │ │ ├── CreateSourceAction.php │ │ ├── CreateSourceModal.php │ │ ├── CreateSubmissionAction.php │ │ ├── CreateSubmissionModal.php │ │ ├── CreateSubmitterAction.php │ │ ├── CreateSubmitterModal.php │ │ ├── CreateTreeAction.php │ │ ├── CreateTreePage.php │ │ ├── DataFixChoose.php │ │ ├── DataFixData.php │ │ ├── DataFixPage.php │ │ ├── DataFixPreview.php │ │ ├── DataFixSelect.php │ │ ├── DataFixUpdate.php │ │ ├── DataFixUpdateAll.php │ │ ├── DeleteFact.php │ │ ├── DeletePath.php │ │ ├── DeleteRecord.php │ │ ├── DeleteTreeAction.php │ │ ├── DeleteUser.php │ │ ├── EditFactAction.php │ │ ├── EditFactPage.php │ │ ├── EditMediaFileAction.php │ │ ├── EditMediaFileModal.php │ │ ├── EditNoteAction.php │ │ ├── EditNotePage.php │ │ ├── EditRawFactAction.php │ │ ├── EditRawFactPage.php │ │ ├── EditRawRecordAction.php │ │ ├── EditRawRecordPage.php │ │ ├── EditRecordAction.php │ │ ├── EditRecordPage.php │ │ ├── EmailPreferencesAction.php │ │ ├── EmailPreferencesPage.php │ │ ├── EmptyClipboard.php │ │ ├── ExportGedcomClient.php │ │ ├── ExportGedcomPage.php │ │ ├── ExportGedcomServer.php │ │ ├── FamilyPage.php │ │ ├── FaviconIco.php │ │ ├── FindDuplicateRecords.php │ │ ├── FixLevel0MediaAction.php │ │ ├── FixLevel0MediaData.php │ │ ├── FixLevel0MediaPage.php │ │ ├── GedcomLoad.php │ │ ├── GedcomRecordPage.php │ │ ├── HeaderPage.php │ │ ├── HelpText.php │ │ ├── HomePage.php │ │ ├── ImportGedcomAction.php │ │ ├── ImportGedcomPage.php │ │ ├── IndividualPage.php │ │ ├── LinkChildToFamilyAction.php │ │ ├── LinkChildToFamilyPage.php │ │ ├── LinkMediaToFamilyModal.php │ │ ├── LinkMediaToIndividualModal.php │ │ ├── LinkMediaToRecordAction.php │ │ ├── LinkMediaToSourceModal.php │ │ ├── LinkSpouseToIndividualAction.php │ │ ├── LinkSpouseToIndividualPage.php │ │ ├── LocationPage.php │ │ ├── LoginAction.php │ │ ├── LoginPage.php │ │ ├── Logout.php │ │ ├── ManageMediaAction.php │ │ ├── ManageMediaData.php │ │ ├── ManageMediaPage.php │ │ ├── ManageTrees.php │ │ ├── MapDataAdd.php │ │ ├── MapDataDelete.php │ │ ├── MapDataDeleteUnused.php │ │ ├── MapDataEdit.php │ │ ├── MapDataExportCSV.php │ │ ├── MapDataExportGeoJson.php │ │ ├── MapDataImportAction.php │ │ ├── MapDataImportPage.php │ │ ├── MapDataList.php │ │ ├── MapDataSave.php │ │ ├── Masquerade.php │ │ ├── MediaFileDownload.php │ │ ├── MediaFileThumbnail.php │ │ ├── MediaPage.php │ │ ├── MergeFactsAction.php │ │ ├── MergeFactsPage.php │ │ ├── MergeRecordsAction.php │ │ ├── MergeRecordsPage.php │ │ ├── MergeTreesAction.php │ │ ├── MergeTreesPage.php │ │ ├── MessageAction.php │ │ ├── MessagePage.php │ │ ├── MessageSelect.php │ │ ├── ModuleAction.php │ │ ├── ModuleDeleteSettings.php │ │ ├── ModulesAllAction.php │ │ ├── ModulesAllPage.php │ │ ├── ModulesAnalyticsAction.php │ │ ├── ModulesAnalyticsPage.php │ │ ├── ModulesBlocksAction.php │ │ ├── ModulesBlocksPage.php │ │ ├── ModulesChartsAction.php │ │ ├── ModulesChartsPage.php │ │ ├── ModulesDataFixesAction.php │ │ ├── ModulesDataFixesPage.php │ │ ├── ModulesFootersAction.php │ │ ├── ModulesFootersPage.php │ │ ├── ModulesHistoricEventsAction.php │ │ ├── ModulesHistoricEventsPage.php │ │ ├── ModulesLanguagesAction.php │ │ ├── ModulesLanguagesPage.php │ │ ├── ModulesListsAction.php │ │ ├── ModulesListsPage.php │ │ ├── ModulesMapAutocompleteAction.php │ │ ├── ModulesMapAutocompletePage.php │ │ ├── ModulesMapGeoLocationsAction.php │ │ ├── ModulesMapGeoLocationsPage.php │ │ ├── ModulesMapLinksAction.php │ │ ├── ModulesMapLinksPage.php │ │ ├── ModulesMapProvidersAction.php │ │ ├── ModulesMapProvidersPage.php │ │ ├── ModulesMenusAction.php │ │ ├── ModulesMenusPage.php │ │ ├── ModulesReportsAction.php │ │ ├── ModulesReportsPage.php │ │ ├── ModulesSharesAction.php │ │ ├── ModulesSharesPage.php │ │ ├── ModulesSidebarsAction.php │ │ ├── ModulesSidebarsPage.php │ │ ├── ModulesTabsAction.php │ │ ├── ModulesTabsPage.php │ │ ├── ModulesThemesAction.php │ │ ├── ModulesThemesPage.php │ │ ├── NotFound.php │ │ ├── NotePage.php │ │ ├── PasswordRequestAction.php │ │ ├── PasswordRequestPage.php │ │ ├── PasswordResetAction.php │ │ ├── PasswordResetPage.php │ │ ├── PasteFact.php │ │ ├── PendingChanges.php │ │ ├── PendingChangesAcceptChange.php │ │ ├── PendingChangesAcceptRecord.php │ │ ├── PendingChangesAcceptTree.php │ │ ├── PendingChangesLogAction.php │ │ ├── PendingChangesLogData.php │ │ ├── PendingChangesLogDelete.php │ │ ├── PendingChangesLogDownload.php │ │ ├── PendingChangesLogPage.php │ │ ├── PendingChangesRejectChange.php │ │ ├── PendingChangesRejectRecord.php │ │ ├── PendingChangesRejectTree.php │ │ ├── PhpInformation.php │ │ ├── Ping.php │ │ ├── RedirectAncestryPhp.php │ │ ├── RedirectBranchesPhp.php │ │ ├── RedirectCalendarPhp.php │ │ ├── RedirectCompactPhp.php │ │ ├── RedirectDescendencyPhp.php │ │ ├── RedirectFamListPhp.php │ │ ├── RedirectFamilyBookPhp.php │ │ ├── RedirectFamilyPhp.php │ │ ├── RedirectFanChartPhp.php │ │ ├── RedirectGedRecordPhp.php │ │ ├── RedirectHourGlassPhp.php │ │ ├── RedirectIndiListPhp.php │ │ ├── RedirectIndividualPhp.php │ │ ├── RedirectLifeSpanPhp.php │ │ ├── RedirectMediaListPhp.php │ │ ├── RedirectMediaViewerPhp.php │ │ ├── RedirectModulePhp.php │ │ ├── RedirectNoteListPhp.php │ │ ├── RedirectNotePhp.php │ │ ├── RedirectPedigreePhp.php │ │ ├── RedirectPlaceListPhp.php │ │ ├── RedirectRelationshipPhp.php │ │ ├── RedirectRepoListPhp.php │ │ ├── RedirectReportEnginePhp.php │ │ ├── RedirectRepositoryPhp.php │ │ ├── RedirectSourceListPhp.php │ │ ├── RedirectSourcePhp.php │ │ ├── RedirectStatisticsPhp.php │ │ ├── RedirectTimeLinePhp.php │ │ ├── RegisterAction.php │ │ ├── RegisterPage.php │ │ ├── RenumberTreeAction.php │ │ ├── RenumberTreePage.php │ │ ├── ReorderChildrenAction.php │ │ ├── ReorderChildrenPage.php │ │ ├── ReorderFamiliesAction.php │ │ ├── ReorderFamiliesPage.php │ │ ├── ReorderMediaAction.php │ │ ├── ReorderMediaFilesAction.php │ │ ├── ReorderMediaFilesPage.php │ │ ├── ReorderMediaPage.php │ │ ├── ReorderNamesAction.php │ │ ├── ReorderNamesPage.php │ │ ├── ReportGenerate.php │ │ ├── ReportListAction.php │ │ ├── ReportListPage.php │ │ ├── ReportSetupAction.php │ │ ├── ReportSetupPage.php │ │ ├── RepositoryPage.php │ │ ├── RobotsTxt.php │ │ ├── SearchAdvancedAction.php │ │ ├── SearchAdvancedPage.php │ │ ├── SearchGeneralAction.php │ │ ├── SearchGeneralPage.php │ │ ├── SearchPhoneticAction.php │ │ ├── SearchPhoneticPage.php │ │ ├── SearchQuickAction.php │ │ ├── SearchReplaceAction.php │ │ ├── SearchReplacePage.php │ │ ├── SelectDefaultTree.php │ │ ├── SelectLanguage.php │ │ ├── SelectNewFact.php │ │ ├── SelectTheme.php │ │ ├── SetupWizard.php │ │ ├── SharedNotePage.php │ │ ├── SiteLogsAction.php │ │ ├── SiteLogsData.php │ │ ├── SiteLogsDelete.php │ │ ├── SiteLogsDownload.php │ │ ├── SiteLogsPage.php │ │ ├── SitePreferencesAction.php │ │ ├── SitePreferencesPage.php │ │ ├── SiteRegistrationAction.php │ │ ├── SiteRegistrationPage.php │ │ ├── SiteTagsAction.php │ │ ├── SiteTagsPage.php │ │ ├── SourcePage.php │ │ ├── SubmissionPage.php │ │ ├── SubmitterPage.php │ │ ├── SynchronizeTrees.php │ │ ├── TomSelectFamily.php │ │ ├── TomSelectIndividual.php │ │ ├── TomSelectLocation.php │ │ ├── TomSelectMediaObject.php │ │ ├── TomSelectNote.php │ │ ├── TomSelectPlace.php │ │ ├── TomSelectRepository.php │ │ ├── TomSelectSharedNote.php │ │ ├── TomSelectSource.php │ │ ├── TomSelectSubmission.php │ │ ├── TomSelectSubmitter.php │ │ ├── TreePage.php │ │ ├── TreePageBlock.php │ │ ├── TreePageBlockEdit.php │ │ ├── TreePageBlockUpdate.php │ │ ├── TreePageDefaultEdit.php │ │ ├── TreePageDefaultUpdate.php │ │ ├── TreePageEdit.php │ │ ├── TreePageUpdate.php │ │ ├── TreePreferencesAction.php │ │ ├── TreePreferencesPage.php │ │ ├── TreePrivacyAction.php │ │ ├── TreePrivacyPage.php │ │ ├── UnconnectedAction.php │ │ ├── UnconnectedPage.php │ │ ├── UpgradeWizardConfirm.php │ │ ├── UpgradeWizardPage.php │ │ ├── UpgradeWizardStep.php │ │ ├── UploadMediaAction.php │ │ ├── UploadMediaPage.php │ │ ├── UserAddAction.php │ │ ├── UserAddPage.php │ │ ├── UserEditAction.php │ │ ├── UserEditPage.php │ │ ├── UserListData.php │ │ ├── UserListPage.php │ │ ├── UserPage.php │ │ ├── UserPageBlock.php │ │ ├── UserPageBlockEdit.php │ │ ├── UserPageBlockUpdate.php │ │ ├── UserPageDefaultEdit.php │ │ ├── UserPageDefaultUpdate.php │ │ ├── UserPageEdit.php │ │ ├── UserPageUpdate.php │ │ ├── UsersCleanupAction.php │ │ ├── UsersCleanupPage.php │ │ ├── VerifyEmail.php │ │ └── WebmanifestJson.php │ ├── Routes │ │ ├── ApiRoutes.php │ │ └── WebRoutes.php │ └── ViewResponseTrait.php ├── I18N.php ├── Individual.php ├── Location.php ├── Log.php ├── Media.php ├── MediaFile.php ├── Menu.php ├── Mime.php ├── Module │ ├── AbstractIndividualListModule.php │ ├── AbstractModule.php │ ├── AhnentafelReportModule.php │ ├── AlbumModule.php │ ├── AncestorsChartModule.php │ ├── AustrianHistoricEvents.php │ ├── AustrianPresidents.php │ ├── BingMaps.php │ ├── BingWebmasterToolsModule.php │ ├── BirthDeathMarriageReportModule.php │ ├── BirthReportModule.php │ ├── BranchesListModule.php │ ├── BritishMonarchs.php │ ├── BritishPrimeMinisters.php │ ├── BritishSocialHistory.php │ ├── CalendarMenuModule.php │ ├── CemeteryReportModule.php │ ├── CensusAssistantModule.php │ ├── ChangeReportModule.php │ ├── ChartsBlockModule.php │ ├── ChartsMenuModule.php │ ├── CheckForNewVersion.php │ ├── CkeditorModule.php │ ├── ClippingsCartModule.php │ ├── CloudsTheme.php │ ├── ColorsTheme.php │ ├── CompactTreeChartModule.php │ ├── ContactsFooterModule.php │ ├── CustomCssJsModule.php │ ├── CzechMonarchsAndPresidents.php │ ├── DeathReportModule.php │ ├── DescendancyChartModule.php │ ├── DescendancyModule.php │ ├── DescendancyReportModule.php │ ├── DutchMonarchs.php │ ├── DutchPrimeMinisters.php │ ├── EsriMaps.php │ ├── FabTheme.php │ ├── FactSourcesReportModule.php │ ├── FamilyBookChartModule.php │ ├── FamilyGroupReportModule.php │ ├── FamilyListModule.php │ ├── FamilyNavigatorModule.php │ ├── FamilyTreeFavoritesModule.php │ ├── FamilyTreeNewsModule.php │ ├── FamilyTreeStatisticsModule.php │ ├── FanChartModule.php │ ├── FixCemeteryTag.php │ ├── FixDuplicateLinks.php │ ├── FixMissingDeaths.php │ ├── FixNameSlashesAndSpaces.php │ ├── FixNameTags.php │ ├── FixPlaceNames.php │ ├── FixPrimaryTag.php │ ├── FixSearchAndReplace.php │ ├── FixWtObjeSortTag.php │ ├── FrenchHistory.php │ ├── FrequentlyAskedQuestionsModule.php │ ├── GeonamesAutocomplete.php │ ├── GoogleAnalyticsModule.php │ ├── GoogleMaps.php │ ├── GoogleWebmasterToolsModule.php │ ├── HereMaps.php │ ├── HitCountFooterModule.php │ ├── HourglassChartModule.php │ ├── HtmlBlockModule.php │ ├── IndividualFactsTabModule.php │ ├── IndividualFamiliesReportModule.php │ ├── IndividualListModule.php │ ├── IndividualMetadataModule.php │ ├── IndividualReportModule.php │ ├── InteractiveTree │ │ └── TreeView.php │ ├── InteractiveTreeModule.php │ ├── LanguageAfrikaans.php │ ├── LanguageAlbanian.php │ ├── LanguageArabic.php │ ├── LanguageArmenian.php │ ├── LanguageBasque.php │ ├── LanguageBosnian.php │ ├── LanguageBulgarian.php │ ├── LanguageCatalan.php │ ├── LanguageChineseSimplified.php │ ├── LanguageChineseTraditional.php │ ├── LanguageCroatian.php │ ├── LanguageCzech.php │ ├── LanguageDanish.php │ ├── LanguageDivehi.php │ ├── LanguageDutch.php │ ├── LanguageEnglishAustralia.php │ ├── LanguageEnglishGreatBritain.php │ ├── LanguageEnglishUnitedStates.php │ ├── LanguageEstonian.php │ ├── LanguageFaroese.php │ ├── LanguageFarsi.php │ ├── LanguageFinnish.php │ ├── LanguageFrench.php │ ├── LanguageFrenchCanada.php │ ├── LanguageGalician.php │ ├── LanguageGeorgian.php │ ├── LanguageGerman.php │ ├── LanguageGreek.php │ ├── LanguageHebrew.php │ ├── LanguageHindi.php │ ├── LanguageHungarian.php │ ├── LanguageIcelandic.php │ ├── LanguageIndonesian.php │ ├── LanguageItalian.php │ ├── LanguageJapanese.php │ ├── LanguageJavanese.php │ ├── LanguageKazhak.php │ ├── LanguageKorean.php │ ├── LanguageKurdish.php │ ├── LanguageLatvian.php │ ├── LanguageLingala.php │ ├── LanguageLithuanian.php │ ├── LanguageMalay.php │ ├── LanguageMaori.php │ ├── LanguageMarathi.php │ ├── LanguageNepalese.php │ ├── LanguageNorwegianBokmal.php │ ├── LanguageNorwegianNynorsk.php │ ├── LanguageOccitan.php │ ├── LanguagePolish.php │ ├── LanguagePortuguese.php │ ├── LanguagePortugueseBrazil.php │ ├── LanguageRomanian.php │ ├── LanguageRussian.php │ ├── LanguageSerbian.php │ ├── LanguageSerbianLatin.php │ ├── LanguageSlovakian.php │ ├── LanguageSlovenian.php │ ├── LanguageSpanish.php │ ├── LanguageSundanese.php │ ├── LanguageSwahili.php │ ├── LanguageSwedish.php │ ├── LanguageTagalog.php │ ├── LanguageTamil.php │ ├── LanguageTatar.php │ ├── LanguageThai.php │ ├── LanguageTurkish.php │ ├── LanguageUkranian.php │ ├── LanguageUrdu.php │ ├── LanguageUzbek.php │ ├── LanguageVietnamese.php │ ├── LanguageWelsh.php │ ├── LanguageYiddish.php │ ├── LifespansChartModule.php │ ├── ListsMenuModule.php │ ├── LocationListModule.php │ ├── LoggedInUsersModule.php │ ├── LoginBlockModule.php │ ├── LowCountriesRulers.php │ ├── MapBox.php │ ├── MapGeoLocationGeonames.php │ ├── MapGeoLocationNominatim.php │ ├── MapGeoLocationOpenRouteService.php │ ├── MapLinkBing.php │ ├── MapLinkGoogle.php │ ├── MapLinkOpenStreetMap.php │ ├── MarriageReportModule.php │ ├── MatomoAnalyticsModule.php │ ├── MediaListModule.php │ ├── MediaTabModule.php │ ├── MinimalTheme.php │ ├── MissingFactsReportModule.php │ ├── ModuleAnalyticsInterface.php │ ├── ModuleAnalyticsTrait.php │ ├── ModuleBlockInterface.php │ ├── ModuleBlockTrait.php │ ├── ModuleChartInterface.php │ ├── ModuleChartTrait.php │ ├── ModuleConfigInterface.php │ ├── ModuleConfigTrait.php │ ├── ModuleCustomInterface.php │ ├── ModuleCustomTrait.php │ ├── ModuleDataFixInterface.php │ ├── ModuleDataFixTrait.php │ ├── ModuleExternalUrlInterface.php │ ├── ModuleExternalUrlTrait.php │ ├── ModuleFooterInterface.php │ ├── ModuleFooterTrait.php │ ├── ModuleGlobalInterface.php │ ├── ModuleGlobalTrait.php │ ├── ModuleHistoricEventsInterface.php │ ├── ModuleHistoricEventsTrait.php │ ├── ModuleInterface.php │ ├── ModuleLanguageInterface.php │ ├── ModuleLanguageTrait.php │ ├── ModuleListInterface.php │ ├── ModuleListTrait.php │ ├── ModuleMapAutocompleteInterface.php │ ├── ModuleMapAutocompleteTrait.php │ ├── ModuleMapGeoLocationInterface.php │ ├── ModuleMapGeoLocationTrait.php │ ├── ModuleMapLinkInterface.php │ ├── ModuleMapLinkTrait.php │ ├── ModuleMapProviderInterface.php │ ├── ModuleMapProviderTrait.php │ ├── ModuleMenuInterface.php │ ├── ModuleMenuTrait.php │ ├── ModuleReportInterface.php │ ├── ModuleReportTrait.php │ ├── ModuleShareInterface.php │ ├── ModuleShareTrait.php │ ├── ModuleSidebarInterface.php │ ├── ModuleSidebarTrait.php │ ├── ModuleTabInterface.php │ ├── ModuleTabTrait.php │ ├── ModuleThemeInterface.php │ ├── ModuleThemeTrait.php │ ├── NewZealandPrimeMinisters.php │ ├── NoteListModule.php │ ├── NotesTabModule.php │ ├── OccupationReportModule.php │ ├── OnThisDayModule.php │ ├── OpenRouteServiceAutocomplete.php │ ├── OpenStreetMap.php │ ├── PedigreeChartModule.php │ ├── PedigreeMapModule.php │ ├── PedigreeReportModule.php │ ├── PlaceHierarchyListModule.php │ ├── PlacesModule.php │ ├── PoweredByWebtreesModule.php │ ├── PrivacyPolicy.php │ ├── RecentChangesModule.php │ ├── RedirectLegacyUrlsModule.php │ ├── RelatedIndividualsReportModule.php │ ├── RelationshipsChartModule.php │ ├── RelativesTabModule.php │ ├── ReportsMenuModule.php │ ├── RepositoryListModule.php │ ├── ResearchTaskModule.php │ ├── ReviewChangesModule.php │ ├── SearchMenuModule.php │ ├── ShareAnniversaryModule.php │ ├── ShareUrlModule.php │ ├── SiteMapModule.php │ ├── SlideShowModule.php │ ├── SourceListModule.php │ ├── SourcesTabModule.php │ ├── StatcounterModule.php │ ├── StatisticsChartModule.php │ ├── StoriesModule.php │ ├── SubmitterListModule.php │ ├── ThemeSelectModule.php │ ├── TimelineChartModule.php │ ├── TopGivenNamesModule.php │ ├── TopPageViewsModule.php │ ├── TopSurnamesModule.php │ ├── TreesMenuModule.php │ ├── USPresidents.php │ ├── UpcomingAnniversariesModule.php │ ├── UserFavoritesModule.php │ ├── UserJournalModule.php │ ├── UserMessagesModule.php │ ├── UserWelcomeModule.php │ ├── WebtreesTheme.php │ ├── WelcomeBlockModule.php │ ├── XeneaTheme.php │ └── YahrzeitModule.php ├── NoReplyUser.php ├── Note.php ├── Place.php ├── PlaceLocation.php ├── Registry.php ├── Relationship.php ├── Report │ ├── AbstractRenderer.php │ ├── HtmlRenderer.php │ ├── PdfRenderer.php │ ├── ReportBaseCell.php │ ├── ReportBaseElement.php │ ├── ReportBaseFootnote.php │ ├── ReportBaseImage.php │ ├── ReportBaseLine.php │ ├── ReportBaseText.php │ ├── ReportBaseTextbox.php │ ├── ReportExpressionLanguageProvider.php │ ├── ReportHtmlCell.php │ ├── ReportHtmlFootnote.php │ ├── ReportHtmlImage.php │ ├── ReportHtmlLine.php │ ├── ReportHtmlText.php │ ├── ReportHtmlTextbox.php │ ├── ReportParserBase.php │ ├── ReportParserGenerate.php │ ├── ReportParserSetup.php │ ├── ReportPdfCell.php │ ├── ReportPdfFootnote.php │ ├── ReportPdfImage.php │ ├── ReportPdfLine.php │ ├── ReportPdfText.php │ ├── ReportPdfTextBox.php │ ├── RightToLeftSupport.php │ └── TcpdfWrapper.php ├── Repository.php ├── Schema │ ├── Migration0.php │ ├── Migration1.php │ ├── Migration10.php │ ├── Migration11.php │ ├── Migration12.php │ ├── Migration13.php │ ├── Migration14.php │ ├── Migration15.php │ ├── Migration16.php │ ├── Migration17.php │ ├── Migration18.php │ ├── Migration19.php │ ├── Migration2.php │ ├── Migration20.php │ ├── Migration21.php │ ├── Migration22.php │ ├── Migration23.php │ ├── Migration24.php │ ├── Migration25.php │ ├── Migration26.php │ ├── Migration27.php │ ├── Migration28.php │ ├── Migration29.php │ ├── Migration3.php │ ├── Migration30.php │ ├── Migration31.php │ ├── Migration32.php │ ├── Migration33.php │ ├── Migration34.php │ ├── Migration35.php │ ├── Migration36.php │ ├── Migration37.php │ ├── Migration38.php │ ├── Migration39.php │ ├── Migration4.php │ ├── Migration40.php │ ├── Migration41.php │ ├── Migration42.php │ ├── Migration43.php │ ├── Migration44.php │ ├── Migration5.php │ ├── Migration6.php │ ├── Migration7.php │ ├── Migration8.php │ ├── Migration9.php │ ├── MigrationInterface.php │ ├── SeedDefaultResnTable.php │ ├── SeedGedcomTable.php │ ├── SeedInterface.php │ └── SeedUserTable.php ├── Services │ ├── AdminService.php │ ├── CalendarService.php │ ├── CaptchaService.php │ ├── ChartService.php │ ├── ClipboardService.php │ ├── DataFixService.php │ ├── DatatablesService.php │ ├── EmailService.php │ ├── GedcomEditService.php │ ├── GedcomExportService.php │ ├── GedcomImportService.php │ ├── GedcomService.php │ ├── HomePageService.php │ ├── HousekeepingService.php │ ├── HtmlService.php │ ├── IndividualFactsService.php │ ├── LeafletJsService.php │ ├── LinkedRecordService.php │ ├── MapDataService.php │ ├── MediaFileService.php │ ├── MessageService.php │ ├── MigrationService.php │ ├── ModuleService.php │ ├── NetworkService.php │ ├── PendingChangesService.php │ ├── PhpService.php │ ├── RateLimitService.php │ ├── RelationshipService.php │ ├── RomanNumeralsService.php │ ├── SearchService.php │ ├── ServerCheckService.php │ ├── SiteLogsService.php │ ├── TimeoutService.php │ ├── TreeService.php │ ├── UpgradeService.php │ └── UserService.php ├── Session.php ├── SessionDatabaseHandler.php ├── SharedNote.php ├── Site.php ├── SiteUser.php ├── Soundex.php ├── Source.php ├── Statistics.php ├── StatisticsData.php ├── StatisticsFormat.php ├── Submission.php ├── Submitter.php ├── SurnameTradition │ ├── DefaultSurnameTradition.php │ ├── IcelandicSurnameTradition.php │ ├── LithuanianSurnameTradition.php │ ├── MatrilinealSurnameTradition.php │ ├── PaternalSurnameTradition.php │ ├── PatrilinealSurnameTradition.php │ ├── PolishSurnameTradition.php │ ├── PortugueseSurnameTradition.php │ ├── SpanishSurnameTradition.php │ └── SurnameTraditionInterface.php ├── Timestamp.php ├── Tree.php ├── TreeUser.php ├── User.php ├── Validator.php ├── View.php └── Webtrees.php ├── apple-touch-icon.png ├── data ├── .htaccess └── index.php ├── favicon.ico ├── index.php ├── modules_v4 └── README.md ├── public ├── apple-touch-icon.png ├── ckeditor-4.15.1-custom │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ ├── dialogDefinition.js │ │ │ └── styles │ │ │ │ └── dialog.css │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastetools │ │ │ └── filter │ │ │ │ ├── common.js │ │ │ │ └── image.js │ │ ├── preview │ │ │ ├── images │ │ │ │ └── pagebreak.gif │ │ │ ├── preview.html │ │ │ └── styles │ │ │ │ └── screen.css │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ └── moono-lisa │ │ │ └── wsc.css │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── anchor.png │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── anchor.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ ├── styles.js │ └── vendor │ │ └── promise.js ├── css │ ├── administration.min.css │ ├── clouds.min.css │ ├── colors.min.css │ ├── colors │ │ ├── aquamarine.min.css │ │ ├── ash.min.css │ │ ├── belgianchocolate.min.css │ │ ├── bluelagoon.min.css │ │ ├── bluemarine.min.css │ │ ├── coffeeandcream.min.css │ │ ├── coldday.min.css │ │ ├── greenbeam.min.css │ │ ├── mediterranio.min.css │ │ ├── mercury.min.css │ │ ├── nocturnal.min.css │ │ ├── olivia.min.css │ │ ├── pinkplastic.min.css │ │ ├── sage.min.css │ │ ├── shinytomato.min.css │ │ └── tealtop.min.css │ ├── fab.min.css │ ├── images │ │ ├── dline.png │ │ ├── dline2.png │ │ ├── geocoder.png │ │ ├── hline.png │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ ├── marker-shadow.png │ │ ├── spacer.png │ │ ├── throbber.gif │ │ └── vline.png │ ├── minimal.min.css │ ├── vendor.min.css │ ├── webtrees.min.css │ └── xenea.min.css ├── favicon-128.png ├── favicon-152.png ├── favicon-167.png ├── favicon-180.png ├── favicon-192.png ├── favicon-32.png ├── favicon.ico ├── index.php └── js │ ├── vendor.min.js │ └── webtrees.min.js └── resources ├── fonts └── DejaVuSans.ttf ├── img ├── watermark.png ├── webtrees-icon.png └── wetrees-logo.svg ├── lang ├── en-US │ └── messages.php └── webtrees.pot ├── views ├── admin │ ├── analytics-edit.phtml │ ├── broadcast.phtml │ ├── changes-log.phtml │ ├── clean-data.phtml │ ├── components.phtml │ ├── control-panel.phtml │ ├── custom-module-info.phtml │ ├── data-fix-page.phtml │ ├── data-fix-select.phtml │ ├── email-page.phtml │ ├── external-module-info.phtml │ ├── fix-level-0-media-action.phtml │ ├── fix-level-0-media.phtml │ ├── gedcom-export-options.phtml │ ├── import-complete.phtml │ ├── import-fail.phtml │ ├── import-progress.phtml │ ├── location-edit.phtml │ ├── locations.phtml │ ├── map-import-form.phtml │ ├── media-upload.phtml │ ├── media.phtml │ ├── merge-records-step-1.phtml │ ├── merge-records-step-2.phtml │ ├── modules.phtml │ ├── server-information.phtml │ ├── site-logs.phtml │ ├── site-mail.phtml │ ├── site-preferences.phtml │ ├── site-registration.phtml │ ├── synchronize-trees.phtml │ ├── tags.phtml │ ├── trees-check.phtml │ ├── trees-create.phtml │ ├── trees-duplicates.phtml │ ├── trees-export.phtml │ ├── trees-import.phtml │ ├── trees-merge.phtml │ ├── trees-preferences.phtml │ ├── trees-privacy.phtml │ ├── trees-renumber.phtml │ ├── trees-unconnected.phtml │ ├── trees.phtml │ ├── upgrade │ │ ├── steps.phtml │ │ └── wizard.phtml │ ├── users-cleanup.phtml │ ├── users-create.phtml │ ├── users-edit.phtml │ ├── users-table-options.phtml │ └── users.phtml ├── branches-page.phtml ├── browserconfig-xml.phtml ├── calendar-list.phtml ├── calendar-page.phtml ├── captcha.phtml ├── chart-box.phtml ├── components │ ├── alert-danger.phtml │ ├── alert-success.phtml │ ├── alert-warning-dismissible.phtml │ ├── badge.phtml │ ├── breadcrumbs.phtml │ ├── checkbox-inline.phtml │ ├── checkbox.phtml │ ├── datetime-diff.phtml │ ├── datetime.phtml │ ├── menu-item.phtml │ ├── progress.phtml │ ├── radio-inline.phtml │ ├── radio.phtml │ ├── radios-inline.phtml │ ├── radios.phtml │ ├── select-family.phtml │ ├── select-individual.phtml │ ├── select-location.phtml │ ├── select-media.phtml │ ├── select-note.phtml │ ├── select-number.phtml │ ├── select-place.phtml │ ├── select-repository.phtml │ ├── select-shared-note.phtml │ ├── select-source.phtml │ ├── select-submission.phtml │ ├── select-submitter.phtml │ └── select.phtml ├── contact-page.phtml ├── edit-account-page.phtml ├── edit-blocks-block.phtml ├── edit-blocks-page.phtml ├── edit │ ├── add-fact-row.phtml │ ├── change-family-members.phtml │ ├── edit-fact.phtml │ ├── edit-gedcom-fields.phtml │ ├── edit-record.phtml │ ├── icon-fact-copy.phtml │ ├── icon-fact-delete.phtml │ ├── icon-fact-edit.phtml │ ├── initialize-calendar-popup.phtml │ ├── input-addon-calendar.phtml │ ├── input-addon-coordinates.phtml │ ├── input-addon-edit-name.phtml │ ├── input-addon-help.phtml │ ├── input-addon-keyboard.phtml │ ├── language-checkboxes.phtml │ ├── link-child-to-family.phtml │ ├── link-spouse-to-individual.phtml │ ├── new-individual.phtml │ ├── raw-gedcom-fact.phtml │ ├── raw-gedcom-record.phtml │ ├── reorder-card-header.phtml │ ├── reorder-children.phtml │ ├── reorder-families.phtml │ ├── reorder-media-files.phtml │ ├── reorder-media.phtml │ ├── reorder-names.phtml │ └── shared-note.phtml ├── emails │ ├── approve-user-html.phtml │ ├── approve-user-text.phtml │ ├── message-copy-html.phtml │ ├── message-copy-text.phtml │ ├── message-user-html.phtml │ ├── message-user-text.phtml │ ├── new-version-html.phtml │ ├── new-version-text.phtml │ ├── password-request-html.phtml │ ├── password-request-text.phtml │ ├── pending-changes-html.phtml │ ├── pending-changes-text.phtml │ ├── register-notify-html.phtml │ ├── register-notify-text.phtml │ ├── register-user-html.phtml │ ├── register-user-text.phtml │ ├── verify-notify-html.phtml │ └── verify-notify-text.phtml ├── errors │ ├── database-connection.phtml │ ├── database-error.phtml │ ├── image-svg.phtml │ ├── no-tree-access.phtml │ └── unhandled-exception.phtml ├── expand-chart-box.phtml ├── fact-add-new.phtml ├── fact-associates.phtml ├── fact-association-structure.phtml ├── fact-date.phtml ├── fact-edit-links.phtml ├── fact-gedcom-fields.phtml ├── fact-media.phtml ├── fact-notes.phtml ├── fact-parent-age.phtml ├── fact-parents-age.phtml ├── fact-place.phtml ├── fact-sources.phtml ├── fact.phtml ├── family-page-children.phtml ├── family-page-grandparents.phtml ├── family-page-menu.phtml ├── family-page-parents.phtml ├── family-page-pending.phtml ├── family-page.phtml ├── forgot-password-page.phtml ├── help │ ├── data-fixes.phtml │ ├── date.phtml │ ├── hebrew.phtml │ ├── link.phtml │ ├── media-object.phtml │ ├── name.phtml │ ├── pending-changes.phtml │ ├── place.phtml │ ├── relationship-privacy.phtml │ ├── restriction.phtml │ ├── romanized.phtml │ ├── source-events.phtml │ └── surname.phtml ├── icons │ ├── account.phtml │ ├── add.phtml │ ├── analytics.phtml │ ├── anniversary.phtml │ ├── arrow-down.phtml │ ├── arrow-left.phtml │ ├── arrow-right.phtml │ ├── arrow-up.phtml │ ├── ban.phtml │ ├── bing-maps.phtml │ ├── block-tree.phtml │ ├── block-user.phtml │ ├── block.phtml │ ├── calendar.phtml │ ├── cancel.phtml │ ├── chart.phtml │ ├── collapse.phtml │ ├── coordinates.phtml │ ├── copy.phtml │ ├── data-fix.phtml │ ├── database.phtml │ ├── delete.phtml │ ├── download.phtml │ ├── drag-handle.phtml │ ├── edit.phtml │ ├── email.phtml │ ├── enter-fullscreen.phtml │ ├── exit-fullscreen.phtml │ ├── expand.phtml │ ├── family.phtml │ ├── favorite.phtml │ ├── file.phtml │ ├── folder.phtml │ ├── footer.phtml │ ├── google-maps.phtml │ ├── help.phtml │ ├── history.phtml │ ├── individual.phtml │ ├── information.phtml │ ├── keyboard.phtml │ ├── language.phtml │ ├── link.phtml │ ├── list.phtml │ ├── location.phtml │ ├── lock.phtml │ ├── map.phtml │ ├── media-next.phtml │ ├── media-play.phtml │ ├── media-stop.phtml │ ├── media.phtml │ ├── menu.phtml │ ├── merge.phtml │ ├── mime.phtml │ ├── module.phtml │ ├── note.phtml │ ├── openstreetmap.phtml │ ├── pedigree-down.phtml │ ├── pedigree-left.phtml │ ├── pedigree-right.phtml │ ├── pedigree-up.phtml │ ├── pin.phtml │ ├── preferences.phtml │ ├── record.phtml │ ├── reorder.phtml │ ├── report.phtml │ ├── repository.phtml │ ├── save.phtml │ ├── search-location.phtml │ ├── search.phtml │ ├── server.phtml │ ├── sex.phtml │ ├── share.phtml │ ├── sidebar.phtml │ ├── sort.phtml │ ├── source.phtml │ ├── spacer.phtml │ ├── submitter.phtml │ ├── sync.phtml │ ├── tab.phtml │ ├── tag.phtml │ ├── theme.phtml │ ├── tree.phtml │ ├── undo.phtml │ ├── unlink.phtml │ ├── upload.phtml │ ├── user.phtml │ ├── warning.phtml │ ├── wizard.phtml │ ├── zoom-in.phtml │ └── zoom-out.phtml ├── individual-page-images.phtml ├── individual-page-menu.phtml ├── individual-page-name.phtml ├── individual-page-names.phtml ├── individual-page-pending.phtml ├── individual-page-sex.phtml ├── individual-page-sidebars.phtml ├── individual-page-tabs.phtml ├── individual-page-title.phtml ├── individual-page.phtml ├── layouts │ ├── administration.phtml │ ├── ajax.phtml │ ├── default.phtml │ ├── error.phtml │ ├── offline.phtml │ ├── report.phtml │ └── setup.phtml ├── lists │ ├── anniversaries-list.phtml │ ├── anniversaries-table.phtml │ ├── datatables-attributes.phtml │ ├── families-table.phtml │ ├── given-names-list.phtml │ ├── given-names-table.phtml │ ├── individual-table-parents.phtml │ ├── individuals-table.phtml │ ├── locations-table.phtml │ ├── media-table.phtml │ ├── notes-table.phtml │ ├── repositories-table.phtml │ ├── sources-table.phtml │ ├── submitters-table.phtml │ ├── surnames-bullet-list.phtml │ ├── surnames-column-list.phtml │ ├── surnames-compact-list.phtml │ ├── surnames-table.phtml │ └── surnames-tag-cloud.phtml ├── login-page.phtml ├── media-page-details.phtml ├── media-page-menu.phtml ├── media-page-pending.phtml ├── media-page.phtml ├── message-page.phtml ├── modals │ ├── add-media-file.phtml │ ├── ajax.phtml │ ├── create-location.phtml │ ├── create-media-from-file.phtml │ ├── create-media-object.phtml │ ├── create-note-object.phtml │ ├── create-repository.phtml │ ├── create-source.phtml │ ├── create-submission.phtml │ ├── create-submitter.phtml │ ├── data-fix-preview.phtml │ ├── edit-media-file.phtml │ ├── error.phtml │ ├── footer-close.phtml │ ├── footer-save-cancel.phtml │ ├── header.phtml │ ├── help.phtml │ ├── link-media-to-family.phtml │ ├── link-media-to-individual.phtml │ ├── link-media-to-source.phtml │ ├── location-fields.phtml │ ├── media-file-fields.phtml │ ├── media-object-fields.phtml │ ├── note-object-fields.phtml │ ├── on-screen-keyboard.phtml │ ├── record-created.phtml │ ├── repository-fields.phtml │ ├── restriction-fields.phtml │ ├── shares.phtml │ ├── source-fields.phtml │ ├── submission-fields.phtml │ └── submitter-fields.phtml ├── modules │ ├── GEDFact_assistant │ │ └── select-census.phtml │ ├── ancestors-chart │ │ ├── page.phtml │ │ └── tree.phtml │ ├── bing-maps │ │ └── config.phtml │ ├── bing-webmaster-tools │ │ ├── form.phtml │ │ └── snippet.phtml │ ├── block-template.phtml │ ├── branches │ │ └── list.phtml │ ├── census-assistant.phtml │ ├── charts │ │ ├── chart.phtml │ │ └── config.phtml │ ├── ckeditor │ │ └── ckeditor-js.phtml │ ├── clippings │ │ ├── add-options.phtml │ │ ├── download.phtml │ │ └── show.phtml │ ├── compact-chart │ │ ├── arrow-down.phtml │ │ ├── arrow-left.phtml │ │ ├── arrow-right.phtml │ │ ├── arrow-up.phtml │ │ ├── chart.phtml │ │ ├── individual.phtml │ │ └── page.phtml │ ├── contact-links │ │ └── footer.phtml │ ├── custom-css-js │ │ └── edit.phtml │ ├── descendancy │ │ └── sidebar.phtml │ ├── descendancy_chart │ │ ├── page.phtml │ │ └── tree.phtml │ ├── edit-block-config.phtml │ ├── family-book-chart │ │ ├── chart.phtml │ │ ├── children.phtml │ │ ├── page.phtml │ │ └── parents.phtml │ ├── family_nav │ │ ├── sidebar-family.phtml │ │ └── sidebar.phtml │ ├── fanchart │ │ ├── chart.phtml │ │ └── page.phtml │ ├── faq │ │ ├── config.phtml │ │ ├── edit.phtml │ │ └── show.phtml │ ├── favorites │ │ └── favorites.phtml │ ├── fix-add-marr-names │ │ └── options.phtml │ ├── fix-ceme-tag │ │ └── options.phtml │ ├── fix-place-names │ │ └── options.phtml │ ├── fix-search-and-replace │ │ └── options.phtml │ ├── gedcom_block │ │ └── welcome.phtml │ ├── gedcom_news │ │ ├── edit.phtml │ │ └── list.phtml │ ├── gedcom_stats │ │ ├── config.phtml │ │ └── statistics.phtml │ ├── geonames │ │ └── config.phtml │ ├── google-analytics │ │ ├── form.phtml │ │ ├── snippet-v4.phtml │ │ └── snippet.phtml │ ├── google-maps │ │ └── config.phtml │ ├── google-webmaster-tools │ │ ├── form.phtml │ │ └── snippet.phtml │ ├── here-maps │ │ └── config.phtml │ ├── hit-counter │ │ └── footer.phtml │ ├── hourglass-chart │ │ ├── chart.phtml │ │ ├── children.phtml │ │ ├── page.phtml │ │ └── parents.phtml │ ├── html │ │ ├── config.phtml │ │ ├── template-keywords.phtml │ │ ├── template-narrative.phtml │ │ └── template-statistics.phtml │ ├── individual-list │ │ └── page.phtml │ ├── interactive-tree │ │ ├── chart.phtml │ │ ├── page.phtml │ │ └── tab.phtml │ ├── lifespans-chart │ │ ├── chart.phtml │ │ └── page.phtml │ ├── lightbox │ │ └── tab.phtml │ ├── location-list │ │ └── page.phtml │ ├── login_block │ │ ├── sign-in.phtml │ │ └── sign-out.phtml │ ├── map-box │ │ └── config.phtml │ ├── matomo-analytics │ │ ├── form.phtml │ │ └── snippet.phtml │ ├── media-list │ │ ├── page.phtml │ │ └── pagination.phtml │ ├── media │ │ └── tab.phtml │ ├── note-list │ │ └── page.phtml │ ├── notes │ │ └── tab.phtml │ ├── openrouteservice │ │ └── config.phtml │ ├── pedigree-chart │ │ ├── chart-down.phtml │ │ ├── chart-left.phtml │ │ ├── chart-right.phtml │ │ ├── chart-up.phtml │ │ ├── chart.phtml │ │ ├── page.phtml │ │ └── previous.phtml │ ├── pedigree-map │ │ ├── chart.phtml │ │ ├── events.phtml │ │ └── page.phtml │ ├── personal_facts │ │ └── tab.phtml │ ├── place-hierarchy │ │ ├── events.phtml │ │ ├── list.phtml │ │ ├── map.phtml │ │ ├── page.phtml │ │ ├── popup.phtml │ │ └── sidebar.phtml │ ├── places │ │ ├── event-sidebar.phtml │ │ └── tab.phtml │ ├── powered-by-webtrees │ │ └── footer.phtml │ ├── privacy-policy │ │ ├── footer.phtml │ │ └── page.phtml │ ├── random_media │ │ ├── config.phtml │ │ └── slide-show.phtml │ ├── recent_changes │ │ ├── changes-list.phtml │ │ ├── changes-table.phtml │ │ └── config.phtml │ ├── relationships-chart │ │ ├── config.phtml │ │ └── page.phtml │ ├── relatives │ │ ├── family.phtml │ │ └── tab.phtml │ ├── repository-list │ │ └── page.phtml │ ├── review_changes │ │ └── config.phtml │ ├── share-anniversary │ │ └── share.phtml │ ├── share-url │ │ └── share.phtml │ ├── sitemap │ │ ├── config.phtml │ │ ├── sitemap-file-xml.phtml │ │ ├── sitemap-index-xml.phtml │ │ └── sitemap-xsl.phtml │ ├── source-list │ │ └── page.phtml │ ├── sources_tab │ │ └── tab.phtml │ ├── statcounter │ │ ├── form.phtml │ │ └── snippet.phtml │ ├── statistics-chart │ │ ├── age-difference.phtml │ │ ├── birth-age.phtml │ │ ├── chart-distribution.phtml │ │ ├── chart-objects.phtml │ │ ├── chart-sources.phtml │ │ ├── children.phtml │ │ ├── custom.phtml │ │ ├── families.phtml │ │ ├── family-totals.phtml │ │ ├── greatest-age.phtml │ │ ├── individual-events.phtml │ │ ├── individuals.phtml │ │ ├── lifespan.phtml │ │ ├── marriage-age.phtml │ │ ├── marriage-length.phtml │ │ ├── names.phtml │ │ ├── oldest-living.phtml │ │ ├── other-events.phtml │ │ ├── other-records.phtml │ │ ├── other.phtml │ │ ├── page.phtml │ │ ├── places.phtml │ │ └── total-individuals.phtml │ ├── stories │ │ ├── config.phtml │ │ ├── edit.phtml │ │ ├── list.phtml │ │ └── tab.phtml │ ├── submitter-list │ │ └── page.phtml │ ├── timeline-chart │ │ ├── chart.phtml │ │ └── page.phtml │ ├── todays_events │ │ ├── config.phtml │ │ └── empty.phtml │ ├── todo │ │ ├── config.phtml │ │ └── research-tasks.phtml │ ├── top10_givnnames │ │ ├── block.phtml │ │ └── config.phtml │ ├── top10_pageviews │ │ ├── config.phtml │ │ └── list.phtml │ ├── top10_surnames │ │ └── config.phtml │ ├── upcoming_events │ │ ├── config.phtml │ │ └── empty.phtml │ ├── user-messages │ │ └── user-messages.phtml │ ├── user_blog │ │ ├── edit.phtml │ │ └── list.phtml │ ├── user_welcome │ │ └── welcome.phtml │ └── yahrzeit │ │ ├── config.phtml │ │ ├── list.phtml │ │ └── table.phtml ├── note-page-details.phtml ├── note-page-pending.phtml ├── note-page.phtml ├── password-request-page.phtml ├── password-reset-page.phtml ├── pending-changes-page.phtml ├── place-hierarchy.phtml ├── record-page-details.phtml ├── record-page-links.phtml ├── record-page-menu-clipboard.phtml ├── record-page-menu-facts.phtml ├── record-page-menu.phtml ├── record-page-pending.phtml ├── record-page.phtml ├── register-page.phtml ├── register-success-page.phtml ├── report-page.phtml ├── report-select-page.phtml ├── report-setup-page.phtml ├── robots-txt.phtml ├── search-advanced-field.phtml ├── search-advanced-page.phtml ├── search-general-page.phtml ├── search-phonetic-page.phtml ├── search-replace-page.phtml ├── search-results.phtml ├── search-trees.phtml ├── selects │ ├── family.phtml │ ├── individual.phtml │ ├── location.phtml │ ├── media.phtml │ ├── note.phtml │ ├── place.phtml │ ├── repository.phtml │ ├── shared-note.phtml │ ├── source.phtml │ ├── submission.phtml │ └── submitter.phtml ├── setup │ ├── config.ini.phtml │ ├── step-1-language.phtml │ ├── step-2-server-checks.phtml │ ├── step-3-database-type.phtml │ ├── step-4-database-mysql.phtml │ ├── step-4-database-pgsql.phtml │ ├── step-4-database-sqlite.phtml │ ├── step-4-database-sqlsrv.phtml │ ├── step-5-administrator.phtml │ └── step-6-failed.phtml ├── statistics │ ├── families │ │ ├── top10-list-age.phtml │ │ ├── top10-list-grand.phtml │ │ ├── top10-list-spouses.phtml │ │ ├── top10-list.phtml │ │ ├── top10-nolist-age.phtml │ │ ├── top10-nolist-grand.phtml │ │ ├── top10-nolist-spouses.phtml │ │ └── top10-nolist.phtml │ ├── hit-count.phtml │ ├── individuals │ │ ├── top10-list.phtml │ │ └── top10-nolist.phtml │ └── other │ │ ├── charts │ │ ├── column.phtml │ │ ├── combo.phtml │ │ ├── custom.phtml │ │ ├── geo.phtml │ │ └── pie.phtml │ │ └── top10-list.phtml ├── tree-page-block.phtml ├── tree-page.phtml ├── user-page-block.phtml ├── user-page.phtml ├── verify-failure-page.phtml ├── verify-success-page.phtml └── webmanifest-json.phtml └── xml └── reports ├── ahnentafel_report.xml ├── bdm_report.xml ├── birth_report.xml ├── cemetery_report.xml ├── change_report.xml ├── death_report.xml ├── descendancy_report.xml ├── fact_sources.xml ├── family_group_report.xml ├── individual_ext_report.xml ├── individual_report.xml ├── marriage_report.xml ├── missing_facts_report.xml ├── occupation_report.xml ├── pedigree_report.xml └── relative_ext_report.xml /app/Census/CensusColumnSexMK.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Census; 21 | 22 | /** 23 | * The individual's sex. 24 | */ 25 | class CensusColumnSexMK extends CensusColumnSexMF 26 | { 27 | protected const string FEMALE = 'K'; 28 | } 29 | -------------------------------------------------------------------------------- /app/Census/CensusColumnSexMZ.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Census; 21 | 22 | /** 23 | * The individual's sex. 24 | */ 25 | class CensusColumnSexMZ extends CensusColumnSexMF 26 | { 27 | protected const string FEMALE = 'Ž'; 28 | } 29 | -------------------------------------------------------------------------------- /app/Elements/Creation.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Elements; 21 | 22 | /** 23 | * Record creation time 24 | */ 25 | class Creation extends EmptyElement 26 | { 27 | protected const array SUBTAGS = [ 28 | 'DATE' => '1:1', 29 | ]; 30 | } 31 | -------------------------------------------------------------------------------- /app/Elements/CustomElement.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Elements; 21 | 22 | /** 23 | * A custom GEDCOM element. 24 | */ 25 | class CustomElement extends AbstractElement 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /app/Elements/ExternalIdentifier.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Elements; 21 | 22 | /** 23 | * EXID fields 24 | */ 25 | class ExternalIdentifier extends AbstractElement 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /app/Elements/ExternalIdentifierType.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Elements; 21 | 22 | /** 23 | * EXID:TYPE fields 24 | */ 25 | class ExternalIdentifierType extends AbstractElement 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /app/Elements/GedcomElement.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Elements; 21 | 22 | /** 23 | * HEAD:GEDC is an empty element with children; VERS and FORM. 24 | */ 25 | class GedcomElement extends EmptyElement 26 | { 27 | } 28 | -------------------------------------------------------------------------------- /app/Schema/MigrationInterface.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees\Schema; 21 | 22 | /** 23 | * Upgrade the database schema. 24 | */ 25 | interface MigrationInterface 26 | { 27 | public function upgrade(): void; 28 | } 29 | -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/apple-touch-icon.png -------------------------------------------------------------------------------- /data/.htaccess: -------------------------------------------------------------------------------- 1 | order allow,deny 2 | deny from all 3 | -------------------------------------------------------------------------------- /data/index.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | header('Location: ../index.php'); 21 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees; 21 | 22 | require __DIR__ . '/vendor/autoload.php'; 23 | 24 | return Webtrees::new()->run(PHP_SAPI); 25 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/colordialog/dialogs/colordialog.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | .cke_colordialog_colorcell { 7 | width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ 8 | height: 14px; 9 | padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ 10 | } 11 | 12 | .cke_colordialog_colorcell.cke_colordialog_focused_light, 13 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 14 | padding: 0; /* Shrink cell to allow 1px border indicating focus. */ 15 | border: 1px dotted #000; 16 | } 17 | 18 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 19 | border-color: #FFF; 20 | } 21 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/dialog/styles/dialog.css: -------------------------------------------------------------------------------- 1 | .cke_dialog_open { 2 | overflow: hidden; 3 | } 4 | 5 | .cke_dialog_container { 6 | position: fixed; 7 | overflow-y: auto; 8 | overflow-x: auto; 9 | width: 100%; 10 | height: 100%; 11 | top: 0; 12 | left: 0; 13 | z-index: 10010; 14 | } 15 | 16 | .cke_dialog_body { 17 | position: relative; 18 | } 19 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/icons.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/preview/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/preview/images/pagebreak.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/preview/styles/screen.css: -------------------------------------------------------------------------------- 1 | div[style*="page-break-after"] { 2 | background:url( ../images/pagebreak.gif ) no-repeat center center; 3 | clear:both; 4 | width:100%; 5 | border-top:#999 1px dotted; 6 | border-bottom:#999 1px dotted; 7 | padding:0; 8 | height:7px; 9 | cursor:default; 10 | } 11 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | SCAYT plugin for CKEditor 4 Changelog 2 | ==================== 3 | 4 | The full changelog of the SCAYT plugin for CKEditor 4 can be found on our website under the [release notes](https://webspellchecker.com/release-notes/) section. 5 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- 1 | div.cke_dialog_ui_scaytItemList { 2 | border: 1px solid #c9cccf; 3 | } 4 | 5 | .cke_scaytItemList-child { 6 | position: relative; 7 | padding: 6px 30px 6px 5px; 8 | overflow: hidden; 9 | text-overflow: ellipsis; 10 | white-space: nowrap; 11 | } 12 | 13 | .cke_scaytItemList-child:hover { 14 | background: #ebebeb; 15 | } 16 | 17 | .cke_scaytItemList-child .cke_scaytItemList_remove { 18 | position: absolute; 19 | top: 0; 20 | right: 5px; 21 | width: 26px; 22 | height: 26px; 23 | } 24 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/scayt/skins/moono-lisa/scayt.css: -------------------------------------------------------------------------------- 1 | .scayt-lang-list > div 2 | { 3 | padding-bottom: 6px !important; 4 | } 5 | 6 | .scayt-lang-list > div input 7 | { 8 | margin-right: 4px; 9 | } 10 | 11 | #scayt_about_ 12 | { 13 | margin: 30px auto 0 auto; 14 | } 15 | 16 | #scayt_about_ p 17 | { 18 | text-align: center; 19 | margin-bottom: 10px; 20 | } 21 | 22 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button 23 | { 24 | margin-top: 0; 25 | } 26 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/icons.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/anchor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/ckeditor-4.15.1-custom/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/ckeditor-4.15.1-custom/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /public/css/colors/aquamarine.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#007e94;--color-2:#085360;--color-3:#00a9c7;--color-4:#dcf2f9;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/ash.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#5d6779;--color-2:#2a2b2d;--color-3:#9da5b4;--color-4:#ededee;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/belgianchocolate.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#971702;--color-2:#311900;--color-3:#af2604;--color-4:#f6edd5;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/bluelagoon.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#5ab5ee;--color-2:#2385c2;--color-3:#5ab5ee;--color-4:#e6f5ff;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/bluemarine.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#6598cb;--color-2:#98badd;--color-3:#6598cb;--color-4:#e0e7ff;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/coffeeandcream.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#d4c7a7;--color-2:#93724f;--color-3:#93724f;--color-4:#f4ead1;--color-5:#553e2f;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/coldday.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#1a1575;--color-2:#4d91ff;--color-3:#5997e3;--color-4:#e6e1ff;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/greenbeam.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#03961e;--color-2:#7be000;--color-3:#04af23;--color-4:#e6ffc7;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/mediterranio.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#a30f42;--color-2:#fc6d1d;--color-3:#d23014;--color-4:#fef9dc;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/mercury.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#d4d4d4;--color-2:#a9adbc;--color-3:#c6c8d2;--color-4:#f0f2f5;--color-5:#707070;--color-6:#707070} 2 | -------------------------------------------------------------------------------- /public/css/colors/nocturnal.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#0a2352;--color-2:#9fa8d5;--color-3:#6a78be;--color-4:#e0e1f0;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/olivia.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#7db323;--color-2:#b5d52a;--color-3:#7db323;--color-4:#eef9dc;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/pinkplastic.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#f41063;--color-2:#f391c6;--color-3:#f75993;--color-4:#fbdaed;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/sage.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#767647;--color-2:#cca;--color-3:#cca;--color-4:#eed;--color-5:#fff;--color-6:#333} 2 | -------------------------------------------------------------------------------- /public/css/colors/shinytomato.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#f21107;--color-2:#a1443a;--color-3:#f96058;--color-4:#f0eaf0;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/colors/tealtop.min.css: -------------------------------------------------------------------------------- 1 | :root{--color-1:#34775a;--color-2:#52bf90;--color-3:#51b389;--color-4:#d2f4e6;--color-5:#fff;--color-6:#fff} 2 | -------------------------------------------------------------------------------- /public/css/images/dline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/dline.png -------------------------------------------------------------------------------- /public/css/images/dline2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/dline2.png -------------------------------------------------------------------------------- /public/css/images/geocoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/geocoder.png -------------------------------------------------------------------------------- /public/css/images/hline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/hline.png -------------------------------------------------------------------------------- /public/css/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/layers-2x.png -------------------------------------------------------------------------------- /public/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/layers.png -------------------------------------------------------------------------------- /public/css/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/marker-icon-2x.png -------------------------------------------------------------------------------- /public/css/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/marker-icon.png -------------------------------------------------------------------------------- /public/css/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/marker-shadow.png -------------------------------------------------------------------------------- /public/css/images/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/spacer.png -------------------------------------------------------------------------------- /public/css/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/throbber.gif -------------------------------------------------------------------------------- /public/css/images/vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/css/images/vline.png -------------------------------------------------------------------------------- /public/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-128.png -------------------------------------------------------------------------------- /public/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-152.png -------------------------------------------------------------------------------- /public/favicon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-167.png -------------------------------------------------------------------------------- /public/favicon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-180.png -------------------------------------------------------------------------------- /public/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-192.png -------------------------------------------------------------------------------- /public/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon-32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | . 16 | */ 17 | 18 | declare(strict_types=1); 19 | 20 | namespace Fisharebest\Webtrees; 21 | 22 | require __DIR__ . '/../index.php'; 23 | -------------------------------------------------------------------------------- /resources/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/resources/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /resources/img/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/resources/img/watermark.png -------------------------------------------------------------------------------- /resources/img/webtrees-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fisharebest/webtrees/50b7cb7ed5d76f8c173836b5b887dabf1a186cfc/resources/img/webtrees-icon.png -------------------------------------------------------------------------------- /resources/lang/en-US/messages.php: -------------------------------------------------------------------------------- 1 | ' but the details are unknown', 5 | '%H:%i:%s' => '%g:%i:%s %a', 6 | '%j %F %Y' => '%F %j, %Y', 7 | 'Asunción, Paraguay' => 'Asuncion, Paraguay', 8 | 'Bogotá, Colombia' => 'Bogota, Colombia', 9 | 'Ciudad Juárez, Mexico' => 'Ciudad Juarez, Mexico', 10 | 'Colonia Juárez, Mexico' => 'Colonia Juarez, Mexico', 11 | 'Curaçao' => 'Curacao', 12 | 'Córdoba, Argentina' => 'Cordoba, Argentina', 13 | 'Côte d’Ivoire' => 'Cote d’Ivoire', 14 | 'Réunion' => 'Reunion', 15 | 'Saint Barthélemy' => 'Saint Barthelemy', 16 | 'San José, Costa Rica' => 'San Jose, Costa Rica', 17 | 'São Paulo, Brazil' => 'Sao Paulo, Brazil', 18 | 'Tuxtla Gutiérrez, Mexico' => 'Tuxtla Gutierrez, Mexico', 19 | 'Åland Islands' => 'Aland Islands', 20 | ); 21 | -------------------------------------------------------------------------------- /resources/views/admin/custom-module-info.phtml: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 | 14 | 15 | customModuleVersion() !== '') : ?> 16 |
17 | 18 | customModuleVersion() ?> 19 | 20 | customModuleAuthorName() !== '') : ?> 21 |
22 | 23 | customModuleAuthorName() ?> 24 | 25 | customModuleSupportUrl() !== '') : ?> 26 |
27 | 28 | 29 | customModuleSupportUrl()) ?> 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /resources/views/admin/external-module-info.phtml: -------------------------------------------------------------------------------- 1 | 12 |
13 | 14 | externalUrl()) ?> 15 | 16 |
17 | -------------------------------------------------------------------------------- /resources/views/admin/fix-level-0-media-action.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 30 | -------------------------------------------------------------------------------- /resources/views/admin/import-complete.phtml: -------------------------------------------------------------------------------- 1 | 12 | 16 | -------------------------------------------------------------------------------- /resources/views/admin/import-fail.phtml: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 |
16 | 17 | 20 | -------------------------------------------------------------------------------- /resources/views/admin/server-information.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 | [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?> 16 | 17 |

18 | 19 |

20 | 21 |

22 | 23 |
24 | 25 |
26 | -------------------------------------------------------------------------------- /resources/views/browserconfig-xml.phtml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | 3 | 4 | 5 | 6 | #ffffff 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /resources/views/captcha.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 18 | -------------------------------------------------------------------------------- /resources/views/components/alert-danger.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/components/alert-success.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/components/alert-warning-dismissible.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 19 | -------------------------------------------------------------------------------- /resources/views/components/badge.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | $count) : ?> 20 | / 21 | 22 | 23 | -------------------------------------------------------------------------------- /resources/views/components/breadcrumbs.phtml: -------------------------------------------------------------------------------- 1 | $links 7 | */ 8 | 9 | ?> 10 | 27 | -------------------------------------------------------------------------------- /resources/views/components/checkbox-inline.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 | 22 | 23 | /> 24 | 27 |
28 | -------------------------------------------------------------------------------- /resources/views/components/checkbox.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 | 22 | 23 | /> 24 | 27 |
28 | -------------------------------------------------------------------------------- /resources/views/components/datetime-diff.phtml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | diffForHumans()) ?> 14 | 15 | -------------------------------------------------------------------------------- /resources/views/components/datetime.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | timestamp() === 0) : ?> 14 | 15 | 16 | 17 | 18 | 19 | isoFormat('LLLL')) ?> 20 | 21 | 22 | -------------------------------------------------------------------------------- /resources/views/components/progress.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 | 16 |
17 |
18 | -------------------------------------------------------------------------------- /resources/views/components/radio-inline.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 | 22 | 23 | required="required" 24 | /> 25 | 28 |
29 | -------------------------------------------------------------------------------- /resources/views/components/radio.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 | 22 | 23 | required="required" 24 | /> 25 | 28 |
29 | -------------------------------------------------------------------------------- /resources/views/components/radios-inline.phtml: -------------------------------------------------------------------------------- 1 | $options 9 | */ 10 | 11 | ?> 12 | 13 | $label) : ?> 14 | $label, 'name' => $name, 'value' => (string) $value, 'checked' => $value === $selected]) ?> 15 | $options 9 | */ 10 | 11 | ?> 12 | 13 | $label) : ?> 14 | $label, 'name' => $name, 'value' => (string) $value, 'checked' => $value === $selected]) ?> 15 | $options 13 | */ 14 | 15 | ?> 16 | 17 | 28 | -------------------------------------------------------------------------------- /resources/views/components/select.phtml: -------------------------------------------------------------------------------- 1 | $options 11 | * @var string|null $aria_label 12 | */ 13 | 14 | ?> 15 | 16 | 30 | -------------------------------------------------------------------------------- /resources/views/edit/icon-fact-copy.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /resources/views/edit/icon-fact-edit.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /resources/views/edit/input-addon-calendar.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/views/edit/input-addon-coordinates.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/views/edit/input-addon-help.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 | $topic]) ?> 12 | 13 | -------------------------------------------------------------------------------- /resources/views/edit/input-addon-keyboard.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/views/edit/language-checkboxes.phtml: -------------------------------------------------------------------------------- 1 | $languages - Currently selected languages 9 | */ 10 | 11 | ?> 12 |
13 | 14 |
15 | 19 |
20 | 21 |
22 | -------------------------------------------------------------------------------- /resources/views/emails/approve-user-html.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |

18 | ' . e($user->realName()) . '') ?> 19 |

20 | 21 |

22 | 23 |

24 |
25 | -------------------------------------------------------------------------------- /resources/views/emails/approve-user-text.phtml: -------------------------------------------------------------------------------- 1 | 14 | realName()) ?> 15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/views/emails/message-copy-html.phtml: -------------------------------------------------------------------------------- 1 | 16 |
17 |

18 | ' . e($sender->realName()) . '') ?> 19 |

20 | 21 |

22 | realName()) ?> 23 |

24 | 25 |
26 | 27 |

28 | 29 |

30 | 31 |
32 | 33 | 34 |

35 | 36 | 37 |

38 | 39 |
40 | -------------------------------------------------------------------------------- /resources/views/emails/message-copy-text.phtml: -------------------------------------------------------------------------------- 1 | 16 | realName()) ?> 17 | 18 | realName() ?> 19 | 20 | ------------------------------------------------------------ 21 | 22 | ------------------------------------------------------------ 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /resources/views/emails/message-user-text.phtml: -------------------------------------------------------------------------------- 1 | 16 | realName()) ?> 17 | 18 | realName(), $sender->email())) ?> 19 | 20 | ------------------------------------------------------------ 21 | 22 | 23 | ------------------------------------------------------------ 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/views/emails/new-version-html.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |

18 | ' . e($recipient->realName()) . '') ?> 19 |

20 | 21 |

22 | 23 |

24 | 25 |

26 | webtrees.net') ?> 27 |

28 | 29 |

30 | 31 |

32 |
33 | -------------------------------------------------------------------------------- /resources/views/emails/new-version-text.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 | ?> 17 | realName()) ?> 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /resources/views/emails/password-request-html.phtml: -------------------------------------------------------------------------------- 1 | 14 |
15 |

16 | ' . e($user->realName()) . '') ?> 17 |

18 | 19 |

20 | 21 |

22 | 23 |

24 | 25 |

26 | 27 |

28 | 29 |

30 |
31 | -------------------------------------------------------------------------------- /resources/views/emails/password-request-text.phtml: -------------------------------------------------------------------------------- 1 | 14 | realName())) ?> 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/views/emails/pending-changes-html.phtml: -------------------------------------------------------------------------------- 1 | 16 |
17 |

18 | ' . e($user->realName()) . '') ?> 19 |

20 | 21 |

22 | 23 |

24 | 25 | 32 |
33 | -------------------------------------------------------------------------------- /resources/views/emails/pending-changes-text.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 | realName()) ?> 18 | 19 | 20 | 21 | title() ?> - $tree->name()]) ?> 22 | -------------------------------------------------------------------------------- /resources/views/emails/register-user-text.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 | realName()) ?> 17 | 18 | email()) ?> 19 | 20 | 21 | 22 | 23 | 24 | 14 | 15 | 16 | realName()), 19 | e($user->userName()), 20 | e($user->email()) 21 | ) ?> 22 | 23 | 24 | 25 | $user->id()]) ?> 26 | 27 | 28 | 29 | 12 | 13 |

14 | 15 |

16 | 17 |
18 |     
19 | 
20 | 21 |

22 | 23 |

24 | -------------------------------------------------------------------------------- /resources/views/errors/image-svg.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/views/errors/no-tree-access.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 11 |
12 | -------------------------------------------------------------------------------- /resources/views/errors/unhandled-exception.phtml: -------------------------------------------------------------------------------- 1 | 10 |
11 | -------------------------------------------------------------------------------- /resources/views/expand-chart-box.phtml: -------------------------------------------------------------------------------- 1 | $facts 10 | */ 11 | 12 | ?> 13 | 14 | summary() ?> 15 | 12 | 13 |
14 | $fact]) ?> 15 |
-------------------------------------------------------------------------------- /resources/views/fact-edit-links.phtml: -------------------------------------------------------------------------------- 1 | 13 | canEdit()) : ?> 14 | 19 | 20 | -------------------------------------------------------------------------------- /resources/views/fact-media.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | gedcom(), $matches, PREG_SET_ORDER) > 0) : ?> 14 |
15 | 16 | $match[1], 'parent' => $fact->tag(), 'tree' => $fact->record()->tree()]) ?> 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /resources/views/fact-notes.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | gedcom(), $matches, PREG_SET_ORDER) > 0) : ?> 14 |
15 | 16 | $match[1], 'parent' => $fact->tag(), 'tree' => $fact->record()->tree()]) ?> 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /resources/views/fact-sources.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | gedcom(), $matches, PREG_SET_ORDER) > 0) : ?> 14 |
15 | 16 | $match[1], 'parent' => $fact->tag(), 'tree' => $fact->record()->tree()]) ?> 17 | 18 |
19 | 20 | -------------------------------------------------------------------------------- /resources/views/help/data-fixes.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |

14 | 15 |

16 | 17 |

18 | 19 |

20 | -------------------------------------------------------------------------------- /resources/views/help/hebrew.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 |
If you prefer to use the Latin alphabet to enter the name in the standard name fields, then you can use this field to enter the same name in the non-Latin alphabet such as Greek, Hebrew, Russian, Arabic, or Chinese. Both versions of the name will appear in lists and charts.

Although this field is labeled “Hebrew”, it is not restricted to containing only Hebrew characters.') ?> 11 |

12 | -------------------------------------------------------------------------------- /resources/views/help/link.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/views/help/media-object.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | -------------------------------------------------------------------------------- /resources/views/help/place.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |

14 | 15 |

16 | -------------------------------------------------------------------------------- /resources/views/help/relationship-privacy.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |

14 | 15 |

16 | 17 |

18 | 19 |

20 | -------------------------------------------------------------------------------- /resources/views/help/restriction.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 |

13 | 14 |

15 | -------------------------------------------------------------------------------- /resources/views/help/romanized.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 |
If you prefer to use a non-Latin alphabet such as Hebrew, Greek, Russian, Chinese, or Arabic to enter the name in the standard name fields, then you can use this field to enter the same name using the Latin alphabet. Both versions of the name will appear in lists and charts.

Although this field is labeled “Romanized”, it is not restricted to containing only characters based on the Latin alphabet. This might be of use with Japanese names, where three different alphabets may occur.') ?> 11 |

12 | -------------------------------------------------------------------------------- /resources/views/help/source-events.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 |
Select the events that are recorded by this source from the list of events provided. The date should be specified in a range format such as FROM 1900 TO 1910. The place jurisdiction is the name of the lowest jurisdiction that encompasses all lower-level places named in this source. For example, “Oneida, Idaho, USA” would be used as a source jurisdiction place for events occurring in the various towns within Oneida County. “Idaho, USA” would be the source jurisdiction place if the events recorded took place not only in Oneida County but also in other counties in Idaho.') ?> 11 |

12 | -------------------------------------------------------------------------------- /resources/views/help/surname.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | surname field contains a name that is used for sorting and grouping. It can be different to the individual’s actual surname which is always taken from the name field. This field can be used to sort surnames with or without a prefix (Gogh / van Gogh) and to group spelling variations or inflections (Kowalski / Kowalska). If an individual needs to be listed under more than one surname, each name should be separated by a comma.') ?> 11 |

12 | -------------------------------------------------------------------------------- /resources/views/icons/account.phtml: -------------------------------------------------------------------------------- 1 | 10 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /resources/views/icons/share.phtml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 | facts(['NAME']) as $fact) : ?> 15 | $fact]) ?> 16 | 17 | 18 | facts(['SEX']) as $fact) : ?> 19 | $fact]) ?> 20 | 21 |
22 | -------------------------------------------------------------------------------- /resources/views/individual-page-title.phtml: -------------------------------------------------------------------------------- 1 | $users 15 | */ 16 | ?> 17 | 18 | getBirthDate()->isOK() || $record->getDeathDate()->isOK()) : ?> 19 | fullName() ?>, lifespan() ?> 20 | 21 | fullName() ?> 22 | 23 | 24 | 25 | 26 | — 27 | userName()) ?> 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /resources/views/layouts/ajax.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | <?= $title ?> 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /resources/views/lists/given-names-list.phtml: -------------------------------------------------------------------------------- 1 | $given_names 9 | * @var bool $show_totals 10 | */ 11 | 12 | ?> 13 | 14 | 24 | -------------------------------------------------------------------------------- /resources/views/lists/individual-table-parents.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 | childFamilies() as $family) : ?> 15 | 28 | 29 | -------------------------------------------------------------------------------- /resources/views/modals/create-location.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | I18N::translate('Create a location')]) ?> 17 | 18 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 30 | -------------------------------------------------------------------------------- /resources/views/modals/create-note-object.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | I18N::translate('Create a shared note')]) ?> 17 | 18 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 30 | -------------------------------------------------------------------------------- /resources/views/modals/create-repository.phtml: -------------------------------------------------------------------------------- 1 | $elements 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 | 17 |
18 | I18N::translate('Create a repository')]) ?> 19 | 20 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 32 | -------------------------------------------------------------------------------- /resources/views/modals/create-source.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | I18N::translate('Create a source')]) ?> 17 | 18 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 30 | -------------------------------------------------------------------------------- /resources/views/modals/create-submission.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | I18N::translate('Create a submission')]) ?> 17 | 18 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 30 | -------------------------------------------------------------------------------- /resources/views/modals/create-submitter.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 | I18N::translate('Create a submitter')]) ?> 17 | 18 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 30 | -------------------------------------------------------------------------------- /resources/views/modals/data-fix-preview.phtml: -------------------------------------------------------------------------------- 1 | 11 | $title]) ?> 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /resources/views/modals/error.phtml: -------------------------------------------------------------------------------- 1 | 11 | $title]) ?> 12 | 13 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /resources/views/modals/footer-close.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 15 | -------------------------------------------------------------------------------- /resources/views/modals/footer-save-cancel.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 19 | -------------------------------------------------------------------------------- /resources/views/modals/header.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 20 | -------------------------------------------------------------------------------- /resources/views/modals/help.phtml: -------------------------------------------------------------------------------- 1 | 11 | $title]) ?> 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /resources/views/modals/link-media-to-family.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 | I18N::translate('Link this media object to a family')]) ?> 19 | 20 | 28 | 29 | 30 | 31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /resources/views/modals/link-media-to-individual.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 | I18N::translate('Link this media object to an individual')]) ?> 19 | 20 | 28 | 29 | 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /resources/views/modals/link-media-to-source.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 | I18N::translate('Link this media object to a source')]) ?> 19 | 20 | 28 | 29 | 30 | 31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /resources/views/modals/location-fields.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/views/modals/media-object-fields.phtml: -------------------------------------------------------------------------------- 1 | $media_types 11 | * @var Tree $tree 12 | * @var array $unused_files 13 | */ 14 | 15 | ?> 16 | 17 | $max_upload_size, 'media_file' => null, 'media_types' => $media_types, 'tree' => $tree, 'unused_files' => $unused_files]) ?> 18 | 19 |
20 | 23 |
24 | 25 |
26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/views/modals/note-object-fields.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/views/modals/record-created.phtml: -------------------------------------------------------------------------------- 1 | 12 | $title]) ?> 13 | 14 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /resources/views/modals/repository-fields.phtml: -------------------------------------------------------------------------------- 1 | $elements 10 | * @var Tree $tree 11 | */ 12 | ?> 13 | 14 | $element) : ?> 15 |
16 | 19 | edit($id, $id, '', $tree) ?> 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /resources/views/modals/restriction-fields.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 13 |
14 | 29 |
30 |
31 | -------------------------------------------------------------------------------- /resources/views/modals/shares.phtml: -------------------------------------------------------------------------------- 1 | $shares 9 | * @var string $title 10 | */ 11 | 12 | ?> 13 | 32 | -------------------------------------------------------------------------------- /resources/views/modals/submission-fields.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 18 |
19 | 'submitter', 'tree' => $tree, 'required' => true]) ?> 20 |
21 |
22 | -------------------------------------------------------------------------------- /resources/views/modules/bing-webmaster-tools/form.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | 17 | 18 |
19 | 20 |
21 |
22 | 23 |

24 | 25 |

26 | -------------------------------------------------------------------------------- /resources/views/modules/bing-webmaster-tools/snippet.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /resources/views/modules/block-template.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | 29 |
30 |
31 | -------------------------------------------------------------------------------- /resources/views/modules/branches/list.phtml: -------------------------------------------------------------------------------- 1 | 10 |
    11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/modules/charts/chart.phtml: -------------------------------------------------------------------------------- 1 | 11 |
12 | 13 | 16 | -------------------------------------------------------------------------------- /resources/views/modules/compact-chart/arrow-down.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 12 | 13 | $individual]) ?> 14 | 15 |
 
16 | 17 | -------------------------------------------------------------------------------- /resources/views/modules/contact-links/footer.phtml: -------------------------------------------------------------------------------- 1 | 10 | 13 | -------------------------------------------------------------------------------- /resources/views/modules/fix-add-marr-names/options.phtml: -------------------------------------------------------------------------------- 1 | $options 9 | * @var string $selected 10 | */ 11 | 12 | ?> 13 | 14 |
15 | 18 | 19 |
20 | 'surname', 'options' => $options, 'selected' => $selected]) ?> 21 |
22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/fix-ceme-tag/options.phtml: -------------------------------------------------------------------------------- 1 | $options 9 | * @var string $selected 10 | */ 11 | 12 | ?> 13 | 14 |
15 | 18 | 19 |
20 | 'convert', 'options' => $options, 'selected' => $selected]) ?> 21 |
22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/fix-place-names/options.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 13 | 14 |
15 | 16 |
17 |
18 | 19 |
20 | 23 | 24 |
25 | 26 |
27 |
28 | -------------------------------------------------------------------------------- /resources/views/modules/gedcom_block/welcome.phtml: -------------------------------------------------------------------------------- 1 | > $links 7 | */ 8 | 9 | ?> 10 |
11 | 12 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /resources/views/modules/google-analytics/form.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | 18 |
19 | 20 |
21 |
22 | -------------------------------------------------------------------------------- /resources/views/modules/google-analytics/snippet-v4.phtml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 22 | -------------------------------------------------------------------------------- /resources/views/modules/google-analytics/snippet.phtml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 18 | -------------------------------------------------------------------------------- /resources/views/modules/google-webmaster-tools/form.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | 18 |
19 | 20 |
21 |
22 | 23 |

24 | 25 |

26 | -------------------------------------------------------------------------------- /resources/views/modules/google-webmaster-tools/snippet.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /resources/views/modules/hit-counter/footer.phtml: -------------------------------------------------------------------------------- 1 | 10 | 13 | -------------------------------------------------------------------------------- /resources/views/modules/html/template-keywords.phtml: -------------------------------------------------------------------------------- 1 | #getAllTagsTable# 2 | -------------------------------------------------------------------------------- /resources/views/modules/html/template-narrative.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |
If you have any comments or feedback please contact #contactWebmaster#.'); 10 | 11 | -------------------------------------------------------------------------------- /resources/views/modules/individual-list/page.phtml: -------------------------------------------------------------------------------- 1 | 11 |

12 | 13 |

14 | 15 |
16 | 17 |
18 | -------------------------------------------------------------------------------- /resources/views/modules/interactive-tree/tab.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 |
17 | 18 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /resources/views/modules/lightbox/tab.phtml: -------------------------------------------------------------------------------- 1 | $media_list 10 | */ 11 | 12 | ?> 13 |
14 | 15 |
16 | mediaFiles() as $media_file) : ?> 17 | displayImage(100, 100, 'contain', ['class' => 'img-thumbnail wt-album-tab-image']) ?> 18 | 19 |
20 | 21 | fullName() ?> 22 | 23 |
24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /resources/views/modules/location-list/page.phtml: -------------------------------------------------------------------------------- 1 | $locations 11 | * @var string $title 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 |

17 | 18 |

19 | 20 |
21 | $locations, 'tree' => $tree]) ?> 22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/login_block/sign-out.phtml: -------------------------------------------------------------------------------- 1 | 15 | 16 |

17 | userName())) ?> 18 |

19 | 20 |

21 | 22 | 23 | 24 |

25 | -------------------------------------------------------------------------------- /resources/views/modules/matomo-analytics/form.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 18 |
19 | 20 |
21 |
22 | 23 |
24 | 27 |
28 | 29 |
30 |
31 | -------------------------------------------------------------------------------- /resources/views/modules/matomo-analytics/snippet.phtml: -------------------------------------------------------------------------------- 1 | 11 | 23 | -------------------------------------------------------------------------------- /resources/views/modules/note-list/page.phtml: -------------------------------------------------------------------------------- 1 | $notes 11 | * @var string $title 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 |

17 | 18 |

19 | 20 |
21 | $notes, 'tree' => $tree]) ?> 22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/pedigree-chart/chart.phtml: -------------------------------------------------------------------------------- 1 | $ancestors 10 | * @var int $generations 11 | * @var Collection $links 12 | * @var string $spacer 13 | * @var string $style 14 | */ 15 | ?> 16 | 17 |
18 | $ancestors, 'sosa' => 1, 'generation' => 1, 'generations' => $generations, 'links' => $links, 'spacer' => $spacer]) ?> 19 |
20 | -------------------------------------------------------------------------------- /resources/views/modules/place-hierarchy/list.phtml: -------------------------------------------------------------------------------- 1 | > $columns 10 | */ 11 | 12 | ?> 13 | 14 |
15 | 16 | 17 | 18 |
19 |
20 | 21 |
    22 | 23 |
  • fullName(true) ?>
  • 24 | 25 |
26 | 27 |
28 | -------------------------------------------------------------------------------- /resources/views/modules/places/event-sidebar.phtml: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | gedcomName() !== '') : ?> 39 |
40 | fullName(true) ?> 41 |
42 | 43 | -------------------------------------------------------------------------------- /resources/views/modules/powered-by-webtrees/footer.phtml: -------------------------------------------------------------------------------- 1 | 11 | 16 | -------------------------------------------------------------------------------- /resources/views/modules/repository-list/page.phtml: -------------------------------------------------------------------------------- 1 | $repositories 11 | * @var string $title 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 |

17 | 18 |

19 | 20 |
21 | $repositories, 'tree' => $tree]) ?> 22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/source-list/page.phtml: -------------------------------------------------------------------------------- 1 | $sources 11 | * @var string $title 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 |

17 | 18 |

19 | 20 |
21 | $sources, 'tree' => $tree]) ?> 22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/statcounter/snippet.phtml: -------------------------------------------------------------------------------- 1 | 7 | 15 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/chart-distribution.phtml: -------------------------------------------------------------------------------- 1 | #chartDistribution# 2 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/chart-objects.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |
14 |
15 |
16 |
17 | #chartMedia# 18 |
19 |
20 |
21 |
22 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/families.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | embedTags(view('modules/statistics-chart/family-totals')) ?> 15 | embedTags(view('modules/statistics-chart/marriage-length')) ?> 16 | embedTags(view('modules/statistics-chart/marriage-age')) ?> 17 | embedTags(view('modules/statistics-chart/birth-age')) ?> 18 | embedTags(view('modules/statistics-chart/children')) ?> 19 | embedTags(view('modules/statistics-chart/age-difference')) ?> 20 |
21 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/greatest-age.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |
14 |
15 |
16 |
17 | 18 |
19 | #topTenOldestMaleList# 20 |
21 |
22 | 23 |
24 |
25 |
26 | 27 |
28 | #topTenOldestFemaleList# 29 |
30 |
31 |
-------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/individuals.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | embedTags(view('modules/statistics-chart/total-individuals')) ?> 15 | embedTags(view('modules/statistics-chart/individual-events')) ?> 16 | embedTags(view('modules/statistics-chart/lifespan')) ?> 17 | embedTags(view('modules/statistics-chart/greatest-age')) ?> 18 | embedTags(view('modules/statistics-chart/oldest-living')) ?> 19 | embedTags(view('modules/statistics-chart/names')) ?> 20 |
21 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/marriage-length.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |
14 |
15 |
16 |
17 | — #topAgeOfMarriage# 18 |
19 |
20 | #topAgeOfMarriageFamily# 21 |
22 |
23 |
24 | 25 |
26 |
27 |
28 | — #minAgeOfMarriage# 29 |
30 |
31 | #minAgeOfMarriageFamily# 32 |
33 |
34 |
35 |
36 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/oldest-living.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 |

12 | 13 |
14 |
15 |
16 |
17 | 18 |
19 | #topTenOldestMaleListAlive# 20 |
21 |
22 | 23 |
24 |
25 |
26 | 27 |
28 | #topTenOldestFemaleListAlive# 29 |
30 |
31 |
32 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/other-events.phtml: -------------------------------------------------------------------------------- 1 | 8 | 9 |

10 | 11 | #totalEvents# 12 |

13 | 14 |
15 |
16 |
17 |
18 | — #firstEventType# 19 |
20 |
21 | #firstEvent# 22 |
23 |
24 |
25 | 26 |
27 |
28 |
29 | — #lastEventType# 30 |
31 |
32 | #lastEvent# 33 |
34 |
35 |
36 |
37 | -------------------------------------------------------------------------------- /resources/views/modules/statistics-chart/other.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | embedTags(view('modules/statistics-chart/other-records')) ?> 15 | embedTags(view('modules/statistics-chart/other-events')) ?> 16 | embedTags(view('modules/statistics-chart/chart-objects')) ?> 17 | embedTags(view('modules/statistics-chart/chart-sources')) ?> 18 | embedTags(view('modules/statistics-chart/places')) ?> 19 | embedTags(view('modules/statistics-chart/chart-distribution')) ?> 20 |
21 | -------------------------------------------------------------------------------- /resources/views/modules/submitter-list/page.phtml: -------------------------------------------------------------------------------- 1 | $submitters 11 | * @var string $title 12 | * @var Tree $tree 13 | */ 14 | 15 | ?> 16 |

17 | 18 |

19 | 20 |
21 | $submitters, 'tree' => $tree]) ?> 22 |
23 | -------------------------------------------------------------------------------- /resources/views/modules/todays_events/empty.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /resources/views/modules/top10_givnnames/block.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 |
16 |

17 | 18 |
19 |
20 |

21 | 22 |
23 |
24 | -------------------------------------------------------------------------------- /resources/views/modules/top10_givnnames/config.phtml: -------------------------------------------------------------------------------- 1 | $info_styles 10 | * @var string $num 11 | */ 12 | 13 | ?> 14 | 15 |
16 | 19 |
20 | 21 |
22 |
23 | 24 |
25 | 28 |
29 | 'infoStyle', 'selected' => $info_style, 'options' => $info_styles]) ?> 30 |
31 |
32 | -------------------------------------------------------------------------------- /resources/views/modules/top10_pageviews/config.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 | 17 |
18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /resources/views/modules/top10_pageviews/list.phtml: -------------------------------------------------------------------------------- 1 | $results 10 | */ 11 | 12 | ?> 13 | 23 | -------------------------------------------------------------------------------- /resources/views/modules/top10_surnames/config.phtml: -------------------------------------------------------------------------------- 1 | $info_styles 10 | * @var string $num 11 | */ 12 | 13 | ?> 14 | 15 |
16 | 19 |
20 | 21 |
22 |
23 | 24 |
25 | 28 |
29 | 'infoStyle', 'selected' => $info_style, 'options' => $info_styles]) ?> 30 |
31 |
32 | -------------------------------------------------------------------------------- /resources/views/modules/upcoming_events/empty.phtml: -------------------------------------------------------------------------------- 1 | 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /resources/views/modules/user_welcome/welcome.phtml: -------------------------------------------------------------------------------- 1 | > $links 7 | */ 8 | 9 | ?> 10 |
11 | 12 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /resources/views/place-hierarchy.phtml: -------------------------------------------------------------------------------- 1 | > $columns 11 | */ 12 | 13 | ?> 14 | 15 |
16 |
17 | 18 | 19 | 20 |
21 |
22 | 23 | 30 | 31 |
32 |
33 | -------------------------------------------------------------------------------- /resources/views/record-page-details.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | facts([], true) as $fact) : ?> 15 | $fact, 'record' => $record]) ?> 16 | 17 |
18 | -------------------------------------------------------------------------------- /resources/views/record-page-menu-facts.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | 18 | 19 | missingFacts() as $fact => $label) : ?> 20 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/views/report-page.phtml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/selects/family.phtml: -------------------------------------------------------------------------------- 1 | getMarriageDate(); 12 | 13 | ?> 14 | fullName() ?> 15 | isOK()) : ?> 16 | — display() ?> 17 | -------------------------------------------------------------------------------- /resources/views/selects/individual.phtml: -------------------------------------------------------------------------------- 1 | 13 | 14 | findHighlightedMediaFile() instanceof MediaFile) : ?> 15 | findHighlightedMediaFile()->displayImage(30, 40, 'crop', []) ?>  16 | 17 | fullName() ?>, lifespan() ?> 18 | -------------------------------------------------------------------------------- /resources/views/selects/location.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/media.phtml: -------------------------------------------------------------------------------- 1 | 12 | mediaFiles() as $media_file) : ?> 13 | displayImage(30, 40, 'crop', []) ?>  14 | 15 | fullName(); 16 | -------------------------------------------------------------------------------- /resources/views/selects/note.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/place.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/repository.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/shared-note.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/source.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/submission.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/selects/submitter.phtml: -------------------------------------------------------------------------------- 1 | 12 | fullName() ?> 13 | -------------------------------------------------------------------------------- /resources/views/setup/config.ini.phtml: -------------------------------------------------------------------------------- 1 | 17 | ; < return; ?> DO NOT DELETE THIS LINE 18 | dbtype="" 19 | dbhost="" 20 | dbport="" 21 | dbuser="" 22 | dbpass="" 23 | dbname="" 24 | tblpfx="" 25 | base_url="" 26 | rewrite_urls="0" 27 | -------------------------------------------------------------------------------- /resources/views/setup/step-6-failed.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |

14 | 15 |

16 | 17 |
getMessage() ?>
18 | 19 |
getTraceAsString() ?>
20 | 21 |

22 | 23 |

24 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-list-spouses.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | 12 | ?> 13 | 14 | 15 | 24 | 25 |
26 | 27 |
28 | 29 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-list.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | 12 | ?> 13 | 14 | 15 | 26 | 27 |
28 | 29 |
30 | 31 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-nolist-age.phtml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | 18 | 19 | formatList() ?> 20 |
21 | 22 |
23 | formatList() ?> 24 |
25 | [] 26 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-nolist-grand.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | 12 | ?> 13 | 14 | 15 | 16 | fullName() ?> 17 | - 18 | 19 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-nolist-spouses.phtml: -------------------------------------------------------------------------------- 1 | $records 7 | */ 8 | 9 | use Fisharebest\Webtrees\Family; 10 | 11 | ?> 12 | 13 | 14 | 15 | fullName() ?> () 16 | 17 | -------------------------------------------------------------------------------- /resources/views/statistics/families/top10-nolist.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | 12 | ?> 13 | 14 | 15 | 16 | fullName() ?> 17 | - 18 | 19 | -------------------------------------------------------------------------------- /resources/views/statistics/hit-count.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/views/statistics/individuals/top10-list.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | 12 | ?> 13 | 14 | 15 | 24 | 25 |
26 | 27 |
28 | 29 | -------------------------------------------------------------------------------- /resources/views/statistics/individuals/top10-nolist.phtml: -------------------------------------------------------------------------------- 1 | $records 9 | */ 10 | 11 | ?> 12 | 13 | 14 | 15 | fullName() ?> () 16 | 17 | -------------------------------------------------------------------------------- /resources/views/statistics/other/charts/custom.phtml: -------------------------------------------------------------------------------- 1 | >> $chart_options 9 | * @var string $chart_title 10 | * @var array $data 11 | * @var string $language 12 | */ 13 | 14 | ?> 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | 23 |
24 |
25 | $data, 'chart_options' => $chart_options, 'chart_title' => '', 'language' => $language]) ?> 26 |
27 |
28 |
29 | 30 | -------------------------------------------------------------------------------- /resources/views/statistics/other/top10-list.phtml: -------------------------------------------------------------------------------- 1 | $records 10 | */ 11 | ?> 12 | 13 | 14 |
    15 | 16 |
  • 17 | fullName(true) ?> 18 | 19 |
  • 20 | 21 |
22 | 23 |
24 | 25 |
26 | 27 | -------------------------------------------------------------------------------- /resources/views/tree-page-block.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 | loadAjax()) : ?> 18 |
19 | 20 | getBlock($tree, $block_id, ModuleBlockInterface::CONTEXT_TREE_PAGE) ?> 21 | 22 | -------------------------------------------------------------------------------- /resources/views/user-page-block.phtml: -------------------------------------------------------------------------------- 1 | 16 | 17 | loadAjax()) : ?> 18 |
19 | 20 | getBlock($tree, $block_id, ModuleBlockInterface::CONTEXT_USER_PAGE) ?> 21 | 22 | -------------------------------------------------------------------------------- /resources/views/verify-failure-page.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |

14 | 15 |

16 | 17 |
18 |

19 | 20 |

21 |
22 | -------------------------------------------------------------------------------- /resources/views/verify-success-page.phtml: -------------------------------------------------------------------------------- 1 | 12 | 13 |

14 | 15 |

16 | 17 |
18 |

19 | 20 |

21 |

22 | 23 |

24 |
25 | -------------------------------------------------------------------------------- /resources/views/webmanifest-json.phtml: -------------------------------------------------------------------------------- 1 | 'webtrees', 3 | 'short_name' => 'webtrees', 4 | 'description' => 'webtrees online genealogy', 5 | 'scope' => '/', 6 | 'start_url' => '/', 7 | 'background_color' => '#fff', 8 | 'theme_color' => '#2694e8', 9 | 'display' => 'standalone', 10 | 'icons' => [(object) [ 11 | 'src' => asset('favicon-192.png'), 12 | 'sizes' => '192x192', 13 | 'type' => 'image/png', 14 | ]], 15 | ], JSON_THROW_ON_ERROR) ?> 16 | --------------------------------------------------------------------------------