]> git.mxchange.org Git - quix0rs-gnu-social.git/log
quix0rs-gnu-social.git
13 years agoMake new menu the default menu
Evan Prodromou [Sun, 23 Jan 2011 17:35:35 +0000 (12:35 -0500)]
Make new menu the default menu

There's a new menu layout in this version of the software. It was
implemented as a plugin in 0.9.x to avoid clashes with existing themes,
but we're going to break that compatibility in this version, so we're just going for it.

This change involved moving all the changes in NewMenuPlugin into the
default code that was calling it. In addition, since
accountsettingsaction and connectsettingsaction differed only by menu,
I removed them, changed all references to them to the settingsmenu, and moved
the combined nav to its own class.

Let's put that episode behind us.

The CSS shim that was loaded by NewMenuPlugin for certain themes and certain actions
was removed.

13 years agodocument that nickname 'panel' no longer allowed
Evan Prodromou [Sun, 23 Jan 2011 15:26:28 +0000 (10:26 -0500)]
document that nickname 'panel' no longer allowed

13 years agomake 'admin' a safe user name
Evan Prodromou [Sun, 23 Jan 2011 15:18:35 +0000 (10:18 -0500)]
make 'admin' a safe user name

'admin' is a pretty common username that people try when installing;
it was blacklisted because all of our admin panels were at /admin/*,
which would conflict with the admin user's namespace.

Changed the location of all admin panels to /panel/*, blacklisted the
nickname 'panel', and allowed 'admin'. Tested with a fresh install;
seems to work great.

13 years agoremove dt/dd pairs for license blocks
Evan Prodromou [Fri, 14 Jan 2011 20:56:25 +0000 (15:56 -0500)]
remove dt/dd pairs for license blocks

13 years agosome fixes for new no-dl layout
Evan Prodromou [Fri, 14 Jan 2011 20:53:02 +0000 (15:53 -0500)]
some fixes for new no-dl layout

13 years agoremove extraneous <dl> and <dt> tags
Evan Prodromou [Fri, 14 Jan 2011 20:36:06 +0000 (15:36 -0500)]
remove extraneous <dl> and <dt> tags

13 years agoUpdate version number and codename
Evan Prodromou [Wed, 12 Jan 2011 23:14:57 +0000 (18:14 -0500)]
Update version number and codename

13 years agoMerge branch '0.9.x' into 1.0.x
Evan Prodromou [Wed, 12 Jan 2011 23:05:56 +0000 (18:05 -0500)]
Merge branch '0.9.x' into 1.0.x

Conflicts:
README

13 years agoMerge remote branch 'gitorious/0.9.x' into 0.9.x
Evan Prodromou [Mon, 10 Jan 2011 19:59:51 +0000 (14:59 -0500)]
Merge remote branch 'gitorious/0.9.x' into 0.9.x

13 years agoMerge branch 'newmenuplugin' into 0.9.x
Evan Prodromou [Sat, 8 Jan 2011 00:28:25 +0000 (19:28 -0500)]
Merge branch 'newmenuplugin' into 0.9.x

13 years agoremove help link; Everyone => Public; Logo goes home
Evan Prodromou [Sat, 8 Jan 2011 00:27:59 +0000 (19:27 -0500)]
remove help link; Everyone => Public; Logo goes home

13 years agoShow some menu fixup for settings for some themes
Evan Prodromou [Sat, 8 Jan 2011 00:22:27 +0000 (19:22 -0500)]
Show some menu fixup for settings for some themes

13 years agochange 'Everyone' to 'Public'
Evan Prodromou [Fri, 7 Jan 2011 23:57:34 +0000 (18:57 -0500)]
change 'Everyone' to 'Public'

13 years agocombine account and connect menus
Evan Prodromou [Fri, 7 Jan 2011 23:56:18 +0000 (18:56 -0500)]
combine account and connect menus

13 years agoAdded Start/EndRegistrationTry events to Facebook Bridge's user registration
Zach Copley [Thu, 6 Jan 2011 20:15:59 +0000 (12:15 -0800)]
Added Start/EndRegistrationTry events to Facebook Bridge's user registration

13 years agoAdd README with intallation/upgrade instructions to the Facebook Bridge plugin
Zach Copley [Wed, 5 Jan 2011 23:34:10 +0000 (15:34 -0800)]
Add README with intallation/upgrade instructions to the Facebook Bridge plugin

13 years agomove profile to subgroupnav
Evan Prodromou [Wed, 5 Jan 2011 19:24:24 +0000 (11:24 -0800)]
move profile to subgroupnav

13 years agoAdd Dialog Axiata to SMS carriers
Craig Andrews [Wed, 5 Jan 2011 18:13:45 +0000 (13:13 -0500)]
Add Dialog Axiata to SMS carriers

13 years agoRemove json2 author's "don't hotlink my script pls" alert line from our local copy...
Brion Vibber [Wed, 5 Jan 2011 17:39:36 +0000 (09:39 -0800)]
Remove json2 author's "don't hotlink my script pls" alert line from our local copy of json2.js :D
Added json2.min.js to the makefile so it can be updated easily when json2.js changes.

13 years agonew menu layout plugin
Evan Prodromou [Wed, 5 Jan 2011 03:32:36 +0000 (19:32 -0800)]
new menu layout plugin

13 years agochange bookmark-info from a <p> to a <div>
Evan Prodromou [Tue, 4 Jan 2011 21:10:32 +0000 (13:10 -0800)]
change bookmark-info from a <p> to a <div>

13 years agoFix ticket #2181: Can't save #000000 (black) in color fields on design page
Brion Vibber [Tue, 4 Jan 2011 21:09:44 +0000 (13:09 -0800)]
Fix ticket #2181: Can't save #000000 (black) in color fields on design page

It seems to have actually been saving correctly, but the update of the colors on the form success page wasn't working properly.
When a design object is pulled out of the database, the numeric fields are read in as strings, so black comes back as "0".
But, when we populate the new object and then stick it live, we've populated it with actual integers; with memcache on these might live for a while in the cache...

The fallback code in Design::toWebColor() did a check ($color == null) which would be false for the string "0", but counts as true for the *integer* 0.
Thus, the display code would initially interpret the correctly-saved black color as "use default".

Changing the check to === against null and "" empty string avoids the false positive on integers, and lets us see our nice black text immediately after save.

13 years agoMerge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x
Brion Vibber [Tue, 4 Jan 2011 20:14:08 +0000 (12:14 -0800)]
Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x

13 years agoTicket #2649: fix for undefined $base_url in lighttpd code path
Brion Vibber [Tue, 4 Jan 2011 20:04:11 +0000 (12:04 -0800)]
Ticket #2649: fix for undefined $base_url in lighttpd code path

The $base_url var is never defined, and the code has actually always been wrong since it was added.
Just removing it seems to work fine :)

13 years agoTypo fix: http://status.net/open-source/issues/2976
Brion Vibber [Tue, 4 Jan 2011 19:03:42 +0000 (11:03 -0800)]
Typo fix: http://status.net/open-source/issues/2976

13 years agoMerge branch 'revertversion' into 0.9.x
Evan Prodromou [Mon, 3 Jan 2011 18:51:42 +0000 (10:51 -0800)]
Merge branch 'revertversion' into 0.9.x

13 years agoRevert "0.9.7alpha1"
Evan Prodromou [Mon, 3 Jan 2011 18:51:29 +0000 (10:51 -0800)]
Revert "0.9.7alpha1"

This reverts commit 3d62c1cf5114760c0a7b97cd69ba363ac059e215.

13 years agoConfiguration options for using an HTTP proxy
Evan Prodromou [Mon, 3 Jan 2011 18:38:32 +0000 (10:38 -0800)]
Configuration options for using an HTTP proxy

We can make a lot of HTTP requests from the server side. This change
adds some configuration options for using an HTTP proxy, which can
cache hits from multiple sites (good for status.net-like services, for example).

13 years agoBookmark plugin: tweak post-upload success message to distinguish between "already...
Brion Vibber [Fri, 31 Dec 2010 20:42:26 +0000 (12:42 -0800)]
Bookmark plugin: tweak post-upload success message to distinguish between "already done" (UnQueueManager) and "started, should finish eventually" (other queue manager)

13 years agoBookmark plugin: fix for delicious import with queues enabled
Brion Vibber [Fri, 31 Dec 2010 20:33:51 +0000 (12:33 -0800)]
Bookmark plugin: fix for delicious import with queues enabled

We were passing DOM nodes directly into the queues for the final bookmark import stage; unfortunately these don't actually survive serialization.
Moved the extraction of properties from the HTML up to the first-stage handler, so now we don't have to worry about moving DOM nodes from one handler to the next. Instead passing an associative array of properties, which is fed into the Bookmark::saveNew by the per-bookmark handler.

13 years agoBookmark plugin: fixes for bad DOM element nesting in delicious import data
Brion Vibber [Fri, 31 Dec 2010 20:09:54 +0000 (12:09 -0800)]
Bookmark plugin: fixes for bad DOM element nesting in delicious import data

delicious bookmark exports use the godawful HTML bookmark file format that ancient versions of Netscape used (and has thus been the common import/export format for bookmarks since the dark ages of the web :)
This arranges bookmark entries as an HTML definition list, using a lot of implied close tags (leaving off the </dt> and </dd>).
DOMDocument->loadHTML() uses libxml2's HTML mode, which generally does ok with muddling through things but apparently is really, really bad about handling those implied close tags.

Sequences of adjacent <dt> elements (eg bookmark without a description, followed by another bookmark "<dt><dt>"), end up interpreted as nested ("<dt><dt></dt></dt>") instead of as siblings ("<dt></dt><dt></dt>").
The first round of code tried to resolve the nesting inline, but ended up a bit funky in places.
I've replaced this with a standalone run through the data to re-order the elements, based on our knowing that <dt> and <dd> cannot directly contain one another; once that's done, our main logic loop can be a bit cleaner. I'm not 100% sure it's doing nested sublists correctly, but these don't seem to show up in delicious export (and even if they do, with the way we flatten the input it shouldn't make a difference).

Also fixed a clearer edge case where some bookmarks didn't get imported when missing descriptions.

13 years agoBookmark plugin: graceful error out for failure to import a delicious bookmark due...
Brion Vibber [Fri, 31 Dec 2010 20:09:15 +0000 (12:09 -0800)]
Bookmark plugin: graceful error out for failure to import a delicious bookmark due to it being already bookmarked

13 years agoFix up edge case in nickname processing: overlong display forms should be rejected...
Brion Vibber [Fri, 31 Dec 2010 01:11:16 +0000 (17:11 -0800)]
Fix up edge case in nickname processing: overlong display forms should be rejected before normalization (storage of display forms will also have fields with limited length)

13 years agoGenerated an extra class on bookmark notice <li>s
Evan Prodromou [Fri, 31 Dec 2010 00:57:28 +0000 (16:57 -0800)]
Generated an extra class on bookmark notice <li>s

13 years agoEvents to hook for NoticeListElement <li> generation
Evan Prodromou [Fri, 31 Dec 2010 00:57:05 +0000 (16:57 -0800)]
Events to hook for NoticeListElement <li> generation

13 years agoswitch bookmark CSS classes to use dash instead of underscore
Evan Prodromou [Fri, 31 Dec 2010 00:54:01 +0000 (16:54 -0800)]
switch bookmark CSS classes to use dash instead of underscore

13 years agoMerge branch 'testing' of gitorious.org:statusnet/mainline into testing
Evan Prodromou [Fri, 31 Dec 2010 00:21:45 +0000 (16:21 -0800)]
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing

13 years agodon't show some bookmark elements if empty
Evan Prodromou [Fri, 31 Dec 2010 00:21:22 +0000 (16:21 -0800)]
don't show some bookmark elements if empty

13 years agoTweak the post-form return on bookmarklet if we're not in a popup that we can close
Brion Vibber [Fri, 31 Dec 2010 00:14:41 +0000 (16:14 -0800)]
Tweak the post-form return on bookmarklet if we're not in a popup that we can close

13 years agoMerge remote branch 'gitorious/0.9.x' into 1.0.x
Evan Prodromou [Thu, 30 Dec 2010 23:52:08 +0000 (15:52 -0800)]
Merge remote branch 'gitorious/0.9.x' into 1.0.x

Conflicts:
lib/common.php

13 years agoMake sure the UUIDs are unique too :)
Brion Vibber [Thu, 30 Dec 2010 21:37:05 +0000 (13:37 -0800)]
Make sure the UUIDs are unique too :)

13 years agoUpdate ActivityCreationTests for our switch away from the obsolete <activity:actor>
Brion Vibber [Thu, 30 Dec 2010 21:21:59 +0000 (13:21 -0800)]
Update ActivityCreationTests for our switch away from the obsolete <activity:actor>

13 years agoUse UUIDs for Bookmark unique ID
Evan Prodromou [Thu, 30 Dec 2010 21:21:14 +0000 (13:21 -0800)]
Use UUIDs for Bookmark unique ID

I was trying to generate URIs for Bookmarks based on (profile, crc32(url), created).

I failed at that. CRC32s are unsigned ints, and our schema code didn't like that.

On top of that, my code to encode and restore created timestamps was problematic.

So, I switched back to using a meaningless unique ID for Bookmarks.

One way to do this would be to use an auto-incrementing integer ID. However, we've been
kind of crabbed out a few times for exposing auto-incrementing integer IDs as URIs, so
I thought maybe using a random UUID would be a better way to do it.

So, this patch sets random UUIDs for URIs of bookmarks.

13 years agoUUID-generation tools
Evan Prodromou [Thu, 30 Dec 2010 20:15:34 +0000 (12:15 -0800)]
UUID-generation tools

13 years agoversion 0.9.8dev
Evan Prodromou [Thu, 30 Dec 2010 00:18:43 +0000 (16:18 -0800)]
version 0.9.8dev

13 years ago0.9.7alpha1
Evan Prodromou [Thu, 30 Dec 2010 00:15:57 +0000 (16:15 -0800)]
0.9.7alpha1

13 years agoupdate version to 0.9.7
Evan Prodromou [Thu, 30 Dec 2010 00:14:00 +0000 (16:14 -0800)]
update version to 0.9.7

13 years agoShow <activity:subject> in Atom group notice feed
Evan Prodromou [Wed, 29 Dec 2010 23:33:57 +0000 (15:33 -0800)]
Show <activity:subject> in Atom group notice feed

Version 0.9.6 and below of StatusNet assume anything in <author> is a
Person. So, we include an <activity:subject> element, which will be
checked first by those versions of the code, only for group feeds.

At some point we'll take this out, but it's useful for now.

13 years agoMerge branch '0.9.x' into noactor
Evan Prodromou [Wed, 29 Dec 2010 23:29:29 +0000 (15:29 -0800)]
Merge branch '0.9.x' into noactor

13 years agoMerge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
Evan Prodromou [Wed, 29 Dec 2010 22:53:38 +0000 (14:53 -0800)]
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x

13 years agodon't distribute when restoring archived delicious bookmarks
Evan Prodromou [Wed, 29 Dec 2010 22:52:43 +0000 (14:52 -0800)]
don't distribute when restoring archived delicious bookmarks

13 years agophpcs showbookmark.php
Evan Prodromou [Wed, 29 Dec 2010 22:24:30 +0000 (14:24 -0800)]
phpcs showbookmark.php

13 years agophpcs noticebyurl.php
Evan Prodromou [Wed, 29 Dec 2010 22:22:41 +0000 (14:22 -0800)]
phpcs noticebyurl.php

13 years agophpcs importdelicious.php
Evan Prodromou [Wed, 29 Dec 2010 22:21:25 +0000 (14:21 -0800)]
phpcs importdelicious.php

13 years agophpcs Bookmark.php
Evan Prodromou [Wed, 29 Dec 2010 22:17:32 +0000 (14:17 -0800)]
phpcs Bookmark.php

13 years agophpcs BookmarkPlugin.php
Evan Prodromou [Wed, 29 Dec 2010 22:16:15 +0000 (14:16 -0800)]
phpcs BookmarkPlugin.php

13 years agoAdd link to delicious bookmark importer to profile settings
Evan Prodromou [Wed, 29 Dec 2010 22:02:31 +0000 (14:02 -0800)]
Add link to delicious bookmark importer to profile settings

13 years agoadd hooks for the account-management tools
Evan Prodromou [Wed, 29 Dec 2010 22:02:04 +0000 (14:02 -0800)]
add hooks for the account-management tools

13 years agoWeb UI for importing delicious backup files
Evan Prodromou [Wed, 29 Dec 2010 21:51:59 +0000 (13:51 -0800)]
Web UI for importing delicious backup files

13 years agoBad method call in File_to_post
Evan Prodromou [Wed, 29 Dec 2010 21:28:32 +0000 (13:28 -0800)]
Bad method call in File_to_post

13 years agofixup date handling in showbookmark for PHP 5.2
Evan Prodromou [Tue, 28 Dec 2010 23:36:25 +0000 (23:36 +0000)]
fixup date handling in showbookmark for PHP 5.2

13 years agoshow count of other bookmarks with link to stream
Evan Prodromou [Tue, 28 Dec 2010 21:45:24 +0000 (13:45 -0800)]
show count of other bookmarks with link to stream

13 years agomethod to count notices linking to an URL
Evan Prodromou [Tue, 28 Dec 2010 21:44:49 +0000 (13:44 -0800)]
method to count notices linking to an URL

13 years agoDelete file links when Notice is deleted
Evan Prodromou [Tue, 28 Dec 2010 21:44:18 +0000 (13:44 -0800)]
Delete file links when Notice is deleted

13 years agoMerge branch '0.9.x' into socialbookmark
Evan Prodromou [Tue, 28 Dec 2010 21:42:44 +0000 (13:42 -0800)]
Merge branch '0.9.x' into socialbookmark

13 years agoPage with a list of notices that link to an URL
Evan Prodromou [Tue, 28 Dec 2010 20:58:10 +0000 (12:58 -0800)]
Page with a list of notices that link to an URL

13 years agoFixes from testing File::stream()
Evan Prodromou [Tue, 28 Dec 2010 20:57:31 +0000 (12:57 -0800)]
Fixes from testing File::stream()

13 years agoStream of notices linking to an URL
Evan Prodromou [Tue, 28 Dec 2010 19:58:55 +0000 (11:58 -0800)]
Stream of notices linking to an URL

13 years agoMerge branch '0.9.x' into 1.0.x
Brion Vibber [Tue, 28 Dec 2010 19:38:34 +0000 (11:38 -0800)]
Merge branch '0.9.x' into 1.0.x

13 years agoMerge branch 'master' into 0.9.x
Brion Vibber [Tue, 28 Dec 2010 19:37:38 +0000 (11:37 -0800)]
Merge branch 'master' into 0.9.x

13 years agoPrevent group creation by silenced users.
Brion Vibber [Tue, 28 Dec 2010 19:34:02 +0000 (11:34 -0800)]
Prevent group creation by silenced users.

* adds Right::CREATEGROUP
* logic in Profile::hasRight() checks for silencing
* NewgroupAction checks for the permission before letting you see or process the form in the UI
* User_group::register() logic does a low-level check on the specified initial group admin, and rejects creation if that user doesn't have the right; guaranteeing that API methods etc will also have this restriction applied sensibly.

13 years agoIf notice has been deleted before, don't store URI again
Evan Prodromou [Tue, 28 Dec 2010 06:58:13 +0000 (22:58 -0800)]
If notice has been deleted before, don't store URI again

13 years agoimport bookmarks from backups
Evan Prodromou [Tue, 28 Dec 2010 06:57:35 +0000 (22:57 -0800)]
import bookmarks from backups

13 years agoDon't double-insert a bookmark
Evan Prodromou [Tue, 28 Dec 2010 06:57:11 +0000 (22:57 -0800)]
Don't double-insert a bookmark

13 years agoMerge branch '0.9.x' into socialbookmark
Evan Prodromou [Tue, 28 Dec 2010 06:38:36 +0000 (22:38 -0800)]
Merge branch '0.9.x' into socialbookmark

13 years agodocument events for activity import
Evan Prodromou [Tue, 28 Dec 2010 06:37:34 +0000 (22:37 -0800)]
document events for activity import

13 years agopass through $idField and $createdField in Notice queries
Evan Prodromou [Tue, 28 Dec 2010 06:35:57 +0000 (22:35 -0800)]
pass through $idField and $createdField in Notice queries

13 years agoadd events for restoring activities
Evan Prodromou [Tue, 28 Dec 2010 06:28:20 +0000 (22:28 -0800)]
add events for restoring activities

13 years agoreturn saved notice to AtomPub for Bookmarks
Evan Prodromou [Tue, 28 Dec 2010 06:16:34 +0000 (22:16 -0800)]
return saved notice to AtomPub for Bookmarks

13 years agoMerge branch '0.9.x' into socialbookmark
Evan Prodromou [Tue, 28 Dec 2010 06:13:23 +0000 (22:13 -0800)]
Merge branch '0.9.x' into socialbookmark

13 years agoDocumentation for change in atompub events
Evan Prodromou [Tue, 28 Dec 2010 06:13:17 +0000 (22:13 -0800)]
Documentation for change in atompub events

13 years agoinclude saved notice in atompub events
Evan Prodromou [Tue, 28 Dec 2010 06:11:30 +0000 (22:11 -0800)]
include saved notice in atompub events

13 years agoMake AtomPub work for bookmarks
Evan Prodromou [Tue, 28 Dec 2010 06:09:29 +0000 (22:09 -0800)]
Make AtomPub work for bookmarks

13 years agoMerge branch '0.9.x' into socialbookmark
Evan Prodromou [Tue, 28 Dec 2010 04:49:31 +0000 (20:49 -0800)]
Merge branch '0.9.x' into socialbookmark

13 years agoAdd a user parameter to atom pub api events
Evan Prodromou [Tue, 28 Dec 2010 04:49:08 +0000 (20:49 -0800)]
Add a user parameter to atom pub api events

13 years agoBetter UI for bookmark popup
Evan Prodromou [Mon, 27 Dec 2010 20:57:03 +0000 (12:57 -0800)]
Better UI for bookmark popup

13 years agobetter layout for single-bookmark page
Evan Prodromou [Mon, 27 Dec 2010 20:08:55 +0000 (12:08 -0800)]
better layout for single-bookmark page

13 years agosend and receive bookmarks by Salmon
Evan Prodromou [Mon, 27 Dec 2010 19:29:16 +0000 (11:29 -0800)]
send and receive bookmarks by Salmon

13 years agoNew event for Salmon including target
Evan Prodromou [Mon, 27 Dec 2010 18:51:59 +0000 (10:51 -0800)]
New event for Salmon including target

13 years agoBetter job making an ActivityObject from an <atom:author>
Evan Prodromou [Mon, 27 Dec 2010 18:19:51 +0000 (10:19 -0800)]
Better job making an ActivityObject from an <atom:author>

13 years agoStop using <activity:subject> for atom feeds
Evan Prodromou [Mon, 27 Dec 2010 18:03:34 +0000 (10:03 -0800)]
Stop using <activity:subject> for atom feeds

13 years agoUse outputTo() instead of asString() for including sub-elements
Evan Prodromou [Mon, 27 Dec 2010 17:46:25 +0000 (09:46 -0800)]
Use outputTo() instead of asString() for including sub-elements

13 years agoDon't output deprecated <activity:actor> element
Evan Prodromou [Mon, 27 Dec 2010 17:25:26 +0000 (09:25 -0800)]
Don't output deprecated <activity:actor> element

13 years agoFix bookmark replies handling so doesn't overwrite
Evan Prodromou [Mon, 27 Dec 2010 17:14:11 +0000 (09:14 -0800)]
Fix bookmark replies handling so doesn't overwrite

13 years agoreplace call to protected Ostatus_profile method
Evan Prodromou [Mon, 27 Dec 2010 05:38:28 +0000 (21:38 -0800)]
replace call to protected Ostatus_profile method

13 years agoFix bugs in BookmarkPlugin
Evan Prodromou [Mon, 27 Dec 2010 05:25:26 +0000 (21:25 -0800)]
Fix bugs in BookmarkPlugin

13 years agoSome fixes from debugging of bookmark plugin URI foramt
Evan Prodromou [Mon, 27 Dec 2010 05:11:27 +0000 (21:11 -0800)]
Some fixes from debugging of bookmark plugin URI foramt

Tightened up the URI format, fixed some auto-loading issues,
and forced the url_crc32 column to be unsigned.

13 years agoremove debugging outputter from delicious backup importer
Evan Prodromou [Mon, 27 Dec 2010 05:10:54 +0000 (21:10 -0800)]
remove debugging outputter from delicious backup importer

13 years agoUTC only and tighter date format for showbookmark
Evan Prodromou [Mon, 27 Dec 2010 05:10:23 +0000 (21:10 -0800)]
UTC only and tighter date format for showbookmark

13 years agoMemcache_DataObject checks for PEAR::isError() on results
Evan Prodromou [Mon, 27 Dec 2010 05:08:20 +0000 (21:08 -0800)]
Memcache_DataObject checks for PEAR::isError() on results