Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-05 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Sarven Capadisli | |
2010-01-05 | Retain the geo data when FormNoticeXHR is complete because form gets | Sarven Capadisli | |
reset | |||
2010-01-05 | Remove input geo data as well | Sarven Capadisli | |
2010-01-05 | If user checked shared location but didn't enter their location, don't | Sarven Capadisli | |
show the checkbox | |||
2010-01-04 | Refactored NoticeLocationAttach(). It works better in UAs that don't | Sarven Capadisli | |
support Geolocation API. | |||
2010-01-04 | Exclude process-specific link & result cache references from serialized ↵ | Brion Vibber | |
Memcached_Data_Object instances. Should fix seemingly-random bugs due to destructor free()ing local resources by mistake. | |||
2010-01-04 | drop debug statement | Brion Vibber | |
2010-01-04 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |
2010-01-04 | XCachePlugin returns false value for cache miss | Evan Prodromou | |
2010-01-04 | cached id streams can be empty, compare against false | Evan Prodromou | |
2010-01-04 | carefully compare cached settings against false for Config | Evan Prodromou | |
2010-01-04 | Merge branch '2141' into 0.9.x | Brion Vibber | |
2010-01-04 | Memcached_DataObject stores empty values in the cache | Evan Prodromou | |
There's great value in knowing that something doesn't exist. We now cache this information, and carefully compare the results from cache as $results !== false instead of !empty($results), since some empty values (null, 0, empty array, empty string) are stored in the cache. Caching staticGet() and pkeyGet() now store DB misses in the cache, and cachedQuery() checks for empty results from the cache. | |||
2010-01-04 | default value for cache::get() changed from null to false | Evan Prodromou | |
2010-01-04 | Differentiate between empty values and cache misses in CacheLogPlugin | Evan Prodromou | |
2010-01-04 | Ticket 2141: bugs with weighted popularity lists across year boundary. | Brion Vibber | |
Consolidated several separate implementations of the same weighting algorithm into common_sql_weight() and fixed some bugs... For MySQL, now using timestampdiff() instead of subtraction for the comparison, so we get sane results when the year doesn't match, and utc_timestamp() rather than now() so we don't get negative ages for recent items with local server timezone. Unknown whether the same problems affect PostgreSQL, but note that it lacks the timestampdiff() SQL function. | |||
2010-01-04 | Add 'takeOverLogin' parameter for a real SSO feel | Craig Andrews | |
2010-01-04 | make compression threshold and min savings config attrs for MemcachePlugin | Evan Prodromou | |
2010-01-04 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |
2010-01-04 | Stop caching unfindable keys | Evan Prodromou | |
There were some problems with the automated cache/uncache system for data objects that made us cache unfindable keys (with null attributes and sometimes null names). Fixed those problems and refactored the encache() and decache() methods so they use a helper to find the cache keys to use. | |||
2010-01-04 | user_id is a non-autoincrement pkey for user_location_prefs | Evan Prodromou | |
2010-01-04 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |
2010-01-04 | Drop the overly-prominent link to checklibs display; it's unnecessary and ↵ | Brion Vibber | |
just confuses people. The ability's still there to aid in debugging, but it won't be tempting people to click on it. | |||
2010-01-04 | Don't spew notices when building tag cloud if there is no popularity sum to ↵ | Brion Vibber | |
divide by. | |||
2010-01-04 | Allow an authentication plugin with the same provider_name other than the ↵ | Craig Andrews | |
one that actually checked the password to autoregister a user Allows for SSO-type plugins that don't have any information about the user other than their username to do autoregistration | |||
2010-01-04 | Fix for auto_increment parameter in auto-created tables via checkschema. | Brion Vibber | |
Update FeedSub plugin for non-Plugin_DataObject setup and working checkschema updates. | |||
2010-01-04 | Enable memcache automatic compression, starting at 20k and only if ↵ | Craig Andrews | |
compression gain is greater than 20%. Allows storage of larger objects (over 1mb in size uncompressed), such as huge LDAP schemas. Should also improve cache efficiency (allows more stuff to be stored in same memory) and reduce network latency (less data transfer) (redo commit 1e9c03e1993b5d2978ac4c5213a8a64e0150b4a2 which was apparently lost during pluginization) | |||
2010-01-04 | Ran NoticeLocationAttach() through jslint | Sarven Capadisli | |
2010-01-04 | Removed unneeded line-height | Sarven Capadisli | |
2010-01-04 | Removed comma | Sarven Capadisli | |
2010-01-04 | Relocated @title removal | Sarven Capadisli | |
2010-01-04 | Updated element id for notice_data-geo | Sarven Capadisli | |
2010-01-04 | Refactored geo location removal to removeNoticeDataGeo() | Sarven Capadisli | |
2010-01-04 | Added errorCallback() to geoCurrentPosition() i.e., if user doesn't | Sarven Capadisli | |
grant permission, removes the Geo processing and (if any) existing geo location data from notice form. | |||
2010-01-04 | Trim whitespace from label's textContent | Sarven Capadisli | |
2010-01-04 | Using object value instead of inline string | Sarven Capadisli | |
2010-01-04 | Open geoname URL in a new window | Sarven Capadisli | |
2010-01-03 | Remove logging from default cache | Evan Prodromou | |
2010-01-03 | Debug utility to log cache access | Evan Prodromou | |
2010-01-03 | don't try to set an expiry for XCache | Evan Prodromou | |
2010-01-03 | add keyTypes() for User_greeting_count | Evan Prodromou | |
2010-01-03 | Revert "use keys() instead of keyTypes() so plugin data object work" | Evan Prodromou | |
This reverts commit ec380887f71a1eadc75bad0289f9a0dbee7f2913. | |||
2010-01-03 | update SamplePlugin.php also | Evan Prodromou | |
2010-01-03 | Expand SamplePlugin to show other best practices | Evan Prodromou | |
I modified the SamplePlugin to show how to do some real processing, adding a data class and an action class and modifying the main menu to link to the new action. I added documentation comments to all the methods and made sure the modules were PHPCS-clean. | |||
2010-01-03 | use keys() instead of keyTypes() so plugin data object work | Evan Prodromou | |
2010-01-03 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |
2010-01-03 | First version of cache plugin for XCache variable cache | Evan Prodromou | |
2010-01-03 | Localisation updates for !StatusNet from !translatewiki.net !sntrans | Siebrand Mazeland | |
2010-01-02 | add LGPL | Evan Prodromou | |
2010-01-02 | Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |