Jeremy Audet

Results 17 issues of Jeremy Audet

The value attached to pandoc's `--metadata` is escaped. Consequently, setting a value through the command line, like this: -M title="\Huge{\textbf{${TITLE}}}" …results in that literal text displaying in the document. A...

Many calls require that you wait for a task to complete. For example, publishing a content view or syncing a repository takes a non-trivial amount of time, and a foreman...

The Requests library ships with a very useful method that can be called on each response: [`raise_for_status`](http://docs.python-requests.org/en/latest/api/#requests.Response.raise_for_status). This method raises an exception if its response has an HTTP 4XX or...

It's really easy to call a helper and pass in the wrong kind of arguments. For example, it's really tempting to write this: ``` python content_view.publish({'content_view_id': 5}) ``` But that's...

From IRC: > POST /subnets/freeip with some data gets you an IP address which can be associated with the new host > data = {'subnet_id':1, 'organization_id': 1, 'location_id': 1} >...

Requests now offers a `json` argument. Consider this sample code: ``` python import json import requests r = requests.post( 'https://httpbin.org/post', data=json.dumps({'my': 'json'}), headers={'Content-Type': 'application/json'} ) ``` The same code can...

Robottelo used to have this sweet `make graph-entities` make target. It graphed out the relationships between all the entities. We should add it to NailGun.

Add the `minor` field to the `ContentViewVersion` entity. See the "NOTE" in SatelliteQE/robottelo#2739.

fields

Add the `package_count` field to the `ContentViewVersion` entity. See https://github.com/SatelliteQE/robottelo/pull/2441#discussion_r32714920

fields