From 15aaae67d68baf3f65970e38b41a26cb516a085a Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 13:28:26 -0500 Subject: Another update to admin navigation alignment --- theme/base/css/display.css | 14 ++++++-------- theme/base/css/ie.css | 4 ++++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 964755832..bbbe4910c 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -364,15 +364,11 @@ width:100%; } body[id$=adminpanel] #site_nav_local_views { -float:right; -margin-right:18.9%; - -margin-right:189px; position:relative; -width:14.01%; - -width:141px; z-index:9; +float:right; +margin-right:18.65%; +width:14.25%; } body[id$=adminpanel] #site_nav_local_views li { width:100%; @@ -381,7 +377,9 @@ margin-bottom:7px; } body[id$=adminpanel] #site_nav_local_views a { display:block; -width:100%; +width:80%; +padding-right:10%; +padding-left:10%; border-radius-toprleft:0; -moz-border-radius-topleft:0; -webkit-border-top-left-radius:0; diff --git a/theme/base/css/ie.css b/theme/base/css/ie.css index 70a6fd11a..41d053ac4 100644 --- a/theme/base/css/ie.css +++ b/theme/base/css/ie.css @@ -47,3 +47,7 @@ z-index:9999; .notice .thumbnail img { z-index:9999; } + +.form_settings fieldset fieldset legend { +line-height:auto; +} -- cgit v1.2.3 From 938c5954fbbdbe77e651794a00e87d5f47b26c9f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:29:09 -0500 Subject: add blacklist and throttle plugin notes --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 10792c155..44bdd8fe2 100644 --- a/README +++ b/README @@ -115,6 +115,8 @@ Notable changes this version: - Plugin to support RSSCloud - A framework for adding advertisements to a public site, and plugins for Google AdSense and OpenX server +- Plugins to throttle excessive subscriptions and registrations. +- A plugin to blacklist particular URLs or nicknames. There are also literally thousands of bugs fixed and minor features added. A full changelog is available at http://status.net/wiki/StatusNet_0.9.0. -- cgit v1.2.3 From 36d86463e4c1812955394931dc9808b4657fc804 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 4 Mar 2010 13:31:49 -0500 Subject: Increased admin navigation width to handle longer text length --- theme/base/css/display.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index bbbe4910c..0246065a7 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -367,8 +367,8 @@ body[id$=adminpanel] #site_nav_local_views { position:relative; z-index:9; float:right; -margin-right:18.65%; -width:14.25%; +margin-right:10.65%; +width:22.25%; } body[id$=adminpanel] #site_nav_local_views li { width:100%; -- cgit v1.2.3 From b98fcffcd20eca741e3089bfcc87cbc4b95dbf22 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Mar 2010 13:34:05 -0500 Subject: some more editorial on README --- README | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/README b/README index 44bdd8fe2..cfc05246c 100644 --- a/README +++ b/README @@ -621,14 +621,10 @@ not visible to non-logged-in users. This might be useful for workgroups who want to share a microblogging site for project management, but host it on a public server. -Note that this is an experimental feature; total privacy is not -guaranteed or ensured. Also, privacy is all-or-nothing for a site; you -can't have some accounts or notices private, and others public. -Finally, the interaction of private sites with OStatus is -undefined. Remote users won't be able to subscribe to users on a -private site, but users of the private site may be able to subscribe -to users on a remote site. (Or not... it's not well tested.) The -"proper behaviour" hasn't been defined here, so handle with care. +Total privacy is not guaranteed or ensured. Also, privacy is +all-or-nothing for a site; you can't have some accounts or notices +private, and others public. The interaction of private sites +with OStatus is undefined. Access to file attachments can also be restricted to logged-in users only. 1. Add a directory outside the web root where your file uploads will be @@ -693,10 +689,10 @@ instructions; read to the end first before trying them. reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't do it without a known-good backup! - If your database is at version 0.7.4, you can run a special upgrade - script: + If your database is at version 0.8.0 or above, you can run a + special upgrade script: - mysql -u -p db/074to080.sql + mysql -u -p db/08to09.sql Otherwise, go to your StatusNet directory and AFTER YOU MAKE A BACKUP run the rebuilddb.sh script like this: @@ -761,10 +757,17 @@ Configuration options The main configuration file for StatusNet (excepting configurations for dependency software) is config.php in your StatusNet directory. If you -edit any other file in the directory, like lib/common.php (where most +edit any other file in the directory, like lib/default.php (where most of the defaults are defined), you will lose your configuration options in any upgrade, and you will wish that you had been more careful. +Starting with version 0.9.0, a Web based configuration panel has been +added to StatusNet. The preferred method for changing config options is +to use this panel. + +A command-line script, setconfig.php, can be used to set individual +configuration options. It's in the scripts/ directory. + Starting with version 0.7.1, you can put config files in the /etc/statusnet/ directory on your server, if it exists. Config files will be included in this order: -- cgit v1.2.3 From 8242dba179e9b025974a54bfea666d5eecb4c0e6 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 4 Mar 2010 10:34:12 -0800 Subject: Fix link to StatusNet bug tracker in README --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 44bdd8fe2..d59d77033 100644 --- a/README +++ b/README @@ -1543,8 +1543,8 @@ Feedback * Microblogging messages to http://support.status.net/ are very welcome. * The microblogging group http://identi.ca/group/statusnet is a good place to discuss the software. -* StatusNet's Trac server has a bug tracker for any defects you may find, - or ideas for making things better. http://status.net/trac/ +* StatusNet has a bug tracker for any defects you may find, or ideas for + making things better. http://status.net/bugs Credits ======= -- cgit v1.2.3