-
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
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.