1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
/**
* Parses gedcom file and displays record for given id in raw text
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @version $Id$
* @package webtrees
* @subpackage Charts
*/
define('WT_SCRIPT_NAME', 'gedrecord.php');
require './includes/session.php';
require_once WT_ROOT.'includes/classes/class_gedcomrecord.php';
header('Content-Type: text/html; charset=UTF-8');
$pid=safe_GET_xref('pid');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo i18n::html_markup(); ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php echo i18n::translate('Record'), ': ',$pid ; ?></title>
</head>
<body>
<?php
if (!$SHOW_GEDCOM_RECORD && !WT_USER_CAN_ACCEPT) {
echo "<span class=\"error\">", i18n::translate('This page has been disabled by the site administrator.'), "</span>\n";
echo "</body></html>";
exit;
}
$obj=GedcomRecord::getInstance($pid);
if (is_null($obj) || !$obj->canDisplayDetails()) {
print_privacy_error();
echo "</body></html>";
exit;
}
$indirec=find_gedcom_record($pid, WT_GED_ID, true);
$indirec=privatize_gedcom($indirec);
$indirec=htmlspecialchars($indirec);
$indirec=preg_replace("/@(\w+)@/", "@<a href=\"gedrecord.php?pid=$1\">$1</a>@", $indirec);
echo "<pre style=\"white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; white-space: pre-wrap; word-wrap: break-word;\">", $indirec, "</pre>";
echo "</body></html>";
|