Name: Anonymous 2009-05-27 22:31
What do you guys think of the HTML 5 language? I can't wait to use the video tag. I hope all the places that use flash convert over to this and Adobe shrivels up into a little ball and dies.
/* This patch is free software. You should have received a copy of the
/prog/ HMAPL along with this patch. If not, hax <my anus>. */
--- xpdf-3.02.orig/xpdf/XRef.cc 2007-02-27 16:05:52.000000000 -0600
+++ xpdf-3.02/xpdf/XRef.cc 2007-08-30 10:16:47.000000000 -0500
@@ -771,19 +771,19 @@
}
GBool XRef::okToPrint(GBool ignoreOwnerPW) {
- return (!ignoreOwnerPW && ownerPasswordOk) || (permFlags & permPrint);
+ return true;
}
GBool XRef::okToChange(GBool ignoreOwnerPW) {
- return (!ignoreOwnerPW && ownerPasswordOk) || (permFlags & permChange);
+ return true;
}
GBool XRef::okToCopy(GBool ignoreOwnerPW) {
- return (!ignoreOwnerPW && ownerPasswordOk) || (permFlags & permCopy);
+ return true;
}
GBool XRef::okToAddNotes(GBool ignoreOwnerPW) {
- return (!ignoreOwnerPW && ownerPasswordOk) || (permFlags & permNotes);
+ return true;
}
Object *XRef::fetch(int num, int gen, Object *obj) {