summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-22Miscellaneous plugin fixes/tweaksHEADmasterLuke Shumaker
From most important to least important: plugins/GNUsocialTemplatePlugin.php: * Modify to play nice with plain-old TemplatePlugin. * Move onPluginVersion() from action class to plugin class * Increment version from 0.1 to 0.1.1 plugins/TemplatePlugin.php: same as GNUsocialTemplatePlugin.php plugindata.php: add some output to help identify misbehaving plugins lib/implugin.php: fix comments: s/authentication/instant messaging/ lib/uapplugin.php: comments: add @see http://www.iab.net/iab_products_and_industry_services/508676/508767/UAP tpl/social.php: clean up formatting (also, use tabs instead of spaces, to be consistant with tpl/index.php)
2010-11-22fix: pluginlist.php's metaInfo(): Warning: horribly inefficient and may explode!Luke Shumaker
This also means that plugins who give themselves a funny name now have their data show up in the plugins page (where, before they'de be there, but the info on them would be blank). Unfortunately, this removes a hack for URL shorteners. However, this is minor, and I think my plugin system may have broken it anyway. (maybe)
2010-11-21Check if a plugin _exists_, not whether it is loaded, when ↵Luke Shumaker
enabling/disabling it. (Needed for previous commit to be useful) pluginenable.php: check if a file exists, not if it's been loaded.
2010-11-21Load data for all plugins on plugin management page.Luke Shumaker
include.php: file to include to make creation of entry points easy index.php: move most of this file into include.php (and include it) plugindata.php: a separate entry point using include.php; load ALL plugins found, and write data gathered to plugindata.out.php .gitignore: add plugindata.out.php actions/pluginsadminpanel.php: * use plugindata.out.php's common_plugindata() instead of StatusNet::getPlugins() * give a button linking to plugindata.php, to refresh plugin data lib/pluginlist.php: * use plugindata.out.php's common_plugindata() instead of thowing the 'PluginVersion' event to currently enabled plugins * for the enable/disable forms: was: if (!$disabled) now: if ($enabled && (!$disabled)) lib/statusnet.php: move the list of filenames for a plugin into it's own public static function; this is used by plugindata.php
2010-11-20Add more robust (but backward-compatible) plugin config system.Luke Shumaker
util.php: add common_config_section($main), as a companion to common_config($main,sub) statusnet.php: * add public static getPlugins(), which returns array_merge(common_config('plugins','default'),common_config_section('plugin-list')) * use self::getPlugins(), instead of common_config('plugins,'default') * handle plugins that have a type other than "array" or "null" for parameters pluginenable: * use StatusNet::getPlugins() instead of common_config('plugins,'default') * set $config['plugin-list'][$plugin_name] = 1 pluginsadminpanel: use StatusNet::getPlugins() instead of common_config('plugins,'default')
2010-09-17added link to get the codeMatt Lee
2010-09-05Changes to only display currently viewed profile's pictures.Sean Corbett
2010-09-05Merge branch 'master' of git://140.232.178.237/home/ian/public_html/gnu-socialSean Corbett
2010-09-05Added additional author info because I like to feel important ;)Sean Corbett
2010-09-05Users now post photos to separate albums in the DB (still need to display ↵Ian Denhardt
them separately.)
2010-09-04Rough draft of the photo album class to control photo ownership / permissions.Sean Corbett
2010-09-04Added gallery links to previous / next pages.Sean Corbett
2010-09-04getting photos by page is now static.Ian Denhardt
2010-09-04Photo Galleries now actually use the database.Ian Denhardt
2010-09-04Quick function to get an array of thumbnails for a gallery page.Sean Corbett
2010-09-03Got photos displaying in the feed *the right way*Ian Denhardt
2010-08-16first whack at proper photo sharing federation w/ activity streams.Ian Denhardt
2010-08-13Merge branch '1.0.x' of git://gitorious.org/statusnet/mainlineIan Denhardt
2010-08-13Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.xEvan Prodromou
2010-08-13Merge branch '0.9.x' into 1.0.xEvan Prodromou
2010-08-13Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
Conflicts: plugins/OStatus/classes/Ostatus_profile.php
2010-08-13Merge branch 'master' into 1.0.xEvan Prodromou
2010-08-13fix use of activity rather than act in salmonaction subclasses, tooEvan Prodromou
2010-08-13Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xZach Copley
2010-08-13A plugin for adding the Echo (formerly JS-Kit) commenting widget toZach Copley
notice pages
2010-08-13Update extension configuration file creation (doesn't work yet in ↵Siebrand Mazeland
translatewiki.net).
2010-08-13add hooks to allow plugins to handle different kinds of activitiesEvan Prodromou
2010-08-13typo mixing up and in salmonactionEvan Prodromou
2010-08-13Merge branch '1.0.x' of /home/ian/public_html/statusnet-enhancementsIan Denhardt
2010-08-13Fixes for RSS subscriptions: accept posts with no ActivityStreams ↵Brion Vibber
object-type set; be more liberal about accepting posts from feeds where the author info doesn't match (we'll post under the feed's profile and just not try to update the profile info).
2010-08-13SubMirror: check feel-url discovery if profile-url discovery failed; should ↵Brion Vibber
help when giving direct feeds to subscribe to
2010-08-13Suppress whinging during HTML parsing in profile page discovery for things ↵Brion Vibber
that turn out to be XML feeds with funny namespaces.
2010-08-12add note about software subscriptionEvan Prodromou
2010-08-12Fix for ticket 2513: "Can't linkify" error when some links are shortenedBrion Vibber
When bogus SSL sites etc were hit through a shortening redirect, sometimes link resolution kinda blew up and the user would get a "Can't linkify" error, aborting their post. Now catching this case and just passing through the URL without attempting to resolve it. Could benefit from an overall scrubbing of the freaky link/attachment code though...! :) http://status.net/open-source/issues/2513
2010-08-12Fix for ticket 2513: "Can't linkify" error when some links are shortenedBrion Vibber
When bogus SSL sites etc were hit through a shortening redirect, sometimes link resolution kinda blew up and the user would get a "Can't linkify" error, aborting their post. Now catching this case and just passing through the URL without attempting to resolve it. Could benefit from an overall scrubbing of the freaky link/attachment code though...! :) http://status.net/open-source/issues/2513
2010-08-12Fix PHP notice spew when Notice::saveNew() called without passing any ↵Brion Vibber
options; default empty vars weren't being set.
2010-08-12Fix regression in replies made from web (was saving reply_to value in wrong ↵Brion Vibber
array key)
2010-08-12Merge branch '0.9.x' into 1.0.xBrion Vibber
2010-08-12Merge branch 'master' into 0.9.xBrion Vibber
2010-08-12Merge branch 'tinymce' into 0.9.xBrion Vibber
2010-08-12TinyMCE: counter support (may not be 100% exact match to server-side count, ↵Brion Vibber
but there's already discrepencies due to URL shortening) Fix for bad char conversions also, caused short text to not be saved in some cases.
2010-08-12TinyMCE: fixes to attachment handlingBrion Vibber
2010-08-12Merge branch '1.0.x' of git://gitorious.org/statusnet/mainlineIan Denhardt
2010-08-11Merge branch '0.9.x'Brion Vibber
2010-08-11Output "web" instead of gettext translation file metadata when notice.source ↵Brion Vibber
is empty
2010-08-11work in progress: tinymce image attachmentsBrion Vibber
2010-08-11work in progress: prettier attachment mode for tinymce?Brion Vibber
2010-08-11TinyMCE: only apply HTML parsing if we actually got into JS and poked the ↵Brion Vibber
editor widget. With JS off, we'll take plaintext as usual.
2010-08-11TinyMCE: core tweak; switching order of input processing so length limit is ↵Brion Vibber
applied to stripped version of the text
2010-08-11TinyMCE: add Shane Tomlinson's linkautodetect plugin so typed URLs get ↵Brion Vibber
linked for you, fitting expected user behavior better. (IE apparently already does this; plugin adds similar behavior for other browsers.) Plugin source: http://sourceforge.net/tracker/?func=detail&aid=2770218&group_id=103281&atid=738747 Source JS compressed manually with jsmin. Note: the link detection doesn't match StatusNet's internal link detection right now. URLs with funky chars, especially like Wikipedia style ones, will often not automatically catch. (But you should still be able to manually link them.)