Age | Commit message (Collapse) | Author |
|
clicking user links.
User links using the ID number (such as created for @-replies) have been failing on Internet Explorer, since IE doesn't bother to actually say it supports text/html...
We usually get something like this from IE, up through at least IE 8:
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*
The */* ended up matching application/rdf+xml instead of text/html, so only other browsers which are more explicit would actually get sent on to the user profile/notice stream; IE visitors were directed on to the FOAF download. :(
Swapping the order of items in the server-side of the negotiation list fixes this; clients actually asking for FOAF at a higher priority than HTML will still get it, but the wildcard */* now matches text/html which is usually what we want.
Content negotiation for the user links was added August 2008 in commit 48fcfb8b0daeb272cb9d116af617daf15930d909.
|
|
This reverts commit 3f06bfc042e34ce97e1f1476faadb67fc5edd282.
|
|
doesn't like the XHR response with XHTML DTD. New notices without the
file attachment work fine.
The rendered content (the anchor for the file attachment link) doesn't
appear to be the issue.
To fix this problem, I removed the XHTML DTD line from newnotice's XHR
response. This is unnecessary for text/xml outputs that's intended
for XHR responses any way. It just happens to fix an IE issue.
Still a mystery to me as to why it is particular to notices with file
attachments.
|
|
|
|
Updated our API to match.
|
|
of empty notice prefix text in facebook settings.
Filed bug upstream at http://bugs.developers.facebook.com/show_bug.cgi?id=7110
Per documentation, saving a pref value of "" or "0" will delete the pref key:
http://wiki.developers.facebook.com/index.php/Data.setUserPreference
which used to do what we want... Now Facebook throws back an error
"Parameter value is required" when we do this. Workaround appends a
space to empty string or "0" at save time, then trims the string when
we load it.
The input string was already trimmed at pref save time, so this won't
alter any user-visible behavior.
Thanks to ^demon in #mediawiki for pointing out the behavior regression
after testing the identi.ca Facebook app!
|
|
Previously, the attachment URL would simply be dropped when shortening returned false instead of a short URL... the attachment was present if you clicked through to notice details but didn't appear in the timeline, making it nigh-impossible to see the attachment.
|
|
|
|
an array of search terms
|
|
|
|
|
|
bareauth.
|
|
statuses/friends_timeline to support apps trying to use the new retweet API method.
|
|
|
|
Fixes bug #1736.
|
|
|
|
Fixes http://status.net/trac/ticket/681
Sorry it took a year to accept this patch, dho :'-(
|
|
Fixes http://status.net/trac/ticket/1868
|
|
inclue 'inreplyto' id's. Also add 'inreplyto' to the urls sent in emails.
|
|
<strong>$term</strong>) when the term appears in an HTML attribute
Fixes http://status.net/trac/ticket/1852
|
|
|
|
control) on page onload.
Updated some of the pages to use autofocus.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Conflicts:
actions/twitterauthorization.php
lib/oauthclient.php
lib/twitter.php
lib/twitterapi.php
lib/twitteroauthclient.php
scripts/twitterstatusfetcher.php
|
|
|
|
|
|
|
|
|
|
|
|
For Example, let's say 'alias' was an alias for the group 'group'.
Previously, if you went to '/group/group' it'd work, but '/group/alias' it'd say "No Such Group".
This was untrue.
Now it checks aliases when it can't find a group with a given name.
If it finds one it redirects you to the original group.
|
|
|
|
http://laconi.ca/trac/ticket/1563
OpenSearch description info is now sent with correct Content-Type: application/opensearchdescription+xml instead of text/html.
|
|
This reverts commit 1b204fde39271acd38bb8f9dd16734f15c68138a.
|
|
This reverts commit 6c597eabecf2368224938a136d7ac588702bbfd7.
|
|
An empty list still exists; we should not return a 404 for empty lists.
This reverts commit 355effe6315ab7927a54f44fc9ce903085769b5f.
|
|
An empty list still exists; we shouldn't return a 404.
This reverts commit c29892c87573e0575b9a4a13210c562e08411148.
|
|
If $config['openid']['enabled'] is set to false, OpenID is removed from
the navigation and direct accesses to OpenID login pages redirect to the
login page.
If OpenID is enabled, $config['site']['openidonly'] is ignored, i.e.
OpenID is required to go OpenID-only.
|