aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
Commit message (Collapse)AuthorAgeFilesLines
...
* z_post_url_json() added to easily deal with JSON post APIs; without getting ↵friendica2014-09-161-0/+17
| | | | content-type unknown warnings/errors. Also added a debug option to z_get|post_url so you could track and log some of these nasty little buggers.
* just mark dead hubloc deleted - don't remove them. This could cause ↵friendica2014-09-161-11/+4
| | | | problems. Also clean up fetch_url/post_url header option
* doco correctionfriendica2014-09-091-11/+5
|
* syntax error in dba driver, document z_post_urlfriendica2014-09-091-0/+29
|
* allow stuff with Diaspora authors to federate in zot conversations even if ↵friendica2014-09-041-1/+1
| | | | the local site has diaspora disabled. This way it won't look like folks are talking to themselves.
* feed removal issuefriendica2014-09-021-5/+7
|
* use feed title for channel name before checking author, make feed items ↵friendica2014-09-021-5/+7
| | | | shareable (they're private to the channel so they won't be shown in searches), try and handle Diaspora mentions a bit more elegantly. (Bug: we don't convert mentions to Diaspora's format on outbound at all!)
* use feed icon as default avatar for rss connectionsfriendica2014-09-011-2/+5
|
* rss feed discoveryfriendica2014-08-311-20/+162
|
* sort out some anomaliesfriendica2014-08-251-2/+3
|
* Add d* folks to address book. WARNING - DO NOT ATTEMPT THIS. LEAVE IT THE ↵friendica2014-08-241-292/+364
| | | | FRUCK ALONE until the feature is stable. I won't help you if you try this and end up with a borked site. You are completely on your own.
* diaspora discoveryfriendica2014-08-241-0/+113
|
* move Friendica photo migrator to addons, bring back a few XML scraping ↵friendica2014-08-201-1/+165
| | | | functions that we're going to require (unfortunately)
* some work on network discoveryfriendica2014-08-191-95/+149
|
* optionally allow zrl usage from specific markdown sourcesfriendica2014-07-011-9/+9
|
* logging: include target url when reporting z_fetch_url and z_post_url errors.friendica2014-05-271-4/+4
|
* This should be a slight improvement in setting ciphers - we'll punt on ↵friendica2014-03-251-8/+4
| | | | RedHat but open up the list just for openssl distros which seem to have all the problems at the moment.
* that should fix it.friendica2014-03-241-2/+2
|
* that didn't work out wellfriendica2014-03-241-2/+2
|
* ssl ciphers - be liberal in what we accept, conservative in what we generatefriendica2014-03-241-12/+24
|
* add curl error text to mod/probe so we can remotely diagnose communication ↵friendica2014-03-231-2/+4
| | | | issues from other sites.
* improve curl error loggingfriendica2014-03-231-1/+3
|
* clean up logger commands. Placed apostrophs at the end from some comments to ↵Michael Meer2014-01-301-8/+2
| | | | keep the syntax highlighting in vi working
* attempt with fix URL for testing worksMichael Meer2014-01-301-3/+9
|
* make default profile photo configurable - should be functional but needs ↵friendica2013-12-191-1/+1
| | | | admin ui
* htmspecialchars_decode only takes one argument.zottel2013-12-121-1/+1
|
* more htmlspecialchars sanitisationfriendica2013-12-121-1/+1
|
* some work on modularising the default profile photo so we can make them site ↵friendica2013-12-091-1/+1
| | | | selectable. Also red != friendica so we don't need all these friendica logos taking up space
* trimmed style.css by a few hundred lines. Needs many more such effortsfriendica2013-12-011-103/+0
|
* get rid of deprecated post_url() functionfriendica2013-12-011-102/+2
|
* get rid of fetch_url - post_url will be a bit harder as several plugins need ↵friendica2013-12-011-153/+5
| | | | to be updated
* deprecate a->get_curl_code() and $a->get_curl_headers()friendica2013-12-011-180/+12
|
* set default charset of email_header_encode, add ud_flags to indicate which ↵friendica2013-09-181-1/+1
| | | | (directory sync) updates have been processed in some way.
* z_fetch_url - include curl debug info in return array and log it (at ↵friendica2013-09-101-0/+10
| | | | | | logger_data level) on failure This should probably be at a lower log level, but unsuccessful connections could happen a lot on a busy production site so we'll try to keep the log noise down unless somebody really needs to track this info.
* make manual image scaling work - even if auto scaling kicks in.friendica2013-06-231-7/+13
|
* photo driver abstractionfriendica2013-04-251-2/+3
|
* odds and ends in prepearation for photo abstraction, plus red-to-friendica addonfriendica2013-04-251-25/+25
|
* turn all Red links into zrls (not the old zrls, the new bbcode zrl which ↵friendica2013-04-151-1/+1
| | | | means we can zidify them)
* more Friendica removalsfriendica2013-04-141-5/+4
|
* update manage table and some documentationfriendica2013-03-271-1/+30
|
* initial docofriendica2013-02-261-36/+49
|
* start formatting for Doxygenfriendica2013-02-251-1/+1
|
* more groundwork for channel importfriendica2013-02-141-16/+16
|
* use our own CA bundle as authoritative for backend communications. This ↵friendica2013-02-131-0/+9
| | | | avoids OS dependent CA validity mismatches.
* Tweak behavior of redirect for http codesOlaf Conradi2012-12-261-7/+6
| | | | | | | | | | | | Not every webserver supports 308 redirects with POST correctly. Most sites are already configured using 301 or 302 redirects. This only effects POST, GET behavior is unmodified. Most calls to POST are under control by friendica not the end user, so should not be a problem ni general. GET with 301, 302, 303, 307 and 308 are redirected as GET POST with 301, 302, 307 and 308 are redirected as POST POST with 303 is redirected as GET
* Same applies for 307Olaf Conradi2012-12-261-2/+3
| | | | 308 spec mentions 307 must not rewrite POST to GET
* POST redirects to POST on 308 onlyOlaf Conradi2012-12-261-2/+10
| | | | | POST redirects to POST on 308 only, 301-307 to GET. Side-effect is that POST params get dropped for GET.
* Add permanent redirect (308) http codeOlaf Conradi2012-12-261-5/+7
| | | | | | | Add 308 http code next to 301, 302, 303 and 307. Close curl session before returning on redirect. Let post_url redirect using post_url, not fetch_url (which is actually 308 behavior).
* More whitespace fixesOlaf Conradi2012-12-261-9/+9
|
* Fix whitespaceOlaf Conradi2012-12-261-9/+9
|