summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-06-24Have API methods for search subclass ApiPrivateAuthActionZach Copley
2010-06-24Regression fix for Recaptcha on SSL registration page; their API is served ↵Brion Vibber
on a different hostname for SSL.
2010-06-22- Add profile_info tag to Atom authorZach Copley
- Normalize xmlns:statusnet links in the API
2010-06-21quick-fix for localization typo per #2366 (also fixed upstream in translatewiki)Brion Vibber
2010-06-20RecaptchaPlugin: fix for missing captcha on iPhone/Android.Brion Vibber
MobileProfile serves pages out to iPhone and Android as application/xhtml+xml, which doesn't work with the default we we were loading recaptcha (as it used document.write). Switched to filling out a <div> from the AJAX API, which doesn't use document.write in the XHTML context. Tested that view & submission works ok in following browsers: Mobile: iPhone 3.1, Android 2.1, iPad 3.2 (this last doesn't trigger mobile theme tweaks) Ubuntu 10.04: Firefox 3.6.3, Chrome 6 Mac 10.6: Safari 5/OS X 10.6.4 Windows 7: IE 8, Opera 10.56
2010-06-18Catch a couple of missing XML namespace declarations on API XML output. ↵Brion Vibber
Missing NS declarations were breaking XML parsing for some clients since beaecb18d5b92b913473dfffd545dc436f50cf66
2010-06-17Include source client's related URL (if any) in source attribution forZach Copley
Atom notice feeds
2010-06-16Fix problem with AvatarLink in which it was sometimes leaving the width ↵Zach Copley
attribute empty
2010-06-16Merge branch 'master' of gitorious.org:statusnet/mainlineZach Copley
* 'master' of gitorious.org:statusnet/mainline: Switch OpenID server's redirects from 307 to 303 to avoid prompt for form data resubmission if we were sent here from a POST request, such as when verifying the site for the first time doing an OpenID login from Drupal.
2010-06-16- More useful group info from api/statusnet/group/showZach Copley
- Add statusnet:group_info tag to group Atom feeds
2010-06-16Switch OpenID server's redirects from 307 to 303 to avoid prompt for form ↵Brion Vibber
data resubmission if we were sent here from a POST request, such as when verifying the site for the first time doing an OpenID login from Drupal.
2010-06-14fix URL regex for tags to use UTF-8Evan Prodromou
2010-06-13admin panel for setting site-claim metadataEvan Prodromou
2010-06-13show site claim keys on top pageEvan Prodromou
2010-06-11Fix for DB error reporting in installer (MySQL path)Brion Vibber
2010-06-11Fix a couple bad format entries in router setup (format param had 'xmljson' ↵Brion Vibber
instead of 'xml|json'). Warning: the format strings aren't actually being enforced here which is probably why they weren't caught earlier. Not quite sure why, it should be looked at!
2010-06-10Ticket #2350: fix for incorrect FOAF sioc:follows entries for users who are ↵Brion Vibber
followed by, but don't themselves follow the user whose FOAF we're displaying.
2010-06-10Ticket #2349: fix for Geonames semantic reference URLs in FOAF output ↵Brion Vibber
(corrects a typo in the patch added in 4463768b)
2010-06-04Add gNewBook to notice sourcesZach Copley
2010-06-04Only show local public notices in sitemapEvan Prodromou
Only show local public notices in sitemap. Only do counts for them in the sitemap index, and only show them in the notice sitemap.
2010-06-04use DB_DataObject_Cast objects in a couple of different places in the codeEvan Prodromou
2010-06-04Merge branch 'master' of gitorious.org:statusnet/mainlineEvan Prodromou
2010-06-04memcache_dataobject supports some DB_DataObject_Cast objects as valuesEvan Prodromou
2010-06-03Add repeated attr to Atom notices_info elementZach Copley
2010-06-03Merge branch 'newmaster'Evan Prodromou
2010-06-03remove debug statements from Sitemap pluginEvan Prodromou
2010-06-03Merge branch 'sitemap' into newmasterEvan Prodromou
2010-06-03Merge branch 'master' of gitorious.org:statusnet/mainlineEvan Prodromou
2010-06-03- Fix bad argument being passed (error code) when invalid format specifiedZach Copley
- Reformat whitespace
2010-06-03Installer tweak to aid with IIS setup: if config.php exists, but is both ↵Brion Vibber
empty and writable, let the installer proceed and overwrite it.
2010-06-01Merge branch 'sitemap' of gitorious.org:~evan/statusnet/evans-mainline into ↵Evan Prodromou
sitemap Conflicts: plugins/Sitemap/SitemapPlugin.php plugins/Sitemap/noticesitemap.php plugins/Sitemap/sitemapindex.php plugins/Sitemap/usersitemap.php
2010-06-01Fix memory leak in Inbox::addToInbox() (usage of raw ↵Brion Vibber
DB_DataObject::staticGet, which leaks memory into a process-global cache). On my test setup, this fixes inbox delivery to 10,000 local recipients from background queuedaemon running with a 32mb memory limit, completes the job within a minute from start.
2010-06-01use sitemap_notice_count in sitemap indexEvan Prodromou
2010-06-01cache notice counts in utility tableEvan Prodromou
2010-06-01load Sitemap_notice_countEvan Prodromou
2010-06-01make user counts use the database tableEvan Prodromou
2010-06-01Database tables to cache expensive query dataEvan Prodromou
We need to bundle counts of notices and users by date. This can be expensive for large sites. So, new tables are added to cache the results of these queries, which don't change after the date is over.
2010-06-01mark user pages as being high priorityEvan Prodromou
2010-06-01mark notice pages as being archivedEvan Prodromou
2010-06-01note that sitemap actions are readonlyEvan Prodromou
2010-06-01add sitemap statement to robots.txtEvan Prodromou
2010-06-01cache notice and user counts in sitemap indexEvan Prodromou
2010-06-01make sure notice and user sitemap are 'in' top level directoryEvan Prodromou
2010-06-01cache user data for user sitemapEvan Prodromou
2010-06-01cache results of notice sitemap queryEvan Prodromou
2010-06-01use an array for notice sitemapEvan Prodromou
2010-06-01max users, notices per sitemap = 50KEvan Prodromou
2010-06-01show sitemapindex with user and notice sitemapsEvan Prodromou
2010-06-01Move NOTICES_PER_MAP to SitemapPluginEvan Prodromou
2010-06-01bundle users by reg dateEvan Prodromou