]> git.mxchange.org Git - quix0rs-gnu-social.git/log
quix0rs-gnu-social.git
14 years agoPagination of user/tag was navigating to wrong page.
Christopher Vollick [Wed, 16 Sep 2009 09:07:33 +0000 (05:07 -0400)]
Pagination of user/tag was navigating to wrong page.

Fixes bug #1736.

14 years agoUpdated Cloudy theme
Sarven Capadisli [Mon, 14 Sep 2009 13:14:48 +0000 (15:14 +0200)]
Updated Cloudy theme

14 years agoAvoid or suppress E_NOTICE and E_WARNING messages related to the checklibs checks.
Brion Vibber [Mon, 14 Sep 2009 01:15:49 +0000 (18:15 -0700)]
Avoid or suppress E_NOTICE and E_WARNING messages related to the checklibs checks.

* notice on main installer form checking for $_GET['checklibs']
* notices when seeing which module checks to run
* warnings when attempting to load include files

14 years agoCheck that 'dl' function is available and usable before trying to call it with error...
Brion Vibber [Tue, 1 Sep 2009 23:04:36 +0000 (20:04 -0300)]
Check that 'dl' function is available and usable before trying to call it with error suppression; if it's disabled or unavailable we end up with mysterious failures during installation or loading of libraries.

Fixed for StatusNet installer as well as some external libraries that should be fixed upstream if they haven't already been:
* PEAR
* Auth/OpenID
* Auth/Yadis

14 years agoMake a new REST service for the autocomplete plugin, significantly reducing the size...
Craig Andrews [Mon, 14 Sep 2009 01:44:17 +0000 (21:44 -0400)]
Make a new REST service for the autocomplete plugin, significantly reducing the size of the responses. Also enables caching in the browser.

14 years agoAdd missing pkeyGet override to the Profile class
Craig Andrews [Mon, 14 Sep 2009 01:43:29 +0000 (21:43 -0400)]
Add missing pkeyGet override to the Profile class

14 years agoGenerate ETags for pages which don't specify themselves.
Craig Andrews [Sun, 13 Sep 2009 21:30:50 +0000 (17:30 -0400)]
Generate ETags for pages which don't specify themselves.

14 years agoWhen viewing a page in https, all links to non-actions (links to CSS, JS, etc) should...
Craig Andrews [Sun, 13 Sep 2009 05:24:57 +0000 (01:24 -0400)]
When viewing a page in https, all links to non-actions (links to CSS, JS, etc) should be https. Fixes the mixed content warnings that browsers display.

Fixes http://status.net/trac/ticket/1552

14 years agoSet a Vary header with accept-encoding and cookies.
Craig Andrews [Sun, 13 Sep 2009 05:01:31 +0000 (01:01 -0400)]
Set a Vary header with accept-encoding and cookies.

Fixes http://status.net/trac/ticket/17

14 years agoAdd ChinaMobile as an email to SMS carrier
Craig Andrews [Sun, 13 Sep 2009 04:16:50 +0000 (00:16 -0400)]
Add ChinaMobile as an email to SMS carrier

14 years agoResponse for request token doesn't contain omb_version
Craig Andrews [Sun, 13 Sep 2009 04:01:23 +0000 (00:01 -0400)]
Response for request token doesn't contain omb_version

Fixes http://status.net/trac/ticket/681

Sorry it took a year to accept this patch, dho :'-(

14 years agoCheck if the avatar exists before trying to delete it.
Craig Andrews [Sat, 12 Sep 2009 21:11:55 +0000 (17:11 -0400)]
Check if the avatar exists before trying to delete it.

Fixes http://status.net/trac/ticket/1868

14 years agoNoticeForm's constructor's inreplyto argument should be optional (defaulting to null)
Craig Andrews [Sat, 12 Sep 2009 21:06:46 +0000 (17:06 -0400)]
NoticeForm's constructor's inreplyto argument should be optional (defaulting to null)

14 years agoShow username in subject of emails
Craig Andrews [Sat, 12 Sep 2009 20:58:04 +0000 (16:58 -0400)]
Show username in subject of emails

Fixes http://status.net/trac/ticket/1862

14 years agoAdd a parameter named 'inreplyto' to the 'notice/new' page, so urls can inclue 'inrep...
Craig Andrews [Sat, 12 Sep 2009 02:37:37 +0000 (22:37 -0400)]
Add a parameter named 'inreplyto' to the 'notice/new' page, so urls can inclue 'inreplyto' id's. Also add 'inreplyto' to the urls sent in emails.

14 years agoSeveral fixes to make RabbitMQ a player.
Marcel van der Boom [Tue, 8 Sep 2009 20:21:33 +0000 (22:21 +0200)]
Several fixes to make RabbitMQ a player.

  * extlib/Stomp.php
    -spaces for tabs (we're on PEAR, right?)
    - send: initialize the $properties parameter as array() instead of null
      this prevents unsetting $headers if $properties was not set
      (besides that, it's the proper way to initialize an array)
    - subscribe: insert FIXME's on ActiveMQ specifics
    - ack: make sure the content-length header is set *and* is zero.
      I have seen the header set to '3' there but could not find where it
      came from, this is at least safe.
    - disconnect: typo in $headers variable
    - readFrame: use fgets() instead of gets() so that RabbitQ, which is more protocol strict can also play
  * extlib/Stomp/Frame.php
    - spaces for tabs
    - add note on possibly protocol violating linefeed
  * extlib/Stomp/Message.php
    - space for tabs
    - add content-length header for message
  * lib/stompqueuemanager.php
    - use the notice for logging, not the frame

14 years agoSilence the NOTICE log messages on port not defined, we deal with
Marcel van der Boom [Tue, 8 Sep 2009 19:48:51 +0000 (21:48 +0200)]
Silence the NOTICE log messages on port not defined, we deal with
that properly, and most of the time it is indeed not define

14 years agoThe site id was hardcoded inside the plugin code. Instead the piwikid
Craig Andrews [Sat, 12 Sep 2009 00:40:51 +0000 (20:40 -0400)]
The site id was hardcoded inside the plugin code. Instead the piwikid
is used now.

Fixes http://status.net/trac/ticket/1864

Thanks zmf

14 years agoIf there is no mimetype set, the file shouldn't be considered an enclosure
Craig Andrews [Fri, 11 Sep 2009 01:21:01 +0000 (21:21 -0400)]
If there is no mimetype set, the file shouldn't be considered an enclosure

14 years agoAllow @ signs in the path, querystring, and fragment parts of URLs
Craig Andrews [Fri, 11 Sep 2009 01:19:38 +0000 (21:19 -0400)]
Allow @ signs in the path, querystring, and fragment parts of URLs

14 years agoRe-use enclosure decision logic to decide if a link gets a paperclip/lightbox popup.
Craig Andrews [Fri, 11 Sep 2009 01:13:30 +0000 (21:13 -0400)]
Re-use enclosure decision logic to decide if a link gets a paperclip/lightbox popup.

14 years agoMarkdown is not necessary
Sarven Capadisli [Thu, 10 Sep 2009 17:52:51 +0000 (17:52 +0000)]
Markdown is not necessary

14 years agoRevert "If a shortened URL begins with http://, don't include it in the shortened...
Craig Andrews [Thu, 10 Sep 2009 16:13:43 +0000 (12:13 -0400)]
Revert "If a shortened URL begins with http://, don't include it in the shortened url. Saves 7 characters, which is pretty awesome for 140 character max length notices."

This reverts commit e2848eb8621dd645fa68cb1641c0af1df5530408.

Downstream consumers of our notices (such as Friendfeed, Facebook, etc) don't have sophisticated URL detection, so a notice that reads: "check out ur1.ca/1" won't be linked. So the http:// prefix is
mandatory.

14 years agoFix HTML validation
Craig Andrews [Thu, 10 Sep 2009 16:11:33 +0000 (12:11 -0400)]
Fix HTML validation

14 years agoIf a shortened URL begins with http://, don't include it in the shortened url. Saves...
Craig Andrews [Thu, 10 Sep 2009 02:57:15 +0000 (22:57 -0400)]
If a shortened URL begins with http://, don't include it in the shortened url. Saves 7 characters, which is pretty awesome for 140 character max length notices.

14 years ago:: isn't a valid IPv6 address for our purposes
Craig Andrews [Wed, 9 Sep 2009 20:57:11 +0000 (16:57 -0400)]
:: isn't a valid IPv6 address for our purposes

14 years agoUpdated biz, cloudy, h4ck3r, pigeonthoughts themes default logos
Sarven Capadisli [Wed, 9 Sep 2009 11:04:05 +0000 (13:04 +0200)]
Updated biz, cloudy, h4ck3r, pigeonthoughts themes default logos

14 years agoUpdated biz theme.
Sarven Capadisli [Wed, 9 Sep 2009 10:57:27 +0000 (12:57 +0200)]
Updated biz theme.

14 years agoLinkback Plugin: check result properly so failures are not reported as a success...
CiaranG [Tue, 8 Sep 2009 12:25:59 +0000 (13:25 +0100)]
Linkback Plugin: check result properly so failures are not reported as a success in the log. Also logs (debug only) when an attempt is being made

14 years agoUse a non-error-generating array key check to a) improve performance and b) not fill...
CiaranG [Tue, 8 Sep 2009 10:27:37 +0000 (11:27 +0100)]
Use a non-error-generating array key check to a) improve performance and b) not fill the log file with crud

14 years agoDon't "hightlight" search terms (by surrounding them in <strong>$term</strong>) when...
Craig Andrews [Tue, 8 Sep 2009 02:36:01 +0000 (22:36 -0400)]
Don't "hightlight" search terms (by surrounding them in <strong>$term</strong>) when the term appears in an HTML attribute

Fixes http://status.net/trac/ticket/1852

14 years agoSetting max width limit to select form control on inbox and outbox pages
Sarven Capadisli [Mon, 7 Sep 2009 15:14:05 +0000 (15:14 +0000)]
Setting max width limit to select form control on inbox and outbox pages

14 years agoUpdated identica and default theme to use processing indicator
Sarven Capadisli [Mon, 7 Sep 2009 14:51:10 +0000 (14:51 +0000)]
Updated identica and default theme to use processing indicator

14 years agomore info in error message, to help next person who has to debug locales
brenda [Sat, 5 Sep 2009 04:11:38 +0000 (16:11 +1200)]
more info in error message, to help next person who has to debug locales

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Sarven Capadisli [Fri, 4 Sep 2009 16:00:25 +0000 (16:00 +0000)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoUpdated layout for filter by tag form
Sarven Capadisli [Fri, 4 Sep 2009 15:59:27 +0000 (15:59 +0000)]
Updated layout for filter by tag form

14 years agoAdded additional characters as allowed in URLs.
Craig Andrews [Fri, 4 Sep 2009 15:30:29 +0000 (11:30 -0400)]
Added additional characters as allowed in URLs.

14 years agoImprove OAuth CGI compatibility
Craig Andrews [Thu, 3 Sep 2009 22:34:30 +0000 (18:34 -0400)]
Improve OAuth CGI compatibility

Fixes http://status.net/trac/ticket/1822
Reported upstream at http://code.google.com/p/oauth/issues/detail?id=118

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Sarven Capadisli [Thu, 3 Sep 2009 19:47:00 +0000 (19:47 +0000)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoCreated autofocus method to give focus to an element (primarily a form
Sarven Capadisli [Thu, 3 Sep 2009 19:42:50 +0000 (19:42 +0000)]
Created autofocus method to give focus to an element (primarily a form
control) on page onload.

Updated some of the pages to use autofocus.

14 years agoFix spelling
Craig Andrews [Thu, 3 Sep 2009 19:30:19 +0000 (15:30 -0400)]
Fix spelling

14 years agoadd basic auth support for cgi servers on the api (trac #1832)
mEDI [Thu, 3 Sep 2009 17:32:27 +0000 (19:32 +0200)]
add basic auth support for cgi servers on the api (trac #1832)

14 years agoAdd Tidy requirement to the README
Craig Andrews [Wed, 2 Sep 2009 17:39:05 +0000 (13:39 -0400)]
Add Tidy requirement to the README

14 years agoThe 'tidy' extension is a requirement
Craig Andrews [Wed, 2 Sep 2009 17:33:54 +0000 (13:33 -0400)]
The 'tidy' extension is a requirement

Fixes http://status.net/trac/ticket/1844

14 years agoMerge remote branch 'cvollick/ContactUpdate' into 0.8.x
Craig Andrews [Wed, 2 Sep 2009 03:25:20 +0000 (23:25 -0400)]
Merge remote branch 'cvollick/ContactUpdate' into 0.8.x

14 years agoUpdated Location of Bug Tracker in Contact Page.
Christopher Vollick [Thu, 3 Sep 2009 21:57:08 +0000 (17:57 -0400)]
Updated Location of Bug Tracker in Contact Page.

14 years agoAllow whitespace before and after the = and require space before the href in <link...
Craig Andrews [Wed, 2 Sep 2009 03:17:45 +0000 (23:17 -0400)]
Allow whitespace before and after the = and require space before the href in <link href="url"> html

14 years agoCheck "Files" of type 'application/xhtml+xml' for oEmbed in addition to just text...
Craig Andrews [Wed, 2 Sep 2009 03:02:03 +0000 (23:02 -0400)]
Check "Files" of type 'application/xhtml+xml' for oEmbed in addition to just text/html

14 years agoBetter error handling
Zach Copley [Wed, 2 Sep 2009 00:50:41 +0000 (00:50 +0000)]
Better error handling

14 years agoFixed bug in which you cannot turn off importing friends timelines flag
Zach Copley [Wed, 2 Sep 2009 00:24:30 +0000 (00:24 +0000)]
Fixed bug in which you cannot turn off importing friends timelines flag

14 years agoLet users join and drop group membership from xmpp
Carlos Perilla [Wed, 12 Aug 2009 00:09:51 +0000 (19:09 -0500)]
Let users join and drop group membership from xmpp

14 years agoFixes foaf notices, use Profile for information that's missing in Remote_profile
Carlos Perilla [Tue, 1 Sep 2009 14:19:10 +0000 (09:19 -0500)]
Fixes foaf notices, use Profile for information that's missing in Remote_profile

14 years agoStop requeuing notices not bound for Twitter.
Zach Copley [Tue, 1 Sep 2009 19:00:18 +0000 (19:00 +0000)]
Stop requeuing notices not bound for Twitter.

14 years agoAllow the oEmbed <link> tag to be split across lines
Craig Andrews [Tue, 1 Sep 2009 02:16:49 +0000 (22:16 -0400)]
Allow the oEmbed <link> tag to be split across lines

14 years agoFix typo in Stomp
Craig Andrews [Mon, 31 Aug 2009 19:49:11 +0000 (15:49 -0400)]
Fix typo in Stomp

Thanks Marcel|HSD

14 years agoFix attachment saving
Craig Andrews [Mon, 31 Aug 2009 19:33:23 +0000 (15:33 -0400)]
Fix attachment saving

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Sarven Capadisli [Mon, 31 Aug 2009 17:53:54 +0000 (17:53 +0000)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoRemoved <dl> structure from MailboxAction::showMessage. Same as
Sarven Capadisli [Mon, 31 Aug 2009 17:52:45 +0000 (17:52 +0000)]
Removed <dl> structure from MailboxAction::showMessage. Same as
committ e0b877b26c5e93809b2a53b6c46326d5e31fa0e8.

14 years agoAllow :'s in the path, query string, and fragment parts of the url (Mediawiki URLs...
Craig Andrews [Mon, 31 Aug 2009 14:33:37 +0000 (10:33 -0400)]
Allow :'s in the path, query string, and fragment parts of the url (Mediawiki URLs often do this)

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Zach Copley [Sat, 29 Aug 2009 06:20:50 +0000 (06:20 +0000)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoFix error in log msg format specifier
Zach Copley [Sat, 29 Aug 2009 06:20:19 +0000 (06:20 +0000)]
Fix error in log msg format specifier

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Evan Prodromou [Fri, 28 Aug 2009 20:35:48 +0000 (13:35 -0700)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agochange version to 0.8.2dev
Evan Prodromou [Fri, 28 Aug 2009 20:35:28 +0000 (13:35 -0700)]
change version to 0.8.2dev

14 years agoAdd % and ~ as valid characters in the path, querystring, and fragment parts of URLs
Craig Andrews [Fri, 28 Aug 2009 20:18:05 +0000 (16:18 -0400)]
Add % and ~ as valid characters in the path, querystring, and fragment parts of URLs

14 years agoTake out unnecessary defines
Zach Copley [Fri, 28 Aug 2009 17:55:58 +0000 (17:55 +0000)]
Take out unnecessary defines

14 years agoStatus_network had wrong ini file
Evan Prodromou [Fri, 28 Aug 2009 17:42:34 +0000 (10:42 -0700)]
Status_network had wrong ini file

14 years agofix 'callback_helper'
Evan Prodromou [Fri, 28 Aug 2009 15:43:28 +0000 (08:43 -0700)]
fix 'callback_helper'

14 years agostutuses -> statuses
Evan Prodromou [Fri, 28 Aug 2009 13:13:47 +0000 (06:13 -0700)]
stutuses -> statuses

14 years agoMerge branch 'testing' of git@gitorious.org:laconica/mainline into testing
Evan Prodromou [Fri, 28 Aug 2009 13:10:46 +0000 (06:10 -0700)]
Merge branch 'testing' of git@gitorious.org:laconica/mainline into testing

14 years agofix for SQL error: ERROR: syntax error at or near ")" at character 45
Brenda Wallace [Fri, 28 Aug 2009 08:00:55 +0000 (20:00 +1200)]
fix for SQL error: ERROR: syntax error at or near ")" at character 45
http://laconi.ca/trac/ticket/1735

14 years agoMerge branch 'twitter-basic-auth' into 0.8.x
Zach Copley [Fri, 28 Aug 2009 07:03:32 +0000 (07:03 +0000)]
Merge branch 'twitter-basic-auth' into 0.8.x

14 years agoMake SyncTwitterFriends and TwitterStatusFetcher daemons use both HTTP Basic Auth...
Zach Copley [Fri, 28 Aug 2009 07:02:27 +0000 (07:02 +0000)]
Make SyncTwitterFriends and TwitterStatusFetcher daemons use both HTTP Basic Auth as well as OAuth

14 years agoAbstract the Twitter basic auth stuff into its own client class
Zach Copley [Fri, 28 Aug 2009 06:00:30 +0000 (06:00 +0000)]
Abstract the Twitter basic auth stuff into its own client class

14 years agoRenable basic auth posting to Twitter for users who already have a bridge setup
Zach Copley [Fri, 28 Aug 2009 04:36:47 +0000 (04:36 +0000)]
Renable basic auth posting to Twitter for users who already have a bridge setup

14 years agomake URL analyzer save new info on URLs
Evan Prodromou [Fri, 28 Aug 2009 03:23:31 +0000 (20:23 -0700)]
make URL analyzer save new info on URLs

14 years agoremove duplicate save of Notice and streamline attachment detection
Evan Prodromou [Fri, 28 Aug 2009 03:09:07 +0000 (20:09 -0700)]
remove duplicate save of Notice and streamline attachment detection

14 years agoreformat curry() to make my editor happy
Evan Prodromou [Fri, 28 Aug 2009 03:06:03 +0000 (20:06 -0700)]
reformat curry() to make my editor happy

14 years agoadded my email address next to my name at the top of the files
Craig Andrews [Fri, 28 Aug 2009 02:56:54 +0000 (22:56 -0400)]
added my email address next to my name at the top of the files

14 years agoImplement the is_member and membership group api's
Craig Andrews [Fri, 28 Aug 2009 02:55:32 +0000 (22:55 -0400)]
Implement the is_member and membership group api's

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Evan Prodromou [Thu, 27 Aug 2009 21:18:51 +0000 (14:18 -0700)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoupdate version in README, add note about status.net
Evan Prodromou [Thu, 27 Aug 2009 17:00:45 +0000 (10:00 -0700)]
update version in README, add note about status.net

14 years agoadd api/laconica for backwards compatibility
Evan Prodromou [Thu, 27 Aug 2009 16:34:32 +0000 (09:34 -0700)]
add api/laconica for backwards compatibility

14 years agoDo not used named capturing groups
Craig Andrews [Thu, 27 Aug 2009 16:06:45 +0000 (12:06 -0400)]
Do not used named capturing groups

I'm not sure all php 5.2's are compiled with a PCRE library that supported named captures.

14 years agochange default logo from laconica to status.net
Evan Prodromou [Thu, 27 Aug 2009 16:04:40 +0000 (09:04 -0700)]
change default logo from laconica to status.net

14 years agoshow SQL errors in the output
Evan Prodromou [Thu, 27 Aug 2009 15:58:03 +0000 (08:58 -0700)]
show SQL errors in the output

14 years agodon't show a warning when dl() disabled
Evan Prodromou [Thu, 27 Aug 2009 15:45:53 +0000 (08:45 -0700)]
don't show a warning when dl() disabled

14 years agoadd changelog to README
Evan Prodromou [Thu, 27 Aug 2009 15:39:14 +0000 (08:39 -0700)]
add changelog to README

14 years agoupdate version in, and add codename to, lib/common
Evan Prodromou [Thu, 27 Aug 2009 15:02:41 +0000 (08:02 -0700)]
update version in, and add codename to, lib/common

14 years agoUpdate version number in README
Evan Prodromou [Thu, 27 Aug 2009 15:00:47 +0000 (08:00 -0700)]
Update version number in README

Update version number and add release code name ("Second Guessing").

14 years agoSupport multiple attachments per facebook update
Craig Andrews [Thu, 27 Aug 2009 01:54:57 +0000 (21:54 -0400)]
Support multiple attachments per facebook update

14 years agoAdd library checking page
Craig Andrews [Wed, 26 Aug 2009 23:08:30 +0000 (19:08 -0400)]
Add library checking page

14 years agostatusize config.php.sample
Evan Prodromou [Wed, 26 Aug 2009 15:31:44 +0000 (11:31 -0400)]
statusize config.php.sample

14 years agochange hidden label for site content license link
Evan Prodromou [Wed, 26 Aug 2009 14:51:44 +0000 (10:51 -0400)]
change hidden label for site content license link

14 years agodefine LACONICA_VERSION for backwards compatibility
Evan Prodromou [Wed, 26 Aug 2009 14:43:44 +0000 (10:43 -0400)]
define LACONICA_VERSION for backwards compatibility

14 years agodefine LACONICA and accept LACONICA for backwards compatibility
Evan Prodromou [Wed, 26 Aug 2009 14:41:36 +0000 (10:41 -0400)]
define LACONICA and accept LACONICA for backwards compatibility

14 years agoMerge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Zach Copley [Wed, 26 Aug 2009 14:35:25 +0000 (14:35 +0000)]
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x

14 years agoadd back in /etc/laconica/* for compatibility
Evan Prodromou [Wed, 26 Aug 2009 14:34:50 +0000 (10:34 -0400)]
add back in /etc/laconica/* for compatibility

14 years agoFacebook app wasn't loading the theme css
Zach Copley [Wed, 26 Aug 2009 14:34:41 +0000 (14:34 +0000)]
Facebook app wasn't loading the theme css

14 years agoadd *Laconica* events back in for backwards compatibility
Evan Prodromou [Wed, 26 Aug 2009 14:33:04 +0000 (10:33 -0400)]
add *Laconica* events back in for backwards compatibility

14 years agoMerge branch 'master' into testing
Evan Prodromou [Wed, 26 Aug 2009 14:28:10 +0000 (10:28 -0400)]
Merge branch 'master' into testing