Nathanael Noblet

Results 59 comments of Nathanael Noblet

Why not store the PhoneNumberFormat::RFC3966 ? This stores the extension as well. Is there data it loses compared to E164? I'm wondering if we could even configure the doctrine type...

Yeah, I've just done the same thing locally.

I can understand that in a non-fixtures case - however with fixtures which is by definition just test data of some sort it would be nice to be able to...

something like: ``` diff --git a/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php b/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php index 94b3ff2..71f1435 100644 --- a/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php +++ b/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php @@ -141,6 +141,7 @@ abstract class AbstractExecutor * * @param array $fixtures Array of fixtures to...

I've created a pull request - wasn't sure how to link it with this request so its pull request #132

I re-review my code and ended up with this that fails as well. I added ``` InputFile file = writer.GetModifiedInputFile(); status = parser.StartPDFParsing(file.GetInputStream()); if(status != PDFHummus::eSuccess) { Php::out

looks like I needed to delete my PdfIndirectObjectReference *info... So that's the memory leak. However I'd still suggest that you run the playground through the sanitizer there are other issues.

So I dug deeper and noticed that the ! operator overload so !trailer is true, you can see Exists(this=@entry=0x0, inName="Info") so it doesn't parse the trailer properly? Is this a...

I couldn't figure it out either so modified the PDFWriter/CMakeLists.txt ``` diff --git a/PDFWriter/CMakeLists.txt b/PDFWriter/CMakeLists.txt index 137f841..5f64371 100644 --- a/PDFWriter/CMakeLists.txt +++ b/PDFWriter/CMakeLists.txt @@ -34,7 +34,7 @@ endif(NOT PDFHUMMUS_NO_PNG) -add_library (PDFWriter...

So I dug a little more from the original example of modifying a PDF and came up with this: ``` PDFWriter pdfWriter; pdfWriter.ModifyPDF("/home/gnat/Projects/pdf-writer-test/Form.pdf",ePDFVersion14,"/home/gnat/Projects/pdf-writer-test/Output.pdf"); PDFModifiedPage modifiedPage(&pdfWriter,0,true); AbstractContentContext* contentContext = modifiedPage.StartContentContext(); AbstractContentContext::TextOptions...