Jason
Jason
I am guessing the PPD for the printer is not exposing the copies option. It could also be that google made a change that requires [CDD](https://developers.google.com/cloud-print/docs/cdd) to show the copies...
My working theory is that when google created GCP 2.0 they started to internally translate GCP 1.0 requests to GCP 2.0 requests. One of the big differences between 1.0 and...
It looks like we only support "Globalized" ppd files. The base strings should be the ASCII subset of latin-1 and the the I18N strings are in utf-8. http://www.cups.org/documentation.php/spec-ppd.html#I18N
My guess is that we need to parse the ppd files as byte strings into a dict. Then we can use the `LanguageEncoding` to decode the all of the values...
It sounds like cloudprint can not connect to your local cups server. Is this in an init script?
@dmonty2 if you rebase on current master, fix the few comments davesteele had and submit a pull request I will merge this.
Can you provide debug logging output when this happens? You can do that by running with `cloudprint.py -v`.
It looks like like setting `job-originating-user-name` works. Can you give https://github.com/armooo/cloudprint/commit/108b9f02669e141a499e339ed6bf098c5553dabc a try and see if that works for you?
I expect it should. The map and the contacts list both use `model.nodeDB.nodes` which is populated now due to calling `installNodeDB` and `upsert` with userless nodes in `MeshService`. I will...
Good call on testing the map view, there was a `node.user!!` hiding in it.