]>
git.mxchange.org Git - quix0rs-gnu-social.git/log
Evan Prodromou [Mon, 23 May 2011 16:30:34 +0000 (12:30 -0400)]
render question description in QnA plugin
Evan Prodromou [Fri, 20 May 2011 13:09:37 +0000 (06:09 -0700)]
minor alpha version for i18n build errors
Evan Prodromou [Fri, 20 May 2011 13:08:42 +0000 (06:08 -0700)]
remove stray newlines that were causing problems with the build
Evan Prodromou [Fri, 20 May 2011 13:03:36 +0000 (06:03 -0700)]
rev to alpha3
Zach Copley [Mon, 16 May 2011 20:25:26 +0000 (13:25 -0700)]
Script to cancel an email registration
Zach Copley [Tue, 10 May 2011 21:47:05 +0000 (14:47 -0700)]
When showing the email invite dropdowns, pre-select the user's own domain as the first option
Zach Copley [Tue, 10 May 2011 00:07:36 +0000 (17:07 -0700)]
Fancier invitation form for whitelisted domains
Squashed commit of the following:
commit
1c0766e8f9d9e962ec553e2fb35bd2f944ffb4b0
Author: Zach Copley <zach@status.net>
Date: Mon May 9 17:00:51 2011 -0700
Make the invites from the fancier invite form save
commit
9ea45b7cf38eda8dad1d82e87b3400413a532079
Author: Zach Copley <zach@status.net>
Date: Fri May 6 16:14:40 2011 -0700
.js to let the user add (and remove) additional invitees from their domain
commit
b2a02339bd11d02c7cba24629dde359e22de32b6
Author: Zach Copley <zach@status.net>
Date: Thu May 5 15:44:49 2011 -0700
Load special whitelist invite .js when loading the invite page
commit
132fed7550b40cd1d46ee506fd83974a116bce32
Author: Zach Copley <zach@status.net>
Date: Wed May 4 18:35:49 2011 -0700
Remove settings class from whitelist inviter form
commit
a38437351b505594aead5da86af9a5ed089666b6
Author: Zach Copley <zach@status.net>
Date: Wed May 4 18:21:18 2011 -0700
Make a fancier form for whitelist domain invites
commit
710d4f41edf412871a9c1fbf33af317226485325
Author: Zach Copley <zach@status.net>
Date: Wed May 4 17:34:09 2011 -0700
Add some more events to the invitation page
commit
2449e4e0c1bf11568968cfc3ea2d8e69db2d875e
Author: Zach Copley <zach@status.net>
Date: Wed May 4 17:12:36 2011 -0700
Refactor invite action a bit
Siebrand Mazeland [Sun, 8 May 2011 08:12:05 +0000 (10:12 +0200)]
Fix i18n issues.
Update translator documentation.
Whitespace updates.
Evan Prodromou [Sat, 7 May 2011 00:19:05 +0000 (17:19 -0700)]
Merge remote-tracking branch 'gitorious/1.0.x' into 1.0.x
Evan Prodromou [Sat, 7 May 2011 00:18:38 +0000 (17:18 -0700)]
hook for defining new read-write tables
Zach Copley [Thu, 5 May 2011 22:00:16 +0000 (15:00 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
Zach Copley [Thu, 5 May 2011 21:57:38 +0000 (14:57 -0700)]
* Show group descriptions in group directory
* Truncate descriptions and bios in directory list when > 140c
Evan Prodromou [Thu, 5 May 2011 21:45:50 +0000 (14:45 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
Evan Prodromou [Thu, 5 May 2011 21:38:19 +0000 (14:38 -0700)]
set the permissions properly for installer
Siebrand Mazeland [Thu, 5 May 2011 21:24:49 +0000 (23:24 +0200)]
Localisation updates from http://translatewiki.net.
Samantha Doherty [Thu, 5 May 2011 20:00:37 +0000 (16:00 -0400)]
Merge remote branch 'origin/1.0.x' into 1.0.x
Samantha Doherty [Thu, 5 May 2011 19:59:15 +0000 (15:59 -0400)]
More stylin for user and group directories.
Evan Prodromou [Thu, 5 May 2011 19:09:10 +0000 (12:09 -0700)]
Merge remote-tracking branch 'gitorious/1.0.x' into 1.0.x
Siebrand Mazeland [Thu, 5 May 2011 10:47:26 +0000 (12:47 +0200)]
Update translator documentation and L10n.
Siebrand Mazeland [Thu, 5 May 2011 10:41:10 +0000 (12:41 +0200)]
Hardcode newline outside of message to avoid issues with translations as fixed by Evan in Commit:
6868bf461a5186be3eac619b73cc6550c6048f93 .
Siebrand Mazeland [Thu, 5 May 2011 10:36:56 +0000 (12:36 +0200)]
Harcode three newlines that lead to issues with translations (as fixed in Commit:
5e7e5dd93cd3d73e2f2c93225cf8688844138380 by Evan).
Evan Prodromou [Thu, 5 May 2011 04:05:25 +0000 (21:05 -0700)]
Option to pre-load a plugin with checkschema script
One of the problems we've had with running large-scale hosting systems
for StatusNet is enabling new plugins. If the plugin is not enabled,
its database tables are not checked at script time. Conversely, if it
is enabled, it may take several hours to run checkschema for tens of
thousands of sites -- during which time users might see DB errors.
A new argument to checkschema lets it pre-load one or more plugins
before checking the schema. This lets us prepare the plugins' database
tables before they're used in production. In a multihome environment,
this can be combined with tags to gradually roll out a new plugin.
In the config file, a stanza like:
$site = Status_network::getFromHostname(...);
if ($site->hasTag('fooenabled')) {
addPlugin('Foo');
}
...will only enable the plugin on certain sites. Meanwhile, a bash
script like this should gradually enable the plugin:
# For all sites...
for site in `php allsites.php`; do
# Update the schema for the Foo plugin
php checkschema.php -s$site.wildcard -xFoo;
# Enable the Foo plugin
php settag.php -s$site.wildcard fooenabled;
done
Evan Prodromou [Thu, 5 May 2011 01:45:23 +0000 (18:45 -0700)]
Merge branch '1.0.x' into testing
Zach Copley [Wed, 4 May 2011 23:13:42 +0000 (16:13 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
Zach Copley [Wed, 4 May 2011 23:12:49 +0000 (16:12 -0700)]
Fix WSOD with EmailRegistration plugin's confirmation form
Evan Prodromou [Wed, 4 May 2011 22:00:50 +0000 (15:00 -0700)]
Merge branch '1.0.x' into testing
Evan Prodromou [Wed, 4 May 2011 21:59:39 +0000 (14:59 -0700)]
merge 0.9.x into 1.0.x
Evan Prodromou [Wed, 4 May 2011 21:46:36 +0000 (14:46 -0700)]
Merge branch 'master' into 0.9.x
Evan Prodromou [Wed, 4 May 2011 21:46:26 +0000 (14:46 -0700)]
Revert "add rss.me to notice source list"
This reverts commit
f1a14ba8015b690a10099f5d1e41ff320d2b6b88 .
Evan Prodromou [Wed, 4 May 2011 20:05:06 +0000 (13:05 -0700)]
Merge branch '1.0.x' into testing
Evan Prodromou [Wed, 4 May 2011 19:25:34 +0000 (12:25 -0700)]
source for registration email confirmation
Evan Prodromou [Wed, 4 May 2011 18:37:32 +0000 (11:37 -0700)]
Option for custom template for confirmation email
Evan Prodromou [Wed, 4 May 2011 18:37:03 +0000 (11:37 -0700)]
use a template for confirmation email
Evan Prodromou [Wed, 4 May 2011 18:30:56 +0000 (11:30 -0700)]
Document new docfile events
Evan Prodromou [Wed, 4 May 2011 18:28:49 +0000 (11:28 -0700)]
low-level hook for loading templates
Evan Prodromou [Wed, 4 May 2011 18:10:21 +0000 (11:10 -0700)]
optionally send welcome email in installforemail.php
Evan Prodromou [Wed, 4 May 2011 18:05:38 +0000 (11:05 -0700)]
send a confirmation email when registering by script
Evan Prodromou [Wed, 4 May 2011 17:49:46 +0000 (10:49 -0700)]
'Home' to 'Home timeline'
Evan Prodromou [Wed, 4 May 2011 17:48:12 +0000 (10:48 -0700)]
change 'You and friends' to 'Home'
Evan Prodromou [Wed, 4 May 2011 17:43:47 +0000 (10:43 -0700)]
remove object nav for search
Evan Prodromou [Tue, 3 May 2011 02:12:29 +0000 (19:12 -0700)]
Make EmailRegistration respect registration flags
The email registration code wasn't respecting site-closed or
site-inviteonly flags. This is fixed.
Evan Prodromou [Tue, 3 May 2011 01:51:09 +0000 (18:51 -0700)]
Fix error in domainstatusnetworkinstaller that cleared tags table
An error in the domainstatusnetworkinstaller cleared the tags table,
losing any information about sites on the service. (We discovered this
in production on StatusNet OnDemand). Conjunction of these factors: 1)
the installer code was using an insert()'ed object with an
auto-incrementing key, which because the statusnet.ini was incorrect,
wasn't getting updated. 2) It then called setTag() on that object,
which deletes all tags matching the id, then adds in the new ones. 3)
Because the ID was null, DB_DataObject deleted all rows in the table.
I've made a work-around that re-fetches the status_network object
based on its (unique) nickname, which gets the correct ID, which
should work for tags. Confirmed that it works. Still need to fix the
underlying problems, however.
Evan Prodromou [Mon, 2 May 2011 22:25:46 +0000 (15:25 -0700)]
Merge branch '1.0.x' into testing
Evan Prodromou [Mon, 2 May 2011 22:17:08 +0000 (15:17 -0700)]
let users login with email address
Evan Prodromou [Mon, 2 May 2011 18:59:47 +0000 (11:59 -0700)]
Merge branch '1.0.x' into testing
Zach Copley [Mon, 2 May 2011 18:57:25 +0000 (11:57 -0700)]
Revert "Kill off all document._importNode() calls except the ones used with the JQuery Form plugin (fixes an IE7 issue)"
This reverts commit
997d160002756050814241ad444d9cc74774cf83 .
Conflicts:
js/util.min.js
Zach Copley [Mon, 2 May 2011 18:55:28 +0000 (11:55 -0700)]
Revert "Fix syntax error"
This reverts commit
d1d530370ddd5443db6a35005ff748a47f092874 .
Zach Copley [Mon, 2 May 2011 18:55:16 +0000 (11:55 -0700)]
Revert "Revert back to using document._importNode() for ajax posting"
This reverts commit
b6ed694995fd0d36b1b768e753c1f03ddb96126c .
Zach Copley [Mon, 2 May 2011 18:55:04 +0000 (11:55 -0700)]
Revert "Arg. Gotta remember to take out console.log() debug statements before committing :D"
This reverts commit
bd3eb331a832841d684e20f6d86520a6ad1e5078 .
Evan Prodromou [Mon, 2 May 2011 18:21:37 +0000 (11:21 -0700)]
remove action-specific from RequireValidatedEmail
Evan Prodromou [Mon, 2 May 2011 00:25:59 +0000 (17:25 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
Samantha Doherty [Sun, 1 May 2011 18:09:44 +0000 (14:09 -0400)]
Style for Onboard plugin and a few new graphics.
Evan Prodromou [Fri, 29 Apr 2011 19:48:41 +0000 (12:48 -0700)]
fix warning for logs
Evan Prodromou [Fri, 29 Apr 2011 18:11:04 +0000 (11:11 -0700)]
whitespace problems in directory translations
Evan Prodromou [Fri, 29 Apr 2011 18:08:31 +0000 (11:08 -0700)]
error in uk translation file
Evan Prodromou [Fri, 29 Apr 2011 18:07:30 +0000 (11:07 -0700)]
fix fatal error in eo translation file
Evan Prodromou [Fri, 29 Apr 2011 18:02:03 +0000 (11:02 -0700)]
fixup bug in sv translation
Evan Prodromou [Fri, 29 Apr 2011 18:01:02 +0000 (11:01 -0700)]
fixup bug in tl translation
Evan Prodromou [Fri, 29 Apr 2011 18:00:24 +0000 (11:00 -0700)]
fixup bug in sv translation
Evan Prodromou [Fri, 29 Apr 2011 17:58:55 +0000 (10:58 -0700)]
fixup bug in nl translation
Evan Prodromou [Fri, 29 Apr 2011 17:58:14 +0000 (10:58 -0700)]
fixup bug in mk translation
Evan Prodromou [Fri, 29 Apr 2011 17:57:18 +0000 (10:57 -0700)]
fixup bug in ko translation
Evan Prodromou [Fri, 29 Apr 2011 17:56:20 +0000 (10:56 -0700)]
fixup bug in ia translation
Evan Prodromou [Fri, 29 Apr 2011 17:55:02 +0000 (10:55 -0700)]
fixup bug in de status
Siebrand Mazeland [Fri, 29 Apr 2011 17:23:13 +0000 (19:23 +0200)]
Simplify message.
Siebrand Mazeland [Fri, 29 Apr 2011 17:22:44 +0000 (19:22 +0200)]
Update translator documentation.
Update L10n.
Update whitespace.
Siebrand Mazeland [Fri, 29 Apr 2011 16:59:47 +0000 (18:59 +0200)]
Fix L10n/i18n.
Some remaining people tag -> list.
Favor -> like
Update translator documentation.
Whitespace updates.
Siebrand Mazeland [Fri, 29 Apr 2011 15:11:22 +0000 (17:11 +0200)]
Update i18n,
Add onPluginVersion().
Add translator documentation.
Update whitespace.
Siebrand Mazeland [Fri, 29 Apr 2011 10:30:30 +0000 (12:30 +0200)]
Whitespace updates.
Translator documentation.
Zach Copley [Thu, 28 Apr 2011 22:54:13 +0000 (15:54 -0700)]
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
* '1.0.x' of gitorious.org:statusnet/mainline:
more verbose, better checks for installforemail
Check for unavailable site nicknames in DomainStatusNetwork
Status_network::setupDB() sets up related tables too
Class to store unavailable status network names
First version of installer for domain-based status networks
Ignore empty email whitelist string
Don't redefine 'STATUSNET' in installer
move registeremailuser.php back to email registration
Move common domain-to-network mapping to the plugin module
move external libs for domains here
move domain status network scripts
Revert "Add DomainStatusNetwork plugin"
add DomainStatusNetwork plugin
Add DomainStatusNetwork plugin
utility functions for setting config options in memory
get a free site nickname by email or domain
TLD utilities
script to determine site nickname by domain
lookup a statusnetwork by tag
Zach Copley [Thu, 28 Apr 2011 22:53:17 +0000 (15:53 -0700)]
Add registration events to EmailregisterAction
Evan Prodromou [Thu, 28 Apr 2011 22:30:59 +0000 (15:30 -0700)]
more verbose, better checks for installforemail
Evan Prodromou [Thu, 28 Apr 2011 22:30:23 +0000 (15:30 -0700)]
Check for unavailable site nicknames in DomainStatusNetwork
Evan Prodromou [Thu, 28 Apr 2011 22:29:36 +0000 (15:29 -0700)]
Status_network::setupDB() sets up related tables too
Evan Prodromou [Thu, 28 Apr 2011 22:29:13 +0000 (15:29 -0700)]
Class to store unavailable status network names
Evan Prodromou [Thu, 28 Apr 2011 19:44:21 +0000 (12:44 -0700)]
Merge branch 'emailsitesetup' into 1.0.x
Evan Prodromou [Thu, 28 Apr 2011 19:39:59 +0000 (12:39 -0700)]
First version of installer for domain-based status networks
New installer class for domain-based status networks. (XXX: this should
probably be generalized for all multi-home systems). New script to run that
installer.
Evan Prodromou [Thu, 28 Apr 2011 19:39:23 +0000 (12:39 -0700)]
Ignore empty email whitelist string
Evan Prodromou [Thu, 28 Apr 2011 19:38:07 +0000 (12:38 -0700)]
Don't redefine 'STATUSNET' in installer
Craig Andrews [Thu, 28 Apr 2011 17:25:16 +0000 (13:25 -0400)]
Fix infinite scroll to work on 1.0.x
add on_next_only configuration option
Zach Copley [Thu, 28 Apr 2011 02:34:51 +0000 (19:34 -0700)]
Arg. Gotta remember to take out console.log() debug statements before committing :D
Zach Copley [Thu, 28 Apr 2011 02:31:27 +0000 (19:31 -0700)]
Revert back to using document._importNode() for ajax posting
Zach Copley [Thu, 28 Apr 2011 01:31:49 +0000 (18:31 -0700)]
Minimize latest util.js
Zach Copley [Thu, 28 Apr 2011 01:27:42 +0000 (18:27 -0700)]
Fix syntax error
Zach Copley [Thu, 28 Apr 2011 00:40:51 +0000 (17:40 -0700)]
Fix broken event names
Evan Prodromou [Wed, 27 Apr 2011 21:54:21 +0000 (14:54 -0700)]
move registeremailuser.php back to email registration
Evan Prodromou [Wed, 27 Apr 2011 21:48:26 +0000 (14:48 -0700)]
Move common domain-to-network mapping to the plugin module
Zach Copley [Wed, 27 Apr 2011 19:40:43 +0000 (19:40 +0000)]
Fix URLs to reflect change in reCAPTCHA API
Zach Copley [Wed, 27 Apr 2011 19:40:43 +0000 (19:40 +0000)]
Fix URLs to reflect change in reCAPTCHA API
Zach Copley [Wed, 27 Apr 2011 19:40:43 +0000 (19:40 +0000)]
Fix URLs to reflect change in reCAPTCHA API
Evan Prodromou [Wed, 27 Apr 2011 18:38:47 +0000 (14:38 -0400)]
move external libs for domains here
Siebrand Mazeland [Wed, 27 Apr 2011 18:37:44 +0000 (20:37 +0200)]
Update translator documentation.
L10n/i18n fixes.
Update whitespace.
Siebrand Mazeland [Wed, 27 Apr 2011 17:31:02 +0000 (19:31 +0200)]
Remove locale files. Plugin no longer has a UI.
Whitespace update.
Siebrand Mazeland [Wed, 27 Apr 2011 12:53:02 +0000 (14:53 +0200)]
Localisation updates from http://translatewiki.net.
Siebrand Mazeland [Wed, 27 Apr 2011 12:30:58 +0000 (14:30 +0200)]
Update translator documentation.
Siebrand Mazeland [Wed, 27 Apr 2011 12:13:49 +0000 (14:13 +0200)]
Fix typo. Spotted by Peter17.
Zach Copley [Tue, 26 Apr 2011 22:55:59 +0000 (15:55 -0700)]
Kill off all document._importNode() calls except the ones used with the JQuery Form plugin (fixes an IE7 issue)
Evan Prodromou [Tue, 26 Apr 2011 21:48:01 +0000 (17:48 -0400)]
move domain status network scripts
Evan Prodromou [Tue, 26 Apr 2011 20:52:04 +0000 (16:52 -0400)]
Revert "Add DomainStatusNetwork plugin"
This reverts commit
4479e7efc79245f67c718148340a4c0057b74f9e .
Evan Prodromou [Tue, 26 Apr 2011 20:51:49 +0000 (16:51 -0400)]
add DomainStatusNetwork plugin