Jason Barnabe

Results 97 issues of Jason Barnabe

In the left sidebar, the page that gives publishers the ad code is "Installation". On the tabs on top, it's labelled "Instructions"

bug

As a publisher, I'd like to see a payment history. This would help me prepare financial statements I need to make. History should include: - Payment sent date - Payment...

feature request

Looking at the earnings tab of my property 620, 01/18/2020 shows 0s across the board. Current time is 00:37 UTC, 01/19/2020. I would guess that there's some end of day...

bug

When using relative times, times older than a month are show absolutely, localized using the document's language (good!); however, the `title` is localized using the browser language (bad!). This should...

If the language is not supported (like Esperanto), relative dates show like "-10 d". More reasonable would be to fall back to English.

All the examples seem to be about adding a new page to a PDF and adding content to it. It would be helpful to have an example of adding content...

documentation

```ruby require 'origami' include Origami input_file = 'test.pdf' output_file = '/tmp/test_signed.pdf' private_key = File.read('keys/server.key') certificate = File.read('keys/server.crt') passphrase = '' key = OpenSSL::PKey::RSA.new private_key, passphrase cert = OpenSSL::X509::Certificate.new(certificate) pdf =...

bug
confirmed

https://github.com/gdelugre/origami/blob/ee7207c6c9085c66cb27900b0c6782d4e6f11802/lib/origami/graphics/xobject.rb#L81 This should allow passing in width and height parameters.

bug
confirmed

In an otherwise valid document, If I do ```ruby contents.write('my text', { x: 30, y: 30, size: 8, leading: 8 * 1.2 }) ``` when I process the resulting file...

enhancement

Not sure what the general strategy is in this gem for handling invalid CSS, but the behaviour changed between 1.7.1 and 1.8.0. ``` html = {"line-height"=>"!important"}}} ``` In 1.8.0: ```...