Ralph van Etten

Results 12 comments of Ralph van Etten

I tried this and it just shows the markup in the bibliography list. I have: ``` @article{test, author = {test}, title = {test}, URL = {http://google.com} } ``` which shows...

yes, that is what I did

Changing the filter to generate a HTML link tag works. Thanks.

I have the same issue but it depends on the ssh server. My code: ``` SSHClient client = new SSHClient(); client.addHostKeyVerifier((hostname, port, key) -> true); client.connect("xxxx"); client.authPassword("xxx", "xxx"); Session session...

swagger-ui pre-populates the fields with the `default` value and this feature is very convenient for quickly showing how the API works. But yes, you are correct, using `default` is not...

I was testing some other schema and I found a solution with works: ``` { "first": { "type": "object", "description": "first property" "allOf" : [ { "$ref": "#/definitions/MyObject" } ]...

After making this change: ``` --- /root/carddav_backend.php 2012-04-14 16:57:06.000000000 +0200 +++ carddav_backend.php 2012-04-14 16:56:30.000000000 +0200 @@ -291,6 +291,8 @@ { $vcard = str_replace("\t", null, $vcard); + $vcard = str_replace("PHOTO;type=X", "PHOTO;ENCODING=b;TYPE=X",...

I opened a ticket with roundcube : http://trac.roundcube.net/ticket/1488432

Sorry but it seems the roundcube address book classes work fine. I tried importing and exporting a vcard created with evolution in the normal (non carddav) roundcube addressbook and it...