Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fillpdf
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
fillpdf
Commits
cbdacec6
Commit
cbdacec6
authored
13 years ago
by
Liam Morland
Committed by
Kevin Kaland
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue #1393022: Always use PDF key as-is.
parent
2ee79e5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
xfdf.inc
+3
-42
3 additions, 42 deletions
xfdf.inc
with
3 additions
and
42 deletions
xfdf.inc
+
3
−
42
View file @
cbdacec6
...
...
@@ -20,51 +20,12 @@ function create_xfdf($file, $info, $enc = 'UTF-8') {
$data
=
'<?xml version="1.0" encoding="'
.
$enc
.
'"?>'
.
"
\n
"
.
'<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">'
.
"
\n
"
.
'<fields>'
.
"
\n
"
;
$data
.
=
print_fields
(
$info
);
foreach
(
$info
as
$name
=>
$value
)
{
$data
.
=
'<field name="'
.
htmlspecialchars
(
$name
)
.
'"><value>'
.
htmlspecialchars
(
$value
)
.
'</value></field>'
.
"
\n
"
;
}
$data
.
=
'</fields>'
.
"
\n
"
.
'<ids original="'
.
md5
(
$file
)
.
'" modified="'
.
REQUEST_TIME
.
'" />'
.
"
\n
"
.
'<f href="'
.
$file
.
'" />'
.
"
\n
"
.
'</xfdf>'
.
"
\n
"
;
return
$data
;
}
function
escape_string
(
$str
)
{
if
(
$str
==
NULL
)
{
return
$str
;
}
$str
=
str_replace
(
array
(
'\\'
,
'\''
),
array
(
'\\\\'
,
'\\\''
),
$str
);
return
$str
;
}
function
print_fields
(
$info
)
{
$fields
=
array
();
$str
=
''
;
foreach
(
$info
as
$field
=>
$val
)
{
$arr
=
explode
(
'.'
,
$field
);
$str
.
=
'$fields'
;
foreach
(
$arr
as
$node
)
{
$str
.
=
"['"
.
escape_string
(
$node
)
.
"']"
;
}
$str
.
=
"='"
.
escape_string
(
$val
)
.
"';"
;
}
eval
(
$str
);
$str
=
''
;
foreach
(
$fields
as
$field
=>
$val
)
{
print_fields_recurse
(
$field
,
$val
,
$str
);
}
return
$str
;
}
function
print_fields_recurse
(
$field
,
$val
,
&
$str
)
{
$str
.
=
'<field name="'
.
$field
.
'">'
.
"
\n
"
;
if
(
is_array
(
$val
))
{
foreach
(
$val
as
$field
=>
$val
)
{
print_fields_recurse
(
$field
,
$val
,
$str
);
}
}
else
{
$str
.
=
'<value>'
.
$val
.
'</value>'
.
"
\n
"
;
}
$str
.
=
'</field>'
.
"
\n
"
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment