├── .gitignore ├── CONTRIBUTING.md ├── GPL-LICENSE.txt ├── README.md ├── SECURITY.md ├── app ├── ApiHandler.php ├── Colour.php ├── Cookie.php ├── Dot.php ├── Favourite.php ├── File.php ├── FormSubmission.php ├── Help.php ├── ImageFile.php ├── MainPage.php ├── OutputFile.php ├── Person.php ├── Settings.php ├── SettingsLink.php ├── SharedNoteList.php └── functionsClippingsCart.php ├── changelog.txt ├── composer.json ├── composer.lock ├── config.php ├── gvexport.jpg ├── latest-version.txt ├── module.php └── resources ├── css └── gvexport.css ├── data ├── CountryCodes2Char.json ├── CountryCodes3Char.json ├── CountryRegionCodes2Char.json ├── CountryRegionCodes3Char.json └── world.json ├── javascript ├── MainPage │ ├── Data.js │ ├── Form.js │ ├── SettingsGroup.js │ ├── UI.js │ └── Url.js ├── gvexport.js ├── jspdf.umd.min.js ├── panzoom.min.js ├── viz-standalone.js └── viz.js ├── lang ├── ca.mo ├── ca.po ├── cs.mo ├── cs.po ├── de.mo ├── de.po ├── en-GB.mo ├── en-GB.po ├── en-US.mo ├── en-US.po ├── es.mo ├── es.po ├── fr.mo ├── fr.po ├── nb.mo ├── nb.po ├── nl.mo ├── nl.po ├── pl.mo ├── pl.po ├── ru.mo ├── ru.po ├── zh-Hans.mo └── zh-Hans.po └── views ├── ControlPanel ├── Appearance.phtml ├── DebugPanel.phtml ├── GeneralSettings.phtml └── PeopleToInclude.phtml ├── MainPage ├── Appearance.phtml ├── Appearance │ ├── DiagramAdvanced.phtml │ ├── DiagramType.phtml │ ├── GraphDirection.phtml │ ├── TileContents.phtml │ ├── TileDesign.phtml │ └── TileDesign │ │ ├── AgeColourSubgroup.phtml │ │ ├── ColourPickerList.phtml │ │ ├── CustomArrowColourSubgroup.phtml │ │ ├── SharedNote.phtml │ │ └── Subgroup.phtml ├── DebugPanel.phtml ├── GeneralSettings.phtml ├── GeneralSettings │ ├── BrowserRender.phtml │ ├── MessageHistory.phtml │ ├── OutputFile.phtml │ ├── SaveSettings.phtml │ └── SettingsFile.phtml ├── Help.phtml ├── Help │ ├── About GVExport.phtml │ ├── Detailed information.phtml │ ├── Detailed information │ │ ├── Appearance.phtml │ │ ├── Appearance │ │ │ ├── Diagram type.phtml │ │ │ ├── Diagram.phtml │ │ │ ├── Graph direction.phtml │ │ │ ├── Tile contents.phtml │ │ │ └── Tile design.phtml │ │ ├── General settings.phtml │ │ ├── General settings │ │ │ ├── Browser render.phtml │ │ │ ├── Browser render │ │ │ │ └── Context menu when individual clicked.phtml │ │ │ ├── Message history.phtml │ │ │ ├── Output file.phtml │ │ │ ├── Save settings.phtml │ │ │ └── Settings file.phtml │ │ ├── People to be included.phtml │ │ ├── People to be included │ │ │ ├── Clippings cart.phtml │ │ │ ├── Connections to include.phtml │ │ │ ├── Include anyone related to.phtml │ │ │ ├── Non-relatives.phtml │ │ │ ├── Stop processing on.phtml │ │ │ ├── Treatment of source individuals.phtml │ │ │ └── XREFs of included individuals.phtml │ │ ├── Saved diagrams.phtml │ │ └── Saved diagrams │ │ │ └── List of diagrams.phtml │ ├── Getting started.phtml │ ├── Help information not found.phtml │ ├── HelpHeader.phtml │ └── Home.phtml ├── PeopleToInclude.phtml ├── PeopleToInclude │ ├── ConnectionsToInclude.phtml │ ├── IncludeAnyoneRelatedTo.phtml │ ├── ItemsInClippingsCart.phtml │ ├── NonRelatives.phtml │ ├── StopProcessingOn.phtml │ ├── TreatmentOfSourceIndividuals.phtml │ └── XrefOfIncludedIndividuals.phtml ├── Sidebar.phtml └── Translations.phtml ├── page.phtml └── settings.phtml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/ApiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/ApiHandler.php -------------------------------------------------------------------------------- /app/Colour.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Colour.php -------------------------------------------------------------------------------- /app/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Cookie.php -------------------------------------------------------------------------------- /app/Dot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Dot.php -------------------------------------------------------------------------------- /app/Favourite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Favourite.php -------------------------------------------------------------------------------- /app/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/File.php -------------------------------------------------------------------------------- /app/FormSubmission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/FormSubmission.php -------------------------------------------------------------------------------- /app/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Help.php -------------------------------------------------------------------------------- /app/ImageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/ImageFile.php -------------------------------------------------------------------------------- /app/MainPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/MainPage.php -------------------------------------------------------------------------------- /app/OutputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/OutputFile.php -------------------------------------------------------------------------------- /app/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Person.php -------------------------------------------------------------------------------- /app/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/Settings.php -------------------------------------------------------------------------------- /app/SettingsLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/SettingsLink.php -------------------------------------------------------------------------------- /app/SharedNoteList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/SharedNoteList.php -------------------------------------------------------------------------------- /app/functionsClippingsCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/app/functionsClippingsCart.php -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/changelog.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/config.php -------------------------------------------------------------------------------- /gvexport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/gvexport.jpg -------------------------------------------------------------------------------- /latest-version.txt: -------------------------------------------------------------------------------- 1 | 2.2.4 2 | -------------------------------------------------------------------------------- /module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/module.php -------------------------------------------------------------------------------- /resources/css/gvexport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/css/gvexport.css -------------------------------------------------------------------------------- /resources/data/CountryCodes2Char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/data/CountryCodes2Char.json -------------------------------------------------------------------------------- /resources/data/CountryCodes3Char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/data/CountryCodes3Char.json -------------------------------------------------------------------------------- /resources/data/CountryRegionCodes2Char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/data/CountryRegionCodes2Char.json -------------------------------------------------------------------------------- /resources/data/CountryRegionCodes3Char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/data/CountryRegionCodes3Char.json -------------------------------------------------------------------------------- /resources/data/world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/data/world.json -------------------------------------------------------------------------------- /resources/javascript/MainPage/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/MainPage/Data.js -------------------------------------------------------------------------------- /resources/javascript/MainPage/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/MainPage/Form.js -------------------------------------------------------------------------------- /resources/javascript/MainPage/SettingsGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/MainPage/SettingsGroup.js -------------------------------------------------------------------------------- /resources/javascript/MainPage/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/MainPage/UI.js -------------------------------------------------------------------------------- /resources/javascript/MainPage/Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/MainPage/Url.js -------------------------------------------------------------------------------- /resources/javascript/gvexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/gvexport.js -------------------------------------------------------------------------------- /resources/javascript/jspdf.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/jspdf.umd.min.js -------------------------------------------------------------------------------- /resources/javascript/panzoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/panzoom.min.js -------------------------------------------------------------------------------- /resources/javascript/viz-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/viz-standalone.js -------------------------------------------------------------------------------- /resources/javascript/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/javascript/viz.js -------------------------------------------------------------------------------- /resources/lang/ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/ca.mo -------------------------------------------------------------------------------- /resources/lang/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/ca.po -------------------------------------------------------------------------------- /resources/lang/cs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/cs.mo -------------------------------------------------------------------------------- /resources/lang/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/cs.po -------------------------------------------------------------------------------- /resources/lang/de.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/de.mo -------------------------------------------------------------------------------- /resources/lang/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/de.po -------------------------------------------------------------------------------- /resources/lang/en-GB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/en-GB.mo -------------------------------------------------------------------------------- /resources/lang/en-GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/en-GB.po -------------------------------------------------------------------------------- /resources/lang/en-US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/en-US.mo -------------------------------------------------------------------------------- /resources/lang/en-US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/en-US.po -------------------------------------------------------------------------------- /resources/lang/es.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/es.mo -------------------------------------------------------------------------------- /resources/lang/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/es.po -------------------------------------------------------------------------------- /resources/lang/fr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/fr.mo -------------------------------------------------------------------------------- /resources/lang/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/fr.po -------------------------------------------------------------------------------- /resources/lang/nb.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/nb.mo -------------------------------------------------------------------------------- /resources/lang/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/nb.po -------------------------------------------------------------------------------- /resources/lang/nl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/nl.mo -------------------------------------------------------------------------------- /resources/lang/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/nl.po -------------------------------------------------------------------------------- /resources/lang/pl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/pl.mo -------------------------------------------------------------------------------- /resources/lang/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/pl.po -------------------------------------------------------------------------------- /resources/lang/ru.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/ru.mo -------------------------------------------------------------------------------- /resources/lang/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/ru.po -------------------------------------------------------------------------------- /resources/lang/zh-Hans.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/zh-Hans.mo -------------------------------------------------------------------------------- /resources/lang/zh-Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/lang/zh-Hans.po -------------------------------------------------------------------------------- /resources/views/ControlPanel/Appearance.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/ControlPanel/Appearance.phtml -------------------------------------------------------------------------------- /resources/views/ControlPanel/DebugPanel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/ControlPanel/DebugPanel.phtml -------------------------------------------------------------------------------- /resources/views/ControlPanel/GeneralSettings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/ControlPanel/GeneralSettings.phtml -------------------------------------------------------------------------------- /resources/views/ControlPanel/PeopleToInclude.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/ControlPanel/PeopleToInclude.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/DiagramAdvanced.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/DiagramAdvanced.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/DiagramType.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/DiagramType.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/GraphDirection.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/GraphDirection.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileContents.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileContents.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign/AgeColourSubgroup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign/AgeColourSubgroup.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign/ColourPickerList.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign/ColourPickerList.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign/CustomArrowColourSubgroup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign/CustomArrowColourSubgroup.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign/SharedNote.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign/SharedNote.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Appearance/TileDesign/Subgroup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Appearance/TileDesign/Subgroup.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/DebugPanel.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/DebugPanel.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings/BrowserRender.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings/BrowserRender.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings/MessageHistory.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings/MessageHistory.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings/OutputFile.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings/OutputFile.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings/SaveSettings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings/SaveSettings.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/GeneralSettings/SettingsFile.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/GeneralSettings/SettingsFile.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/About GVExport.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/About GVExport.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance/Diagram type.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance/Diagram type.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance/Diagram.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance/Diagram.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance/Graph direction.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance/Graph direction.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance/Tile contents.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance/Tile contents.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Appearance/Tile design.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Appearance/Tile design.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Browser render.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Browser render.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Browser render/Context menu when individual clicked.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Browser render/Context menu when individual clicked.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Message history.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Message history.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Output file.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Output file.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Save settings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Save settings.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/General settings/Settings file.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/General settings/Settings file.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Clippings cart.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Clippings cart.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Connections to include.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Connections to include.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Include anyone related to.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Include anyone related to.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Non-relatives.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Non-relatives.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Stop processing on.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Stop processing on.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/Treatment of source individuals.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/Treatment of source individuals.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/People to be included/XREFs of included individuals.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/People to be included/XREFs of included individuals.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Saved diagrams.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Saved diagrams.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Detailed information/Saved diagrams/List of diagrams.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Detailed information/Saved diagrams/List of diagrams.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Getting started.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Getting started.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Help information not found.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Help information not found.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/HelpHeader.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/HelpHeader.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Help/Home.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Help/Home.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/ConnectionsToInclude.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/ConnectionsToInclude.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/IncludeAnyoneRelatedTo.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/IncludeAnyoneRelatedTo.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/ItemsInClippingsCart.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/ItemsInClippingsCart.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/NonRelatives.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/NonRelatives.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/StopProcessingOn.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/StopProcessingOn.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/TreatmentOfSourceIndividuals.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/TreatmentOfSourceIndividuals.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/PeopleToInclude/XrefOfIncludedIndividuals.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/PeopleToInclude/XrefOfIncludedIndividuals.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Sidebar.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Sidebar.phtml -------------------------------------------------------------------------------- /resources/views/MainPage/Translations.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/MainPage/Translations.phtml -------------------------------------------------------------------------------- /resources/views/page.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/page.phtml -------------------------------------------------------------------------------- /resources/views/settings.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neriderc/GVExport/HEAD/resources/views/settings.phtml --------------------------------------------------------------------------------