]> git.mxchange.org Git - quix0rs-gnu-social.git/log
quix0rs-gnu-social.git
13 years agoMerge branch 'testing' of gitorious.org:statusnet/mainline into testing
Zach Copley [Thu, 20 Jan 2011 06:58:07 +0000 (22:58 -0800)]
Merge branch 'testing' of gitorious.org:statusnet/mainline into testing

* 'testing' of gitorious.org:statusnet/mainline: (63 commits)
  Add a scary 'experimental feture' warning & are-you-sure prompt on moveuser.php
  fix wrong datatypes (saving string instead of array) in AtomPub notice processing
  Account moving is a background activity
  return a 409 Conflict when subscription already exists
  OStatusPlugin does discovery in Profile::fromURI()
  considerably more logging and error checking in AccountMover
  add a log method to AccountMover
  normalize accounts and check for return in HTTP for moving
  move account-moving classes to their own libraries
  execution protection on discovery.php
  PHPCS discovery.php
  Move discovery library from OStatus plugin to core
  Revert "Revert "0.9.7alpha1""
  first example of moving a user
  Parse properties of links in XRD files
  Add the Atom username to the XRD output
  preserve activities in object
  let callers pass in an XMLOutputter to output to
  execution protection on discovery.php
  PHPCS linkheader.php
  ...

13 years agoOAuth: Fix rare problem in which request tokens were sometimes being
Zach Copley [Thu, 20 Jan 2011 06:55:00 +0000 (22:55 -0800)]
OAuth: Fix rare problem in which request tokens were sometimes being
returned as access tokens.

13 years agoFix syntax error in error msg
Zach Copley [Thu, 20 Jan 2011 00:13:42 +0000 (16:13 -0800)]
Fix syntax error in error msg

13 years agoFix a couple spelling mistakes in comments and remove redundant statement terminator
Zach Copley [Wed, 19 Jan 2011 23:52:18 +0000 (15:52 -0800)]
Fix a couple spelling mistakes in comments and remove redundant statement terminator

13 years agoAdd a scary 'experimental feture' warning & are-you-sure prompt on moveuser.php
Brion Vibber [Wed, 19 Jan 2011 23:13:46 +0000 (15:13 -0800)]
Add a scary 'experimental feture' warning & are-you-sure prompt on moveuser.php

As with deleteuser.php, can pass -y to bypass the prompt if you're sure.

13 years agofix wrong datatypes (saving string instead of array) in AtomPub notice processing
Brion Vibber [Wed, 19 Jan 2011 22:26:31 +0000 (14:26 -0800)]
fix wrong datatypes (saving string instead of array) in AtomPub notice processing

13 years agoMerge branch 'testing' into moveaccount
Brion Vibber [Wed, 19 Jan 2011 18:41:14 +0000 (10:41 -0800)]
Merge branch 'testing' into moveaccount

13 years agoadd rss.me to notice_source defaults
Brion Vibber [Tue, 18 Jan 2011 23:18:55 +0000 (15:18 -0800)]
add rss.me to notice_source defaults

13 years agoSubMirror: add mirrored feeds count & management link to stats section when showing...
Brion Vibber [Tue, 18 Jan 2011 21:32:12 +0000 (13:32 -0800)]
SubMirror: add mirrored feeds count & management link to stats section when showing your own profile sidebar.

13 years agoRefactor profile sidebar statistics output so plugins can hook it and add entries.
Brion Vibber [Tue, 18 Jan 2011 21:21:59 +0000 (13:21 -0800)]
Refactor profile sidebar statistics output so plugins can hook it and add entries.

13 years agoRefactor profile sidebar stats generation: factor out giant chunk of repeated method...
Brion Vibber [Tue, 18 Jan 2011 21:12:08 +0000 (13:12 -0800)]
Refactor profile sidebar stats generation: factor out giant chunk of repeated method calls

13 years agoStart cleaning up profile sidebar: link the header text on subscription/subscriber...
Brion Vibber [Tue, 18 Jan 2011 20:52:38 +0000 (12:52 -0800)]
Start cleaning up profile sidebar: link the header text on subscription/subscriber/groups sections to the tabs so users don't have to dance around looking for the link if they don't have enough to trigger a 'more' link.
Consolidated some of that link generation; sooooo much more dupe code to kill in this section!

13 years agoCleanup stray PHP 4-style references in hook calls for navigation bars. We can't...
Brion Vibber [Tue, 18 Jan 2011 20:34:27 +0000 (12:34 -0800)]
Cleanup stray PHP 4-style references in hook calls for navigation bars. We can't replace the live action from here, and don't need a reference to keep the object mutable. Dumping the references helps ensure we don't end up getting errors when things calling the hooks might forget to use the reference and the PHP error reporting settings expose this fact at us.

13 years agoSubMirror: switch the mirror setup tab from account settings to subscriptions/groups...
Brion Vibber [Tue, 18 Jan 2011 20:34:04 +0000 (12:34 -0800)]
SubMirror: switch the mirror setup tab from account settings to subscriptions/groups/invites area

13 years agowrap account actions in a section
Evan Prodromou [Mon, 17 Jan 2011 23:04:10 +0000 (18:04 -0500)]
wrap account actions in a section

13 years agoMerge branch 'testing' into moveaccount
Evan Prodromou [Mon, 17 Jan 2011 22:34:03 +0000 (17:34 -0500)]
Merge branch 'testing' into moveaccount

13 years agoErroneous code ensuring Webfinger accounts
Evan Prodromou [Mon, 17 Jan 2011 22:32:44 +0000 (17:32 -0500)]
Erroneous code ensuring Webfinger accounts

Ostatus_profile::ensureProfileURI() was accidentally falling through to
the default switch case, and was also calling common_log() incorrectly.

13 years agoAccount moving is a background activity
Evan Prodromou [Mon, 17 Jan 2011 22:31:56 +0000 (17:31 -0500)]
Account moving is a background activity

13 years agoMerge remote branch 'origin/moveaccount' into moveaccount
Evan Prodromou [Mon, 17 Jan 2011 21:04:46 +0000 (16:04 -0500)]
Merge remote branch 'origin/moveaccount' into moveaccount

Conflicts:
lib/accountmover.php

13 years agoreturn a 409 Conflict when subscription already exists
Evan Prodromou [Mon, 17 Jan 2011 20:57:04 +0000 (15:57 -0500)]
return a 409 Conflict when subscription already exists

13 years agoOStatusPlugin does discovery in Profile::fromURI()
Evan Prodromou [Mon, 17 Jan 2011 20:45:03 +0000 (15:45 -0500)]
OStatusPlugin does discovery in Profile::fromURI()

13 years agoconsiderably more logging and error checking in AccountMover
Evan Prodromou [Mon, 17 Jan 2011 20:25:58 +0000 (15:25 -0500)]
considerably more logging and error checking in AccountMover

13 years agoadd a log method to AccountMover
Evan Prodromou [Mon, 17 Jan 2011 20:06:15 +0000 (15:06 -0500)]
add a log method to AccountMover

13 years agonormalize accounts and check for return in HTTP for moving
Evan Prodromou [Mon, 10 Jan 2011 19:56:15 +0000 (14:56 -0500)]
normalize accounts and check for return in HTTP for moving

13 years agomove account-moving classes to their own libraries
Evan Prodromou [Sat, 8 Jan 2011 00:48:50 +0000 (19:48 -0500)]
move account-moving classes to their own libraries

13 years agoexecution protection on discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:10:46 +0000 (11:10 -0800)]
execution protection on discovery.php

13 years agoPHPCS discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:01:28 +0000 (11:01 -0800)]
PHPCS discovery.php

13 years agoMove discovery library from OStatus plugin to core
Evan Prodromou [Sun, 2 Jan 2011 18:21:52 +0000 (10:21 -0800)]
Move discovery library from OStatus plugin to core

13 years agoRevert "Revert "0.9.7alpha1""
Evan Prodromou [Wed, 5 Jan 2011 18:52:44 +0000 (10:52 -0800)]
Revert "Revert "0.9.7alpha1""

This reverts commit fd205546512b75016b1e055aec24eab586ae818b.

Conflicts:

lib/common.php

13 years agofirst example of moving a user
Evan Prodromou [Mon, 3 Jan 2011 22:59:28 +0000 (14:59 -0800)]
first example of moving a user

13 years agoParse properties of links in XRD files
Evan Prodromou [Mon, 3 Jan 2011 15:41:13 +0000 (07:41 -0800)]
Parse properties of links in XRD files

13 years agoAdd the Atom username to the XRD output
Evan Prodromou [Mon, 3 Jan 2011 15:40:57 +0000 (07:40 -0800)]
Add the Atom username to the XRD output

13 years agopreserve activities in object
Evan Prodromou [Sun, 2 Jan 2011 23:22:12 +0000 (15:22 -0800)]
preserve activities in object

13 years agolet callers pass in an XMLOutputter to output to
Evan Prodromou [Sun, 2 Jan 2011 23:21:56 +0000 (15:21 -0800)]
let callers pass in an XMLOutputter to output to

13 years agoexecution protection on discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:10:46 +0000 (11:10 -0800)]
execution protection on discovery.php

13 years agoPHPCS linkheader.php
Evan Prodromou [Sun, 2 Jan 2011 19:08:32 +0000 (11:08 -0800)]
PHPCS linkheader.php

13 years agoPHPCS discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:01:28 +0000 (11:01 -0800)]
PHPCS discovery.php

13 years agomove linkheader.php to core
Evan Prodromou [Sun, 2 Jan 2011 19:01:01 +0000 (11:01 -0800)]
move linkheader.php to core

13 years agomove linkheader.php to core
Evan Prodromou [Sun, 2 Jan 2011 18:49:44 +0000 (10:49 -0800)]
move linkheader.php to core

13 years agoMove discovery library from OStatus plugin to core
Evan Prodromou [Sun, 2 Jan 2011 18:21:52 +0000 (10:21 -0800)]
Move discovery library from OStatus plugin to core

13 years agoLocalisation updates from http://translatewiki.net.
Siebrand Mazeland [Sat, 15 Jan 2011 00:30:01 +0000 (01:30 +0100)]
Localisation updates from http://translatewiki.net.

13 years agoLocalisation updates from http://translatewiki.net.
Siebrand Mazeland [Fri, 14 Jan 2011 23:47:49 +0000 (00:47 +0100)]
Localisation updates from http://translatewiki.net.

13 years agoAdd translator comments.
Siebrand Mazeland [Fri, 14 Jan 2011 23:31:26 +0000 (00:31 +0100)]
Add translator comments.

13 years ago* number parameters in messages
Siebrand Mazeland [Fri, 14 Jan 2011 23:24:06 +0000 (00:24 +0100)]
* number parameters in messages
* add translator documentation
* remove superfluous whitespace
* small L10n update

13 years ago* L10n updates
Siebrand Mazeland [Fri, 14 Jan 2011 20:53:39 +0000 (21:53 +0100)]
* L10n updates
* translator documentation added

13 years agoAdd punctuation for consistency.
Siebrand Mazeland [Fri, 14 Jan 2011 20:53:01 +0000 (21:53 +0100)]
Add punctuation for consistency.

13 years ago* remove i18n for debug message.
Siebrand Mazeland [Fri, 14 Jan 2011 20:41:36 +0000 (21:41 +0100)]
* remove i18n for debug message.
* add i18n for some exceptions.
* add translator documentation.
* L10n updates.
* remove superfluous whitespace.

13 years ago* remove i18n for debug message.
Siebrand Mazeland [Fri, 14 Jan 2011 20:25:46 +0000 (21:25 +0100)]
* remove i18n for debug message.
* add i18n for some server exceptions.
* add translator documentation.
* L10n updates.
* remove superfluous whitespace.

13 years ago* change i18n for confirmation string to make a bit more certain that the confirmatio...
Siebrand Mazeland [Fri, 14 Jan 2011 19:48:17 +0000 (20:48 +0100)]
* change i18n for confirmation string to make a bit more certain that the confirmation string is consistent in all messages where it is used.
* add translator documentation.
* remove superfluous whitespace.

13 years agoLocalisation updates from http://translatewiki.net.
Siebrand Mazeland [Fri, 14 Jan 2011 11:11:10 +0000 (12:11 +0100)]
Localisation updates from http://translatewiki.net.

13 years agoLocalisation updates from http://translatewiki.net.
Siebrand Mazeland [Fri, 14 Jan 2011 11:10:05 +0000 (12:10 +0100)]
Localisation updates from http://translatewiki.net.

13 years agoFix typo in extension description.
Siebrand Mazeland [Fri, 14 Jan 2011 11:07:57 +0000 (12:07 +0100)]
Fix typo in extension description.

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 remote branch 'gitorious/testing' into testing
Evan Prodromou [Mon, 10 Jan 2011 19:59:07 +0000 (14:59 -0500)]
Merge remote branch 'gitorious/testing' into testing

13 years agoMerge branch 'moveaccount' of gitorious.org:~evan/statusnet/evans-mainline into movea...
Evan Prodromou [Mon, 10 Jan 2011 19:57:50 +0000 (14:57 -0500)]
Merge branch 'moveaccount' of gitorious.org:~evan/statusnet/evans-mainline into moveaccount

Conflicts:
scripts/moveuser.php

13 years agonormalize accounts and check for return in HTTP for moving
Evan Prodromou [Mon, 10 Jan 2011 19:56:15 +0000 (14:56 -0500)]
normalize accounts and check for return in HTTP for moving

13 years agomove account-moving classes to their own libraries
Evan Prodromou [Sat, 8 Jan 2011 00:48:50 +0000 (19:48 -0500)]
move account-moving classes to their own libraries

13 years agofirst example of moving a user
Evan Prodromou [Mon, 3 Jan 2011 22:59:28 +0000 (14:59 -0800)]
first example of moving a user

13 years agoParse properties of links in XRD files
Evan Prodromou [Mon, 3 Jan 2011 15:41:13 +0000 (07:41 -0800)]
Parse properties of links in XRD files

13 years agoAdd the Atom username to the XRD output
Evan Prodromou [Mon, 3 Jan 2011 15:40:57 +0000 (07:40 -0800)]
Add the Atom username to the XRD output

13 years agopreserve activities in object
Evan Prodromou [Sun, 2 Jan 2011 23:22:12 +0000 (15:22 -0800)]
preserve activities in object

13 years agolet callers pass in an XMLOutputter to output to
Evan Prodromou [Sun, 2 Jan 2011 23:21:56 +0000 (15:21 -0800)]
let callers pass in an XMLOutputter to output to

13 years agoexecution protection on discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:10:46 +0000 (11:10 -0800)]
execution protection on discovery.php

13 years agoPHPCS linkheader.php
Evan Prodromou [Sun, 2 Jan 2011 19:08:32 +0000 (11:08 -0800)]
PHPCS linkheader.php

13 years agoPHPCS discovery.php
Evan Prodromou [Sun, 2 Jan 2011 19:01:28 +0000 (11:01 -0800)]
PHPCS discovery.php

13 years agomove linkheader.php to core
Evan Prodromou [Sun, 2 Jan 2011 19:01:01 +0000 (11:01 -0800)]
move linkheader.php to core

13 years agomove linkheader.php to core
Evan Prodromou [Sun, 2 Jan 2011 18:49:44 +0000 (10:49 -0800)]
move linkheader.php to core

13 years agoMove discovery library from OStatus plugin to core
Evan Prodromou [Sun, 2 Jan 2011 18:21:52 +0000 (10:21 -0800)]
Move discovery library from OStatus plugin to core

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 agoMerge branch 'newmenuplugin' into testing
Evan Prodromou [Sat, 8 Jan 2011 00:28:18 +0000 (19:28 -0500)]
Merge branch 'newmenuplugin' into testing

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 agoFix error handling for missing group in apigroupmembership -- was trying to call...
Brion Vibber [Sat, 8 Jan 2011 00:25:58 +0000 (16:25 -0800)]
Fix error handling for missing group in apigroupmembership -- was trying to call methods on the variable before we checked it, which triggers PHP fatal error

13 years agoTicket #2166: accept aliases for local group names in API
Brion Vibber [Sat, 8 Jan 2011 00:23:54 +0000 (16:23 -0800)]
Ticket #2166: accept aliases for local group names in API

Also simplifies the code by using User_group::getForNickname instead of duplicating half of it :D

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 agoFix warning in subscribers/subscriptions list pages where we attempted to call free...
Brion Vibber [Fri, 7 Jan 2011 23:29:30 +0000 (15:29 -0800)]
Fix warning in subscribers/subscriptions list pages where we attempted to call free() an ArrayWrapper after it was used up, thus trying to forward the call to a nonexistent object.

Removed the free calls (unneeded since destructors now work), and added an error check w/ logging & an exception for future attempts to forward calls to nonexistent object.

13 years agoFix ticket #2392: sending invitation email fails when site name contains double quotes
Brion Vibber [Fri, 7 Jan 2011 01:43:00 +0000 (17:43 -0800)]
Fix ticket #2392: sending invitation email fails when site name contains double quotes

Gotta escape quotes!

13 years agoTicket #1968: fix favoriting, reply when using InfiniteScroll
Brion Vibber [Fri, 7 Jan 2011 00:53:39 +0000 (16:53 -0800)]
Ticket #1968: fix favoriting, reply when using InfiniteScroll

13 years agoFix regression in last year's update of InfiniteScroll -- having debug off caused...
Brion Vibber [Fri, 7 Jan 2011 00:36:57 +0000 (16:36 -0800)]
Fix regression in last year's update of InfiniteScroll -- having debug off caused breakage due to bad code interpreting every variable as a selector, and jQuery then failing when passed 'false'.

Note that the current version of the infinitescroll jquery plugin fixes this, but I'm not updating to it because the code's been altered from the upstream version, apparently to stop it from actually working as infinite scroll. WTF? :)

13 years agoTicket #2732: add some regression tests for groups to OStatus remote-tests.php
Brion Vibber [Thu, 6 Jan 2011 21:52:12 +0000 (13:52 -0800)]
Ticket #2732: add some regression tests for groups to OStatus remote-tests.php

Note that these tests won't pass on master branch yet as the join/leave don't work, and there's a bug in Activity parsing which prevents interop between new feeds and old remote subscribers (both fixed in this branch).

13 years agoFix for atom/activity streams parsing: feed's <activity:subject> was being taken...
Brion Vibber [Thu, 6 Jan 2011 23:05:29 +0000 (15:05 -0800)]
Fix for atom/activity streams parsing: feed's <activity:subject> was being taken at a higher priority than entry's <atom:author>, which broke OStatus group posting since we retired <activity:actor>.
Added test case to ActivityParseTests.

13 years agoallow group join/leave commands in api posting, at least for the moment (no other...
Brion Vibber [Thu, 6 Jan 2011 21:46:39 +0000 (13:46 -0800)]
allow group join/leave commands in api posting, at least for the moment (no other way to do remote subscribe without a preexisting local id number via api)

13 years agoFix for PHP notice spew in group creation via API: set default 'mainpage' in User_gro...
Brion Vibber [Thu, 6 Jan 2011 21:22:08 +0000 (13:22 -0800)]
Fix for PHP notice spew in group creation via API: set default 'mainpage' in User_group::register() rather than forcing all callers to do it manually.

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 agoMerge branch 'testing-sig' of gitorious.org:~brion/statusnet/brion-fixes into testing
Brion Vibber [Thu, 6 Jan 2011 00:04:32 +0000 (16:04 -0800)]
Merge branch 'testing-sig' of gitorious.org:~brion/statusnet/brion-fixes into testing

13 years agoSalmon signature checks on incoming slaps now check both old and new signature formats.
Brion Vibber [Thu, 6 Jan 2011 00:01:42 +0000 (00:01 +0000)]
Salmon signature checks on incoming slaps now check both old and new signature formats.

13 years agoOutgoing Salmon slaps now use the corrected signature format; if the first hit is...
Brion Vibber [Wed, 5 Jan 2011 23:54:16 +0000 (23:54 +0000)]
Outgoing Salmon slaps now use the corrected signature format; if the first hit is rejected with an HTTP error, we try again with the old format.

(This is not 100% ideal; possibly should try to distinguish between server errors and rejections, etc.)

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 agoSwitch autoloader from '__autoload' magic function name to registering our function...
Brion Vibber [Wed, 5 Jan 2011 23:27:17 +0000 (23:27 +0000)]
Switch autoloader from '__autoload' magic function name to registering our function with spl_autoload_register(); fixes compat problem with PHPUnit 3.5+ which seems to break the old __autoload

13 years agoAdd test cases for internal change in Salmon signing; fix for the new code.
Brion Vibber [Wed, 5 Jan 2011 23:26:09 +0000 (23:26 +0000)]
Add test cases for internal change in Salmon signing; fix for the new code.
Updated sig passes Tuomas's verifier, which is a good sign

13 years agoSalmon slap / magicsig test script
Brion Vibber [Wed, 5 Jan 2011 22:27:53 +0000 (14:27 -0800)]
Salmon slap / magicsig test script

Given a notice in the local system, we package it up as an Atom entry and MagicSig it up.
We run the magicenv verification on it locally to make sure our own functions can decode it.
Optionally with --verify we can send to Tuomas Koski's verification test service (not sure if this is working 100%)
If given --slap= with a target Salmon endpoint, we'll sent it on and see if it liked it. (Note that StatusNet will reject if there's not a relevant mention, but will report acceptance for dupes so you can use a message that's already been delivered as a test.)

13 years agoAdded doc comments on Salmon magicsig-related stuff to help in figuring out what...
Brion Vibber [Wed, 5 Jan 2011 22:05:59 +0000 (14:05 -0800)]
Added doc comments on Salmon magicsig-related stuff to help in figuring out what's going on

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 agoRevert "Revert "0.9.7alpha1""
Evan Prodromou [Wed, 5 Jan 2011 18:52:44 +0000 (10:52 -0800)]
Revert "Revert "0.9.7alpha1""

This reverts commit fd205546512b75016b1e055aec24eab586ae818b.

Conflicts:

lib/common.php

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 agoMerge branch '0.9.x' into testing
Brion Vibber [Wed, 5 Jan 2011 17:41:29 +0000 (09:41 -0800)]
Merge branch '0.9.x' into testing

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>