]> git.mxchange.org Git - quix0rs-gnu-social.git/log
quix0rs-gnu-social.git
13 years agoExtra debug helper line in push callback
Brion Vibber [Mon, 4 Oct 2010 21:22:32 +0000 (14:22 -0700)]
Extra debug helper line in push callback

13 years agoFix broken code in OStatus feed maint/test scripts (using field name from older dev...
Brion Vibber [Mon, 4 Oct 2010 17:27:03 +0000 (10:27 -0700)]
Fix broken code in OStatus feed maint/test scripts (using field name from older dev code, would load up wrong record)

13 years agoNoticeTitle plugin: link the post title to detail view of the post
Brion Vibber [Sat, 2 Oct 2010 00:54:47 +0000 (17:54 -0700)]
NoticeTitle plugin: link the post title to detail view of the post

13 years agoBugfix in FB-sharing header for empty profile avatar
Brion Vibber [Fri, 1 Oct 2010 21:42:12 +0000 (14:42 -0700)]
Bugfix in FB-sharing header for empty profile avatar

13 years agoBetter markup for anon fave tally
Zach Copley [Fri, 1 Oct 2010 18:31:44 +0000 (11:31 -0700)]
Better markup for anon fave tally

13 years agoMerge branch 'master' of gitorious.org:statusnet/mainline
Zach Copley [Fri, 1 Oct 2010 18:13:28 +0000 (11:13 -0700)]
Merge branch 'master' of gitorious.org:statusnet/mainline

13 years agoAllow turning off Anonymous Favoring for specific users' notices
Zach Copley [Fri, 1 Oct 2010 18:12:53 +0000 (11:12 -0700)]
Allow turning off Anonymous Favoring for specific users' notices

13 years agoThrow in a quick event hook to override the profile list type on showstream (should...
Brion Vibber [Fri, 1 Oct 2010 18:05:15 +0000 (11:05 -0700)]
Throw in a quick event hook to override the profile list type on showstream (should be made more general in future).
Replace with a NoticeList to have output include avatar and username -- but CSS still hides them in default theme.

Event::addHandler('ShowStreamNoticeList', 'awesome');
function awesome($notice, $action, &$pnl)
{
    $pnl = new NoticeList($notice, $action);
    return false;
}

13 years agoAdd a $config['plugins']['locale_path'] which can be set to override the individual...
Brion Vibber [Fri, 1 Oct 2010 02:18:46 +0000 (19:18 -0700)]
Add a $config['plugins']['locale_path'] which can be set to override the individual plugins' locale subdirectories.
This will apply to *ALL* plugins in *ALL* languages, so should probably only be used when doing site customization...

You'd probably do:

  $config['site']['locale_path'] = '/srv/awesome/data/locale';
  $config['plugins']['locale_path'] = '/srv/awesome/data/locale';

with a structure like:
srv/
  awesome/
    data/
      locale/
        en/
          LC_MESSAGES/
            statusnet.po
            OpenID.po
            AnonymousFave.po

etc, all alongside each other. You could separate plugins from the core if you like.

Where locale files have not already been generated, you can build one for a plugin like so:

  php scripts/update_po_templates.php --plugin=MyPlugin

and pull out the template file:

  plugins/MyPlugin/locale/MyPlugin.pot

Edit that (make sure you at least set the CHARSET, probably to UTF-8) and save your customized .po
files into the structure as above, and use msgfmt to generate .mo files for final output.

13 years agoAdd helper metadata on individual notice pages to aid sharing to Facebook (use poster...
Brion Vibber [Fri, 1 Oct 2010 01:21:38 +0000 (18:21 -0700)]
Add helper metadata on individual notice pages to aid sharing to Facebook (use poster's avatar as image, indicate the text content)

13 years agoShareNotice plugin -- basic buttons per-notice to share the text & a link to the...
Brion Vibber [Fri, 1 Oct 2010 01:02:02 +0000 (18:02 -0700)]
ShareNotice plugin -- basic buttons per-notice to share the text & a link to the notice on other sites.
Default settings list Twitter, Facebook, and Identi.ca as targets.

Using icons built-in, and no magic offsite JS or anything so it won't slow down or break if third-party site goes down.
Default styles are a little limited, but can be customized in theme should one be so inclined.

13 years agoForceGroup plugin: optionally force new users to join a particular group or set of...
Brion Vibber [Thu, 30 Sep 2010 23:25:15 +0000 (16:25 -0700)]
ForceGroup plugin: optionally force new users to join a particular group or set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core.

13 years agoGroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages...
Brion Vibber [Thu, 30 Sep 2010 22:56:38 +0000 (15:56 -0700)]
GroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages subset for just posts in the group. Not necessarily terribly efficient, should be tested and benchmarked on non-trivial sites

13 years agofix comment
Brion Vibber [Thu, 30 Sep 2010 21:52:00 +0000 (14:52 -0700)]
fix comment

13 years agoInitial SlicedFavorites plugin to allow for customized variants of 'Popular' tab...
Brion Vibber [Thu, 30 Sep 2010 21:46:32 +0000 (14:46 -0700)]
Initial SlicedFavorites plugin to allow for customized variants of 'Popular' tab (favorited action) that include or exclude a given set of users. No added UI tabs in this version, beware!

13 years agoForgot to update a call in DisqusPlugin
Zach Copley [Thu, 30 Sep 2010 23:59:05 +0000 (16:59 -0700)]
Forgot to update a call in DisqusPlugin

13 years agoLess intrusive insertion of Disqus notice count into notice lists
Zach Copley [Thu, 30 Sep 2010 23:51:19 +0000 (16:51 -0700)]
Less intrusive insertion of Disqus notice count into notice lists

13 years agoChange Disqus plugin to allow restricting to users with "richedit" role
Zach Copley [Thu, 30 Sep 2010 23:39:56 +0000 (16:39 -0700)]
Change Disqus plugin to allow restricting to users with "richedit" role

13 years agoMerge branch 'anon-fave-plugin'
Zach Copley [Thu, 30 Sep 2010 20:57:39 +0000 (13:57 -0700)]
Merge branch 'anon-fave-plugin'

13 years agoAdd 'restricted' option to NoticeTitle; if set, only users with 'richedit' role get...
Brion Vibber [Thu, 30 Sep 2010 20:30:39 +0000 (13:30 -0700)]
Add 'restricted' option to NoticeTitle; if set, only users with 'richedit' role get the fancy extra title field.

13 years agoAdded an option to TinyMCE plugin to restrict the rich-text editor to users who have...
Brion Vibber [Thu, 30 Sep 2010 20:22:25 +0000 (13:22 -0700)]
Added an option to TinyMCE plugin to restrict the rich-text editor to users who have the 'richedit' role. This allows enabling it for a subset of accounts on a site while leaving other users using the regular posting system, which is more stable.

13 years agoMerge branch 'master' of gitorious.org:statusnet/mainline into feedfix
Brion Vibber [Thu, 30 Sep 2010 18:31:29 +0000 (11:31 -0700)]
Merge branch 'master' of gitorious.org:statusnet/mainline into feedfix

13 years agoAlways specify UTF-8 targt charset for html_entity_decode(); default is 8-bit ISO...
Brion Vibber [Thu, 30 Sep 2010 18:29:31 +0000 (11:29 -0700)]
Always specify UTF-8 targt charset for html_entity_decode(); default is 8-bit ISO-8859-1 which causes things to break when we later pass them through things that expect to work with UTF-8. For instance, running through preg_replace() with the /u option results in NULL, leading to problems with OStatus and SubMirror generating their plaintext versions and doing length-cropping.

13 years agoMerge branch 'anon-fave-plugin' of gitorious.org:~zcopley/statusnet/zcopleys-clone...
Zach Copley [Wed, 29 Sep 2010 23:42:45 +0000 (16:42 -0700)]
Merge branch 'anon-fave-plugin' of gitorious.org:~zcopley/statusnet/zcopleys-clone into anon-fave-plugin

13 years agoRemove debugging statements
Zach Copley [Wed, 29 Sep 2010 23:28:29 +0000 (16:28 -0700)]
Remove debugging statements

13 years agoMake createAnonProfile() static
Zach Copley [Wed, 29 Sep 2010 23:11:32 +0000 (16:11 -0700)]
Make createAnonProfile() static

13 years ago- Lookup anon profiles by ID (safer because they are guranteed to be unique) and...
Zach Copley [Wed, 29 Sep 2010 22:52:18 +0000 (15:52 -0700)]
- Lookup anon profiles by ID (safer because they are guranteed to be unique) and probably faster
- Obfuscate the anonymous user session token to make it hard to figure out the profile ID

13 years agoAjax update notice tally
Zach Copley [Wed, 29 Sep 2010 21:08:31 +0000 (14:08 -0700)]
Ajax update notice tally

13 years agoAdd Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks
Zach Copley [Wed, 29 Sep 2010 21:07:46 +0000 (14:07 -0700)]
Add Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks

13 years agoSet initialize_fave_tallys.php executable
Zach Copley [Wed, 29 Sep 2010 20:31:01 +0000 (13:31 -0700)]
Set initialize_fave_tallys.php executable

13 years agoIntialize new fave tallys with total existing fave count per notice
Zach Copley [Wed, 29 Sep 2010 20:29:58 +0000 (13:29 -0700)]
Intialize new fave tallys with total existing fave count per notice

13 years ago- Increment/decrement notice fave tally
Zach Copley [Wed, 29 Sep 2010 19:49:53 +0000 (12:49 -0700)]
- Increment/decrement notice fave tally
- Display tally in notice output

13 years agoAdd Start/EndShowNoticeInfo events
Zach Copley [Wed, 29 Sep 2010 19:49:26 +0000 (12:49 -0700)]
Add Start/EndShowNoticeInfo events

13 years agoNew DB_DataObject for storing favorites tally
Zach Copley [Wed, 29 Sep 2010 02:07:45 +0000 (19:07 -0700)]
New DB_DataObject for storing favorites tally

13 years agoInitial plugin for allowing anonymous favoriting
Zach Copley [Wed, 29 Sep 2010 00:17:09 +0000 (17:17 -0700)]
Initial plugin for allowing anonymous favoriting

13 years agoNew eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm
Zach Copley [Wed, 29 Sep 2010 00:09:34 +0000 (17:09 -0700)]
New eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm

13 years agoAdd Start/EndShowNoticeItem event hooks to single notice page
Zach Copley [Tue, 28 Sep 2010 22:56:11 +0000 (15:56 -0700)]
Add Start/EndShowNoticeItem event hooks to single notice page

13 years agoMove blowFavesCache() to Profile
Zach Copley [Tue, 28 Sep 2010 22:46:14 +0000 (15:46 -0700)]
Move blowFavesCache() to Profile

13 years agoMove hasFave() to Profile
Zach Copley [Mon, 27 Sep 2010 22:01:03 +0000 (15:01 -0700)]
Move hasFave() to Profile

13 years agoRemove debugging statements
Zach Copley [Wed, 29 Sep 2010 23:28:29 +0000 (16:28 -0700)]
Remove debugging statements

13 years agoMake createAnonProfile() static
Zach Copley [Wed, 29 Sep 2010 23:11:32 +0000 (16:11 -0700)]
Make createAnonProfile() static

13 years ago- Lookup anon profiles by ID (safer because they are guranteed to be unique) and...
Zach Copley [Wed, 29 Sep 2010 22:52:18 +0000 (15:52 -0700)]
- Lookup anon profiles by ID (safer because they are guranteed to be unique) and probably faster
- Obfuscate the anonymous user session token to make it hard to figure out the profile ID

13 years agoAjax update notice tally
Zach Copley [Wed, 29 Sep 2010 21:08:31 +0000 (14:08 -0700)]
Ajax update notice tally

13 years agoAdd Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks
Zach Copley [Wed, 29 Sep 2010 21:07:46 +0000 (14:07 -0700)]
Add Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks

13 years agoSet initialize_fave_tallys.php executable
Zach Copley [Wed, 29 Sep 2010 20:31:01 +0000 (13:31 -0700)]
Set initialize_fave_tallys.php executable

13 years agoIntialize new fave tallys with total existing fave count per notice
Zach Copley [Wed, 29 Sep 2010 20:29:58 +0000 (13:29 -0700)]
Intialize new fave tallys with total existing fave count per notice

13 years ago- Increment/decrement notice fave tally
Zach Copley [Wed, 29 Sep 2010 19:49:53 +0000 (12:49 -0700)]
- Increment/decrement notice fave tally
- Display tally in notice output

13 years agoAdd Start/EndShowNoticeInfo events
Zach Copley [Wed, 29 Sep 2010 19:49:26 +0000 (12:49 -0700)]
Add Start/EndShowNoticeInfo events

13 years agoMerge branch '0.9.x'
Evan Prodromou [Wed, 29 Sep 2010 17:24:48 +0000 (19:24 +0200)]
Merge branch '0.9.x'

13 years agoadd hooks to the feedlist widget to give fine-grained control over feed links
Evan Prodromou [Wed, 29 Sep 2010 17:23:46 +0000 (19:23 +0200)]
add hooks to the feedlist widget to give fine-grained control over feed links

13 years agoNew DB_DataObject for storing favorites tally
Zach Copley [Wed, 29 Sep 2010 02:07:45 +0000 (19:07 -0700)]
New DB_DataObject for storing favorites tally

13 years agoInitial plugin for allowing anonymous favoriting
Zach Copley [Wed, 29 Sep 2010 00:17:09 +0000 (17:17 -0700)]
Initial plugin for allowing anonymous favoriting

13 years agoNew eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm
Zach Copley [Wed, 29 Sep 2010 00:09:34 +0000 (17:09 -0700)]
New eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm

13 years agoYammerImport admin UI now auto-refreshes during running BG progress, whee
Brion Vibber [Tue, 28 Sep 2010 22:54:44 +0000 (15:54 -0700)]
YammerImport admin UI now auto-refreshes during running BG progress, whee

13 years agoMade YammerImport more robust against errors; can now pause/resume/reset the import...
Brion Vibber [Tue, 28 Sep 2010 22:45:00 +0000 (15:45 -0700)]
Made YammerImport more robust against errors; can now pause/resume/reset the import state from the admin interface.

13 years agoYammerImport: fix for importing over existing user/group nicknames; copies the new...
Brion Vibber [Tue, 28 Sep 2010 20:24:25 +0000 (13:24 -0700)]
YammerImport: fix for importing over existing user/group nicknames; copies the new data if available onto the existing entry

13 years agoYammerImport: set some more default fields for user_group registration (still need...
Brion Vibber [Tue, 28 Sep 2010 20:07:55 +0000 (13:07 -0700)]
YammerImport: set some more default fields for user_group registration (still need a group admin tho)

13 years agoYammerImporter: 'group_id' field not always present in message data; avoid notice...
Brion Vibber [Tue, 28 Sep 2010 20:02:34 +0000 (13:02 -0700)]
YammerImporter: 'group_id' field not always present in message data; avoid notice warning when checking it if it's missing

13 years agoMerge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
Brion Vibber [Tue, 28 Sep 2010 22:58:11 +0000 (15:58 -0700)]
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x

13 years agoAdd Start/EndShowNoticeItem event hooks to single notice page
Zach Copley [Tue, 28 Sep 2010 22:56:11 +0000 (15:56 -0700)]
Add Start/EndShowNoticeItem event hooks to single notice page

13 years agoYammerImport admin UI now auto-refreshes during running BG progress, whee
Brion Vibber [Tue, 28 Sep 2010 22:54:44 +0000 (15:54 -0700)]
YammerImport admin UI now auto-refreshes during running BG progress, whee

13 years agoMove blowFavesCache() to Profile
Zach Copley [Tue, 28 Sep 2010 22:46:14 +0000 (15:46 -0700)]
Move blowFavesCache() to Profile

13 years agoMade YammerImport more robust against errors; can now pause/resume/reset the import...
Brion Vibber [Tue, 28 Sep 2010 22:45:00 +0000 (15:45 -0700)]
Made YammerImport more robust against errors; can now pause/resume/reset the import state from the admin interface.

13 years ago* i18n/L10n and translator documentation updates.
Siebrand Mazeland [Tue, 28 Sep 2010 22:39:45 +0000 (00:39 +0200)]
* i18n/L10n and translator documentation updates.
* whitespace and indentation updates

13 years ago* i18n/L10n and translator documentation updates.
Siebrand Mazeland [Tue, 28 Sep 2010 21:42:18 +0000 (23:42 +0200)]
* i18n/L10n and translator documentation updates.
* whitespace and indentation updates

13 years ago* i18n/L10n and translator documentation updates.
Siebrand Mazeland [Tue, 28 Sep 2010 21:21:09 +0000 (23:21 +0200)]
* i18n/L10n and translator documentation updates.
* whitespace and indentation updates

13 years agoYammerImport: fix for importing over existing user/group nicknames; copies the new...
Brion Vibber [Tue, 28 Sep 2010 20:24:25 +0000 (13:24 -0700)]
YammerImport: fix for importing over existing user/group nicknames; copies the new data if available onto the existing entry

13 years agoYammerImport: set some more default fields for user_group registration (still need...
Brion Vibber [Tue, 28 Sep 2010 20:07:55 +0000 (13:07 -0700)]
YammerImport: set some more default fields for user_group registration (still need a group admin tho)

13 years agoYammerImporter: 'group_id' field not always present in message data; avoid notice...
Brion Vibber [Tue, 28 Sep 2010 20:02:34 +0000 (13:02 -0700)]
YammerImporter: 'group_id' field not always present in message data; avoid notice warning when checking it if it's missing

13 years agoMerge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
Brion Vibber [Tue, 28 Sep 2010 19:59:23 +0000 (12:59 -0700)]
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x

13 years agoLocalisation updates from http://translatewiki.net
Siebrand Mazeland [Tue, 28 Sep 2010 19:06:47 +0000 (21:06 +0200)]
Localisation updates from http://translatewiki.net
* adding the fuzzy messages back now that translatewiki.net processes them properly again.

13 years agoPHP 5.2 compat fix in YammerPlugin (can't call $var::staticFunction() directly until...
Brion Vibber [Tue, 28 Sep 2010 18:52:19 +0000 (11:52 -0700)]
PHP 5.2 compat fix in YammerPlugin (can't call $var::staticFunction() directly until PHP 5.3)

13 years agoMerge branch '0.9.x'
Evan Prodromou [Tue, 28 Sep 2010 15:06:32 +0000 (11:06 -0400)]
Merge branch '0.9.x'

13 years agoMerge branch 'yammer-master'
Brion Vibber [Tue, 28 Sep 2010 14:45:43 +0000 (07:45 -0700)]
Merge branch 'yammer-master'

13 years agoEnhanced OStatus fixup-shadow.php cleanup script to check for direct matches against...
Brion Vibber [Mon, 27 Sep 2010 21:23:10 +0000 (14:23 -0700)]
Enhanced OStatus fixup-shadow.php cleanup script to check for direct matches against user.uri and user_group.uri (for local groups). This should catch cases that were missed before because we were only doing pattern-matching checks, and the pattern didn't match because the site has been renamed and the old URI no longer matches the current domain / path structure.
Could use some more thorough testing in practice!

13 years agoupdate README for YammerImport
Brion Vibber [Tue, 28 Sep 2010 00:12:06 +0000 (17:12 -0700)]
update README for YammerImport

13 years agoYammer import API keys can now be overridden by the admin.
Brion Vibber [Mon, 27 Sep 2010 23:56:48 +0000 (16:56 -0700)]
Yammer import API keys can now be overridden by the admin.

13 years agoYammer import (work run via background queues) now can be started from the admin...
Brion Vibber [Mon, 27 Sep 2010 20:34:35 +0000 (13:34 -0700)]
Yammer import (work run via background queues) now can be started from the admin panel! :DDDD Still requires that the app be registered on your network manually first.

13 years agoOk, got the AJAX clicky-throughs working for yammer auth (if app is already registere...
Brion Vibber [Mon, 27 Sep 2010 19:34:01 +0000 (12:34 -0700)]
Ok, got the AJAX clicky-throughs working for yammer auth (if app is already registered), but needs prettification. Yammer ignores callback URLs unless they're pre-registered with the app, and this apparently requires manual intervention to become a 'trusted' app, you don't get it on those you register yourself. Sigh. Also can't use an iframe since it breaks out of the frame (fair 'nuff)

13 years agoWork in progress on fixing auth... looks like the iframe doesn't work though. Sigh.
Brion Vibber [Mon, 27 Sep 2010 19:24:10 +0000 (12:24 -0700)]
Work in progress on fixing auth... looks like the iframe doesn't work though. Sigh.

13 years agoWork in progress on getting the frontend Yammer import form going....
Brion Vibber [Sat, 25 Sep 2010 00:22:44 +0000 (17:22 -0700)]
Work in progress on getting the frontend Yammer import form going....

13 years agoPretty it up a bit more
Brion Vibber [Fri, 24 Sep 2010 23:27:33 +0000 (16:27 -0700)]
Pretty it up a bit more

13 years agoPretty up the Yammer import status display a bit
Brion Vibber [Fri, 24 Sep 2010 23:15:45 +0000 (16:15 -0700)]
Pretty up the Yammer import status display a bit

13 years agoInitial progress display of Yammer import state in admin panel
Brion Vibber [Fri, 24 Sep 2010 21:52:51 +0000 (14:52 -0700)]
Initial progress display of Yammer import state in admin panel

13 years agoOk, command-line workflow for YammerImportPlugin seems to mostly work, at least on...
Brion Vibber [Fri, 24 Sep 2010 00:55:13 +0000 (17:55 -0700)]
Ok, command-line workflow for YammerImportPlugin seems to mostly work, at least on tiny test site :D

13 years agoWork in progress: most of the infrastructure for running import via BG queues or...
Brion Vibber [Thu, 23 Sep 2010 23:40:22 +0000 (16:40 -0700)]
Work in progress: most of the infrastructure for running import via BG queues or CLI script is now in place (untested, no UI, needs tweaks & fixes)

13 years agoWork in progress: YammerRunner state machine wrapper for running the Yammer import...
Brion Vibber [Thu, 23 Sep 2010 22:23:56 +0000 (15:23 -0700)]
Work in progress: YammerRunner state machine wrapper for running the Yammer import in chunks.

13 years agoA little more cleanup...
Brion Vibber [Thu, 23 Sep 2010 19:52:58 +0000 (12:52 -0700)]
A little more cleanup...

13 years agoMore doc comments on SN_YammerClient
Brion Vibber [Thu, 23 Sep 2010 00:53:38 +0000 (17:53 -0700)]
More doc comments on SN_YammerClient

13 years agoWORK IN PROGRESS: Starting infrastructure to initiate Yammer import from web UI and...
Brion Vibber [Thu, 23 Sep 2010 00:51:50 +0000 (17:51 -0700)]
WORK IN PROGRESS: Starting infrastructure to initiate Yammer import from web UI and process it in the background queues. Totally not complete yet.

13 years agoInitial README for yammer importer
Brion Vibber [Wed, 22 Sep 2010 20:12:39 +0000 (13:12 -0700)]
Initial README for yammer importer

13 years agoSplit Yammer importer files into subdirs before I get too lost adding UI
Brion Vibber [Wed, 22 Sep 2010 19:52:34 +0000 (12:52 -0700)]
Split Yammer importer files into subdirs before I get too lost adding UI

13 years agoFixes for Yammer groups import: pulling explicit list, fixed avatar fetch
Brion Vibber [Wed, 22 Sep 2010 06:19:36 +0000 (23:19 -0700)]
Fixes for Yammer groups import: pulling explicit list, fixed avatar fetch

13 years agoSupport non-image file uploads in Yammer import
Brion Vibber [Wed, 22 Sep 2010 05:00:25 +0000 (22:00 -0700)]
Support non-image file uploads in Yammer import

13 years agoAdd group link on Yammer import (won't work until memberships are fixed)
Brion Vibber [Wed, 22 Sep 2010 01:21:36 +0000 (18:21 -0700)]
Add group link on Yammer import (won't work until memberships are fixed)

13 years agoFetch more user data in Yammer imports, including the primary email address (preconfi...
Brion Vibber [Wed, 22 Sep 2010 01:15:32 +0000 (18:15 -0700)]
Fetch more user data in Yammer imports, including the primary email address (preconfirmed, so we can do stuff like tell people to reset their passwords and log in!) and some bio info.

13 years agoYammer import: mark group posts with the proper group inbox (should we append a ...
Brion Vibber [Wed, 22 Sep 2010 00:35:32 +0000 (17:35 -0700)]
Yammer import: mark group posts with the proper group inbox (should we append a !foo or leave them as is, as current?)

13 years agoPull group descriptions in Yammer import
Brion Vibber [Wed, 22 Sep 2010 00:25:02 +0000 (17:25 -0700)]
Pull group descriptions in Yammer import

13 years agoImage file attachment support for Yammer import
Brion Vibber [Wed, 22 Sep 2010 00:08:40 +0000 (17:08 -0700)]
Image file attachment support for Yammer import

13 years agoCopy favorites in Yammer importer
Brion Vibber [Tue, 21 Sep 2010 23:27:26 +0000 (16:27 -0700)]
Copy favorites in Yammer importer