Mikael Nordfeldth
c00491cd7a
Cosmetic changes to common_redirect, clientError, serverError
...
Since these functions exit (or throw exception) after running, there
is no need to have a 'return' statement or similar afterwards.
2014-03-10 00:25:57 +01:00
Mikael Nordfeldth
acbe94936f
common_redirect and clientError exits, so refactor
...
One Event would never be called, and other stuff were redundant clauses.
2014-03-10 00:24:32 +01:00
Mikael Nordfeldth
8d655bc706
Add support for 'nohub' sub_state in FeedSub
...
(requires upgrade.php run)
2014-03-09 23:03:54 +01:00
Mikael Nordfeldth
4f4abca338
OAuthException should be detected for autoloading
...
Or we may have conflicts with other filesin not in extlib.
2014-03-09 22:17:58 +01:00
Mikael Nordfeldth
31d8069779
Don't add redundant includedir INSTALLDIR.'/extlib/'
2014-03-09 22:11:08 +01:00
Mikael Nordfeldth
779ce40ac3
Add functions to avoid direct variable access
2014-03-09 13:31:05 +01:00
Mikael Nordfeldth
a1b0d5fa7e
FeedSub gets a plugin event handler for sub/unsub
2014-03-09 13:27:28 +01:00
Mikael Nordfeldth
9575a974a2
Removing Makefile for js-minification
2014-03-08 13:21:38 +01:00
Mikael Nordfeldth
4eb986413b
Removed PEAR::MIME bundled external library
2014-03-08 04:05:34 +01:00
Mikael Nordfeldth
639f1a01e0
File class no longer depends on MIME
...
+ minor tweaks to MediaFile
2014-03-08 03:51:47 +01:00
Mikael Nordfeldth
6faed0e451
MediaFile loses dependency on PEAR::MIME
...
At the same time we remove the "filecommand" setting, since we will
likely not have use of it thanks to PECL fileinfo.
Also the "supported" list for attachment mime types has changed
format, so we can keep track of at least some known file extensions.
2014-03-08 03:34:50 +01:00
Mikael Nordfeldth
0eb38b8f84
We only allow (and have) MIME types in supported list
...
$config['attachment']['supported'] may not use only the file extension.
2014-03-08 02:02:26 +01:00
Mikael Nordfeldth
6f6065e5e9
Only accept filenames for existing files in getUploadedFileType
...
Getting metadata from filehandles just meant duplicating work
2014-03-08 01:42:24 +01:00
Mikael Nordfeldth
5c34369460
Don't use PEAR MIME lib when we have PECL fileinfo
2014-03-08 01:20:08 +01:00
Mikael Nordfeldth
074339ea13
WebM should be allowed to upload!
...
Evan had left _two_ "video/mpeg", just so you know.
2014-03-08 00:29:47 +01:00
Mikael Nordfeldth
79cacdc62f
Removing unused "inboxed" flag for User class
2014-03-07 21:37:48 +01:00
Mikael Nordfeldth
1603b4f0bf
PublicSite profile does not have inviteonly, but RegisterThrottle
2014-03-07 21:29:29 +01:00
Mikael Nordfeldth
940867e39d
RegisterThrottle didn't save the created time
2014-03-07 21:23:49 +01:00
Mikael Nordfeldth
326ad9376e
Cosmetic changes to RegisterThrottle
2014-03-07 21:03:38 +01:00
Mikael Nordfeldth
a35bf227fb
Site profile "community" should be invite-only by default
...
Because if you have your own local/closed community, likely you
don't want random newcomers that drop in, spam and leave dead
accounts.
The Admin can of course always override this by setting the config
"inviteonly" to false either in the config.php or on the website.
2014-03-07 20:57:33 +01:00
Mikael Nordfeldth
5842c59ba7
Get group attentions back into the "all" feed
2014-03-07 02:49:42 +01:00
Mikael Nordfeldth
0bc7d9c6c6
We sent a User object instead of Profile to InboxNoticeStream (thanks postblue)
2014-03-07 01:27:14 +01:00
Mikael Nordfeldth
4e8697c96e
We don't add to inbox anymore.
2014-03-07 00:05:21 +01:00
Mikael Nordfeldth
c4e1cd1289
Added OpportunisticQM README that has good docs
2014-03-06 14:45:18 +01:00
Mikael Nordfeldth
5e4a275220
Clear Attentions when notice or profile is removed
2014-03-06 14:43:36 +01:00
Mikael Nordfeldth
bed8cc48bc
Add an index for Attention notice_ids too
...
Not sure if this is really needed, since notice_id and profile_id together
build up the primary key. That might cause MySQL to index them anyway.
2014-03-06 14:42:29 +01:00
Mikael Nordfeldth
aff6a66178
Add Attention stuff to TwitterBridge
2014-03-06 14:28:27 +01:00
Mikael Nordfeldth
018fd84032
Add Attention class for non-sub and non-mention notice attentions
2014-03-06 14:22:26 +01:00
Mikael Nordfeldth
5127a83935
Add Managed_DataObject getID() to avoid $obj->id
2014-03-06 14:21:44 +01:00
Mikael Nordfeldth
3be0e44490
Stricter typing + user detection in Realtime
2014-03-06 13:23:08 +01:00
Mikael Nordfeldth
c5c4bc10dc
Favicon updated to match new theme images
2014-03-06 13:10:30 +01:00
Mikael Nordfeldth
36a55d8436
Use CachingNoticeStream for "All" feed (hope it works)
2014-03-06 11:47:27 +01:00
Mikael Nordfeldth
2272cc244d
Removed Inbox from core (unused since 4b2a66ed29
)
...
Added the following FIXME:
How should a Twitter user get their Inbox filled with foreign tweets?
Every imported Twitter user has a profile in the Profile table, so we
could setup a Subscription entry for each of those, meaning they get
collected in the InboxNoticeStream... But this would mean a lot of
unnecessary entries and listings that generally just point to the
locked down Twitter service.
Let's figure out a good relation so we can connect any profile to any
imported foreign notice, so it shows up in the "all" feed.
2014-03-06 04:46:29 +01:00
Mikael Nordfeldth
4b2a66ed29
New mechanism for "all" feed (InboxNoticeStream)
...
Also cleaned up and made typing stricter for the stream, so only
profiles can be submitted. This reasonably also means we can create
"inbox" or "all" streams for foreign profiles as well using the same
stream handler (but of course only for messages we already know about).
To avoid looking up posts for a long time in a large notice database,
the lookback period for the inbox is no longer than the profile creation
date. (this matches the behaviour of Inbox)
Inbox class can probably be removed now.
2014-03-06 04:18:54 +01:00
Mikael Nordfeldth
c812e7c0d6
Removed deprecated Inbox functions not in use from User
2014-03-06 03:41:50 +01:00
Mikael Nordfeldth
f0c718b1af
Trying to remove Inbox, first steps
2014-03-06 02:43:28 +01:00
Mikael Nordfeldth
da87e742f8
Treat author just as anyone else (Notice distrib)
2014-03-06 01:55:23 +01:00
Mikael Nordfeldth
00db57949f
Always queue inbox distribution
2014-03-06 01:50:54 +01:00
Mikael Nordfeldth
c0f65f6ea7
Merge branch 'master' into FeedPoller
2014-03-06 01:15:19 +01:00
Mikael Nordfeldth
1056348029
Merge commit 'refs/merge-requests/11' of git://gitorious.org/statusnet/gnu-social into merge-requests/11
2014-03-05 13:58:32 +01:00
Mikael Nordfeldth
e571e64e9e
Make ostatussub conform to coding standards a bit
2014-03-05 13:44:45 +01:00
Mikael Nordfeldth
f323f234d7
Better typing for isSubscribed
2014-03-05 13:44:34 +01:00
Mikael Nordfeldth
f83b2cf324
Handle removed profile more gracefully in noticelist
...
Just hide it from the visitor, but log a warning (and error, since
the exception itself logs that).
2014-03-05 01:27:27 +01:00
Mikael Nordfeldth
4baaf7274c
Spiffing up all.php and making it more profile:y
2014-03-05 01:17:34 +01:00
Mikael Nordfeldth
dc0ae2785d
SubMirror now works again against old PuSH
...
There was a problem with (specifically at least) PuSHpress for
Wordpress. A previous attempt to perform a DB transaction backfired
because the remote side could connect to the callback before our
commit had gone through.
I take full responsibility for introducing the bug in the first place :)
2014-03-03 00:01:13 +01:00
Mikael Nordfeldth
83f50d25c0
Cosmetic changes to SubMirror actions
2014-03-02 23:06:21 +01:00
Mikael Nordfeldth
6f427d7e43
Remove Twitter from SubMirror
...
Twitter removed Atom feeds in API v1.1, so there is no way to mirror
a feed without screen-scraping or registering a dev account with them.
2014-03-02 22:58:23 +01:00
Mikael Nordfeldth
8ef29b70d1
GNU social naming, not StatusNet
2014-03-02 22:53:48 +01:00
Jean Baptiste Favre
29f0922705
Add check after oembed API call. In case of error, returned value is false which generate error messages 'Trying to get property of non-object'.
2014-03-02 15:06:06 +01:00
Mikael Nordfeldth
8b04bcb310
Prepare for >1024 RSA keys for Salmon signatures
2014-03-02 11:47:38 +01:00