-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Help processed for compatibility with html5 [Miguel A. Pérez Valdenebro]
- Loading branch information
1 parent
f9c211c
commit a18b537
Showing
227 changed files
with
4,533 additions
and
5,995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<link rel="stylesheet" href="styles.css" type="text/css" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" href="styles.css" type="text/css"> | ||
<title>Development</title> | ||
</head> | ||
<body> | ||
|
||
<h1>Development</h1> | ||
|
||
<p> | ||
Short list of Features:<ul> | ||
<li>simple and intuitive interface | ||
<li>easy install | ||
<li>high compatibility with GEDCOM 5.5.1 format | ||
<li>partial compatibility with GEDCOM 5.5EL format | ||
<li>no restrictions on the number of persons and generations | ||
<li>generation of pedigrees | ||
<li>rendering several trees diagram kinds | ||
<li>print and export tree diagrams as image | ||
<li>fast navigation, filtering and searching | ||
<li>adding multimedia materials | ||
<li>output of geographic data on maps (Google, Yandex, OSM) | ||
<li>cross-platform project (Windows, Linux) | ||
<li>supports Lua scripts and plugins | ||
<li>files password protection | ||
<li>pedigree reports | ||
<li>possibility to export PDF, Excel, RTF, HTML | ||
<li>statistics | ||
<li>organizer and slideshow | ||
<li>reminder of birthdays | ||
<li>support of multi-monitor configurations | ||
<li>calculator of relationship degree | ||
<li>reminder of holidays | ||
</ul> | ||
Short list of Features: | ||
</p> | ||
<ul> | ||
<li>simple and intuitive interface | ||
<li>easy install | ||
<li>high compatibility with GEDCOM 5.5.1 format | ||
<li>partial compatibility with GEDCOM 5.5EL format | ||
<li>no restrictions on the number of persons and generations | ||
<li>generation of pedigrees | ||
<li>rendering several trees diagram kinds | ||
<li>print and export tree diagrams as image | ||
<li>fast navigation, filtering and searching | ||
<li>adding multimedia materials | ||
<li>output of geographic data on maps (Google, Yandex, OSM) | ||
<li>cross-platform project (Windows, Linux) | ||
<li>supports Lua scripts and plugins | ||
<li>files password protection | ||
<li>pedigree reports | ||
<li>possibility to export PDF, Excel, RTF, HTML | ||
<li>statistics | ||
<li>organizer and slideshow | ||
<li>reminder of birthdays | ||
<li>support of multi-monitor configurations | ||
<li>calculator of relationship degree | ||
<li>reminder of holidays | ||
</ul> | ||
<p>Development</p> | ||
<ul> | ||
<li><a href="https://github.com/serg-norseman/gedkeeper/">GitHub</a> | ||
<li><a href="https://sourceforge.net/projects/gedkeeper/">SourceForge</a> | ||
<li><a href="https://gitflic.ru/project/serg-norseman/gedkeeper">GitFlic</a> | ||
<li><a href="https://t.me/gedkeeper_dev_ru">Development chat (RU)</a> | ||
</ul> | ||
|
||
<p> | ||
Development<ul> | ||
<li><a href="https://github.com/serg-norseman/gedkeeper/">GitHub</a> | ||
<li><a href="https://sourceforge.net/projects/gedkeeper/">SourceForge</a> | ||
<li><a href="https://gitflic.ru/project/serg-norseman/gedkeeper">GitFlic</a> | ||
<li><a href="https://t.me/gedkeeper_dev_ru">Development chat (RU)</a> | ||
</ul> | ||
</p> | ||
|
||
<p> | ||
Articles<ul> | ||
<li><a href="http://www.softpedia.com/get/Others/Home-Education/GEDKeeper.shtml">GEDKeeper in Softpedia Labs</a> | ||
</ul> | ||
</p> | ||
|
||
|
||
<p>Articles</p> | ||
<ul> | ||
<li><a href="http://www.softpedia.com/get/Others/Home-Education/GEDKeeper.shtml">GEDKeeper in Softpedia Labs</a> | ||
</ul> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<link rel="stylesheet" href="../help/styles.css" type="text/css" /> | ||
<title>GEDKeeper</title> | ||
</head> | ||
<frameset cols="25%,75%" frameborder="yes" border="5"> | ||
<frame src="gkhContents.html" name="contents_frame"> | ||
<frame src="gkhAbout.html" name="text_frame"> | ||
</frameset> | ||
</html> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>GEDKeeper</title> | ||
<style> | ||
body { | ||
margin: 0px; | ||
padding: 0px; | ||
height: 100vh; | ||
width: 100vw; | ||
overflow: hidden; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
} | ||
.sidebar { | ||
height: 100%; | ||
width: 24%; | ||
border: 1px solid gray; | ||
} | ||
.main { | ||
height: 100%; | ||
width: 76%; | ||
border: 1px solid gray; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<iframe src="gkhContents.html" class="sidebar" name="contents_frame"></iframe> | ||
<iframe src="gkhAbout.html" class="main" name="text_frame"></iframe> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<link rel="stylesheet" href="../help/styles.css" type="text/css" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<link rel="stylesheet" href="../help/styles.css" type="text/css"> | ||
<title>About GEDKeeper</title> | ||
</head> | ||
<body> | ||
|
||
<h1>About GEDKeeper</h1> | ||
|
||
<p> | ||
<img src="../help/images/GEDKeeper.png" align="top" style="float:left; margin: 20px;"> | ||
GEDKeeper is free software that manages your personal genealogical database. The 'GED' prefix in the product title stands for GEDCOM—an international | ||
<img src="../help/images/GEDKeeper.png" alt="GEDKeeper logo" style="float:left; margin: 20px;"> | ||
GEDKeeper is free software that manages your personal genealogical database. The 'GED' prefix in the product title stands for GEDCOM—an international | ||
de facto standard describing how to store and exchange genealogical data which is used by many commercial genealogical products. The only specification | ||
used by GEDKeeper to store its data is GEDCOM. This extremely advances the GEDKeeper compatibility level with other products. | ||
</p> | ||
|
@@ -25,6 +24,7 @@ <h1>About GEDKeeper</h1> | |
|
||
<p> | ||
This is a brief list of GEDKeeper features: | ||
</p> | ||
<ul> | ||
<li>Very easy installation process.</li> | ||
<li>Full support of the GEDCOM standard.</li> | ||
|
@@ -35,20 +35,19 @@ <h1>About GEDKeeper</h1> | |
<li>Quick navigation and management of multimedia content.</li> | ||
<li>Puts georeferenced data over Google Maps (© Google).</li> | ||
</ul> | ||
</p> | ||
|
||
<p> | ||
The author's aim was to create an easy-to-use product and not an overladen all-in-one program. The primary goal is to invent a fast and effective tool to | ||
manage a personal genealogical database. A tool that will become an addition to the traditional card index. | ||
</p> | ||
|
||
<hr /> | ||
<hr> | ||
<p><a href="gkhFeatures.html">Advantages and features</a>.</p> | ||
|
||
<hr /> | ||
<hr> | ||
<p><a href="gkhAuthors.html">Development and author support</a>.</p> | ||
|
||
<hr /> | ||
<hr> | ||
<p>Website: <a href="https://gedkeeper.net/index.html" target="_blank">https://gedkeeper.net/index.html</a>.</p> | ||
<p>Page on Facebook: <a href="https://www.facebook.com/gedkeeper/" target="_blank">https://www.facebook.com/gedkeeper/</a>.</p> | ||
<p>Email: <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.