summaryrefslogtreecommitdiff
path: root/actions
AgeCommit message (Collapse)Author
2009-11-19Added fieldsets for site admin pageSarven Capadisli
2009-11-19Merge branch 'admin-sections/3' into 0.9.xZach Copley
* admin-sections/3: Added locales_path to site admin panel Site admin panel mostly done. Still need to add CC license chooser.
2009-11-19Added locales_path to site admin panelZach Copley
2009-11-19Site admin panel mostly done. Still need to add CC license chooser.Zach Copley
2009-11-19Updated markup and style for design admin fieldsetsSarven Capadisli
2009-11-18Merge branch 'admin-sections/2' into 0.9.xZach Copley
* admin-sections/2: Design admin panel mostly done.
2009-11-18Design admin panel mostly done.Zach Copley
2009-11-18Check profile->update() result against false exactly; we may legitimately ↵Brion Vibber
get 0 back if no rows were changed. DB objects normally would return true, but the comparisons aren't 100% reliable when we've got numbers which could be ints or strings or floats. Caused failures saving profile settings with Geonames plugin enabled; the lat/lon/id fields would get re-set with freshly looked up values which no longer matched the previous values as far as the data object could tell, but which saved as the same ol' numbers.
2009-11-18Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.xCraig Andrews
2009-11-18Should not canonicalize nickname before calling common_check_userCraig Andrews
2009-11-18Consolidate group creation into static function in User_groupEric Helgeson
2009-11-18Improve the not authorized error messageCraig Andrews
2009-11-18Notice: Undefined variable: source in actions/apistatusesupdate.php on line 88Brion Vibber
2009-11-18Updated admin design form markupSarven Capadisli
2009-11-18First draft of the admin panel for site designZach Copley
2009-11-17Get rid of empty select in theme dropdownZach Copley
2009-11-17Added form_data classSarven Capadisli
2009-11-17Updated admin forms to use form_settings stylesSarven Capadisli
2009-11-17more snapshot stuff in siteadminpanelEvan Prodromou
2009-11-17add private flag back into site admin panelEvan Prodromou
2009-11-17Merge branch '0.9.x' into adminpanelEvan Prodromou
Conflicts: classes/User.php
2009-11-17Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
Conflicts: classes/statusnet.ini
2009-11-16Bug 1655/bug 1905: fix for Internet Explorer receiving FOAF output when ↵Brion Vibber
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.
2009-11-16Consistant error for groups that dont exist in APIEric Helgeson
2009-11-16DeleteUserActionEvan Prodromou
2009-11-16make block action use ProfileFormAction superclassEvan Prodromou
2009-11-16add sandbox and silence actionsEvan Prodromou
2009-11-16make block actions use profileformaction superclassEvan Prodromou
2009-11-15Move some user-related stuff to useradminpanel from siteadminpanelEvan Prodromou
2009-11-15add panels.txt to remember what to add whereEvan Prodromou
2009-11-12Added a User_username table that links the external username with a ↵Craig Andrews
StatusNet user_id Added EmailAuthenticationPlugin Added ReverseUsernameAuthenticationPlugin Changed the StartChangePassword and EndChangePassword events to take a user, instead of a nickname User::allowed_nickname was declared non-static, but used as if it was static, so I made the declaration static
2009-11-12A further change to the XRDS is required if 0.9.x is to be able to remote ↵Ciaran Gultnieks
sub to a 0.8.x account, with the OpenID plugin enabled.
2009-11-12Some more XRDS fixes. With this and the previous commit, remote subs seem to ↵Ciaran Gultnieks
work. Otherwise they don't.
2009-11-12Wrong XRDS service type for OMB was being supplied. Wrong since commit ↵Ciaran Gultnieks
54696f7c I think
2009-11-11initialize these variables before use to prevent warningsCraig Andrews
2009-11-11Do not show the URL shortener selection drop down if no shorteners are availableCraig Andrews
2009-11-11Redid how URL shorteners work. This way is much more like how Evan wants ↵Craig Andrews
events to work (and more like how the rest of SN works).
2009-11-11Merge branch '0.9.x' of git://gitorious.org/statusnet/mainline into 0.9.xSiebrand Mazeland
2009-11-11Remove double space in messageSiebrand Mazeland
2009-11-11store boolean values correctly in siteadminpanelEvan Prodromou
2009-11-11Add design admin panelEvan Prodromou
2009-11-11use <li>s in form data for site admin panelEvan Prodromou
2009-11-11Merge branch '0.9.x' into adminpanelEvan Prodromou
2009-11-10Merge branch '0.9.x' into finish-account-apiZach Copley
* 0.9.x: Added a events for the settings menu items Bringing Sphinx search support up to code: broken out to a plugin, now supports multiple sites on a single server. Changed to Evan's event style and added an AuthPlugin superclass add geo output to statuses in json, xml, atom, rss in API Localisation updates from translatewiki.net (2009-11-10) Localisation updates from translatewiki.net Update pot add lat and long parameters to api/statuses/update change credential check to work more like other events fixup output of object attributes in db error code Performance fix for subscription/subscriber lists based on feedback from ops. Adjusting indexes to make favorites query more efficient, based on feedback from ops. Revert untested code; spews PHP notice warnings on every page view: "just sent a http 200 for the check-fancy from install.php" Added hook for the Group navigation items Updated block @title text (shouldn't say from group) Updated group block markup Revert "Remove more contractions"
2009-11-10Added some notes in the commentsZach Copley
2009-11-10Implement /api/account/update_delivery_device.formatZach Copley
2009-11-10Bringing Sphinx search support up to code: broken out to a plugin, now ↵Brion Vibber
supports multiple sites on a single server. Upgrade notes: * Index names have changed from hardcoded 'Identica_people' and 'Identica_notices' to use the database name and actual table names. Must reindex. New events: * GetSearchEngine to override default search engine class selection from plugins New scripts: * gen_config.php generates a sphinx.conf from database configuration (with theoretical support for status_network table, but it doesn't seem to be cleanly queriable right now without knowing the db setup info for that. Needs generalized support.) * Replaced old sphinx-indexer.sh and sphinx-cron.sh with index_update.php Other fixes: * sphinx.conf.sample better matches our live config, skipping unused stopword list and using a more realistic indexer memory limit Further notes: * Probably doesn't work right with PostgreSQL yet; Sphinx can pull from PG but the extraction queries currently look like they use some MySQL-specific functions.
2009-11-10Changed to Evan's event style and added an AuthPlugin superclassCraig Andrews
2009-11-10Merge branch '0.9.x' into adminpanelEvan Prodromou
2009-11-10add lat and long parameters to api/statuses/updateEvan Prodromou