Just a couple of (hopefully) small changes.

I) I can logout from the top-right corner of the page - It would be nice if I could also login there too (for example "you are not logged in - log in")

2) new mail!!! (same place)

a.

5
Average: 5 (2 votes)

Trackback URL for this post:

http://www.londoncommons.net/trackback/5672

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Rachel Ayres's picture

blocks

Certain blocks that I have selected do not appear, or appear only selectively.

The "Other local alternative media" block was appearing for me at one point, but now seems to never be around.

and the "new users" (which I find really useful) was continuously switiching positions (from right below the "who's online" on the right, to under the block on the left, and is currently nowhere to be found.  

What gives? 

Anyone have any insight on this?

-r.

Trev McNaughton's picture

user controlled block visibility

all user set blocks should work now.. for some reason a bunch were disabled..they're now re-enabled..

all users can set which extra blocks they wish to show/hide when theyre logged in.. they can do this by editing their account by clicking the "edit" link up in the top right corner of the page beside they "signed in as ____ " block. 

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
Jeremy McNaughton's picture

groups and tags

Nodes (and their teasers) should display the tags and groups associated with them.  There should be a list of tags the post was tagged with.  And if it is a post to a group, the group(s) should be displayed. 

Trev McNaughton's picture

forums

yea, likewise with forums, but I think they're just breadcrumbs..  

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
alex homanchuk's picture

Once you start a

Once you start a list...

 The post ranking looks good (stars, although I would go with grayed-out rather than red once the ranking is submitted), however the comment ranking is just plain weirdness... The neighbor trope has really over-extended itself here - If I were looking to evaluate the value of the contribution of commenter in any kind of ranking scheme I work probably be interested in evaluating the novelty of thought, the substantive arguments, the accuracy and authority of the information provided not whether I thought they were a "good" or "bad" neighbor (if the Poster came across as hostile or submitted ideas that may be antithetical to my own)...

I think it’s really a move that encourages (rather than discourages) pushing content based on the relative popularity of an individual in the “LC Clique”.  I realize it’s not really the intent but “good neighbor” = “good post” really doesn’t jive

Alex (Super Neighbor with devil horns)

 

------------------------------------

"If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy."
-- James Madison

Jeremy McNaughton's picture

about the neighbours

I'm the one that came up with the good to bad neighbour scale.  The idea is to emphasize that rating comments is supposed to be about conduct not content.  I was trying to find a way to frame it so it's very clear that people shouldn't rate comments down because they disagree with them, but because the comment is rude or hostile.

The karma system that rating comments is part of is designed to be a community moderation system, where users themselves filter out trolls and flamers with the rating system. 

Doesn't matter to me what we call it really.  We could make it something silly like the spacebucks (which can also be renamed).   

Slashdot has a +1 or -1 system instead of rating on a scale of 0-5, but their ratings have names like +1 Insightful, +1 Funny or -1 Troll. 

Trev McNaughton's picture

just jotting down some code

okay, just jotting down some code ideas I have before I can test them at home..

the current user block is php that says:

"<?php
global $user;
{
$message .= '<div id="welcome_great">' . t('signed in as @user', array('@user' => $user->name)) . '</div>';
$message .= '<div id="name_list">' . t('<a href="@view">View</a> | <a href="@edit">Edit</a> | <a href="@logout">Logout</a>', array('@view' => url('user/' . $user->uid), '@edit' => url('user/' . $user->uid . '/edit'), '@logout' => url('logout'))) . '</div>';
}
?>
<div class="welcome"><?php print $message ?></div> "

what I'm thinking is adding an if and else statement:

"<?php
global $user;
if ($user->uid) {
$message .= '<div id="welcome_great">' . t('signed in as @user', array('@user' => $user->name)) . '</div>';
$message .= '<div id="name_list">' . t('<a href="@view">View</a> | <a href="@edit">Edit</a> | <a href="@logout">Logout</a>', array('@view' => url('user/' . $user->uid), '@edit' => url('user/' . $user->uid . '/edit'), '@logout' => url('logout'))) . '</div>';
}
else {
$message .= '<div id ="welcome_anon">' . t('you are not signed in:') .'</div>';
$message .='<div id ="welcome_login">' . t('<a href="@login">Login>, array('@login' => url('login')) . '</div>'
}
?>
<div class="welcome"><?php print $message ?></div>"

pretty sure this will work... I hope..

basically what it does is show the regular stuff for signed in user, and for anon users it would be: "you are not signed in: login" (login would be a link)

.. okay.. and.. I just peaked into the php code of the privatemessage module, and might be able to impliment the "inbox (1)" link into the current "signed in as" links..using possibly this code:

 "$items = array(
    l(t('Inbox') . ($new ? " ($new)" : ''), 'privatemsg'),"

or something similar...

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
alex homanchuk's picture

 Nice, I can't really

 Nice, I can't really evaulate the functionailty of the code (don't know enough about php myself) but i think it would certainly streamline the login/out process ... 

 

-----------------------------------

"If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy."
-- James Madison

Trev McNaughton's picture

works

got it to work on my test commons site.. only using this code instead.. simplified it:

"<?php
global $user;
if ($user->uid) {
$message .= '<div id="welcome_great">' . t('signed in as @user', array('@user' => $user->name)) . '</div>';
$message .= '<div id="name_list">' . t('<a href="@view">View</a> | <a href="@edit">Edit</a> | <a href="@logout">Logout</a>', array('@view' => url('user/' . $user->uid), '@edit' => url('user/' . $user->uid . '/edit'), '@logout' => url('logout'))) . '</div>';
}
else {
$message .='<div id="welcome_great">' . t('you are not signed in - <a href="user/login">login</a>') . '</div>';
}
?>
<div class="welcome"><?php print $message ?></div>"

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
Trev McNaughton's picture

pm block

or, there's always the private message block, that we could thow up there as well.. instead of adding more code to a block.. 

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
Trev McNaughton's picture

the first two

  1. I could maybe create a log-in link there that would display to anonymous users, ideally we should have the login block that currently exists be located up there, but only shows on one line (instead of stacked like it currently is).. thomas would have to do that as he did the code for positioning it where it is..I'll make the code for a block though..
  2. the mail notifications are built into the module for private messages, and its VERY finicky. I'm still having a hard time getting it to show the bracketted numeric value in the menu link to indicate the number of unread messages in a users inbox. 

The other mail notification ( the one that shows up on the main section of each page that says "you have a new private message", won't be able to be moved up to that spot.  If we did this, then EVERY notification would be put up there, including error messages and longer messages such as the crew requests.  This would distort the header section way to much to be benefitial.  Plus I'm not even sure its even possible with this theme/software..

I could look at the Private message block that comes with the module and see if it can be modified to serve this purpose.. 

don't expect these things to be done immediately .. time is just not something I have surplus on, nor energy right now.. sorry, but its "the way of the road.." 

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
Mike McGregor's picture

breadcrumbs?

I'd like to see breadcrumbs leading back from images to the gallery they belong to... amoungst other places. that would be swell.

agreed on the location for the login, the grey links and mail notifications. 

-30-
Mike.
"Debout les damnés de l'Université."
-=There is no Cabal, Long live the Cabal=-
My Photos

Trev McNaughton's picture

breadcrumbs

who doesn't love breadcrumb links.. I miss them.. 

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
alex homanchuk's picture

also

 Gray hyperlinks make me want to stab somebodyhard and repeatedly....

 

------------------------------------

"If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy."
-- James Madison

Trev McNaughton's picture

colours

the colours in general seem to draw this out of me.. if they were even a bit more of a shaded version I could deal with it.. but they're soo bright, and distract from the content.. I'd love for pastel colours..

I've voiced this from the start, but I guess people like them..

the links though.. definately need to stand out as links, I didn't know alot of posts even contained links.. 

.

\x69 \x20 \x61 \x6d \x20 \x31 \x33 \x33 \x37
alex homanchuk's picture

Agree completely

 The intensity / saturation of the banner in combination with the green background is far far too busy.  It definately distracts from the site's content, but really the background should be background and not compete for attention (something more neutral would definately help greatly).

 

------------------------------------

"If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy."
-- James Madison

2008 LondonCommons.net / About / Terms & Policies