The Green Lantern movie is not good. Captain America will save us.

Wait for this to show up in your Netflix queue. Two stars, tops. Next one on the (my) list is Captain America: The First Avenger, in July, which looks great to me.

WSG comments on that Congressman Weiner Twitter thing you’ve heard so much about.

There’s no such thing as privacy on social networks and web applications; there are only degrees of sharing. You can intend to share with only one person or intend to share with millions. He wrote “@username ” instead of “D @username ” and the rest is history. But what’s the difference between these two extremes of sharing? In the case of NY Congressman Andrew Weiner, it appears the difference was as slight as a keystroke, but is that really the case?

Weiner’s mistake was sending a public message when he wanted to sent a private message, but how much protection would that really have provided? What if he had succeeded in sending his lewd photo as a private missive and the recipient had turned around and posted it to Twitter, Facebook, Digg, their blog, anywhere? The point here is that once you’ve sent it, private or public, you have surrendered control of the content. And if you’ve sent it from an account which is unquestionably yours, you can’t claim it wasn’t you. You can claim someone hacked your account, but that’s not a smart move unless you can prove it. Weiner tried to say he was hacked. Tried, and failed.

So, to summarize the take away:

1. Most private case: Send a piece of content to a friend or trusted recipient and only your friend reads it.
2. Least private case: Sent a piece of content to everyone who’s looking, whether you’re aware they’re looking or not.

In case 1, when anyone can pretend to be someone they’re not, your internet trolling might end with you sending sensitive information to the wroooooong person. Then case 1 turns into case 2, and your boat is sunk.

There is no such thing as privacy on social networks. Just degrees of sharing. Be. Careful.

Loved X-Men: First Class. Surprisingly fun.

Go see it. Next one up is the Green Lantern flick on Father’s Day weekend. (Probably going to stink.)

API Humor

This is a real instant message conversation about API calls. If you know what an API is, and you like fun, this is funny.

person1: have to call getmanifest to figure out the itemid for the forum
person2: does getmanifesto return a bunch of rantings?
person1: pretty much
person1: :)
person2: does setmanifesto send the rantings to print outlets?
person1: and directly to homeland security
person2: HAHA

I loved Thor. Loved it.

The Thor movie is awesome. Go see it. That is all.

 

How to create a simple content workflow in Drupal

If your web site is running on a content management platform like Drupal, one of the things you may have wanted to do is create a simple workflow to allow other users to enter content for you, to have other authors. Drupal handles this fairly well, as long as you ahve the right modules installed. We can get into modules in a later blog post.

For this example, the site owner wanted to allow people outside their organization to enter content straight into a community calendar. This workflow is applicable to any content type on the site, not just calendar items.

To achieve this, we used Drupal functionality, and added modules but made minimal code changes, if any at all. We allowed for approved users to submit events to a community calendar, which can be expanded to multiple roles, modified permissions and multiple content types as well.

This is roughly how it works:

1. User registers here /user/register and is approved or denied by the site owner. The user registration process is somewhat configurable, and the user will have no access unless a site administrator activates their account. User settings found here: /admin/user/settings

2. If approved, the site owner assigns the user the role of “event submitter (moderated)”. The user then has the ability to add events, but not publish them, as well as edit their own submissions.

When the account is approved (made active, role assigned) the user will need another manual, instructional e-mail so they know how to create the calendar. The account registration link should also be put into a block and placed on the sidebar along with all calendar content pages to promote the availability of user generated content.

3. The user will log into Drupal and see the admin toolbar, but only have the ability to create calendar events. The process is reasonably intuitive and memorable.

Users take this path in the admin toolbar: Content Management >> Create Content >> Community Calendar to reach the entry screen (/node/add/community-calendar). None of the other functions are enabled, most are not even visible.

Possible modifications would be to add e-mail notifications of new user registrations, if this isn’t already happening.

4. Notifications don’t currently exist to inform the site administrator of new unmoderated calendar submissions, so this modification would prove useful. Currently, the content approver (content manager role or admin role) would visit /admin/content/node/overview to see the entries, which would be listed as “not published” under “status”.

To approve one of these items for publishing, the moderator would open the entry for editing, scroll to “Publishing Options” at the bottom of the edit screen; check the box next to “Published” and save the record. After these steps, the content will show publicly on the calendar.

This may be another place where notifications could be useful, sending a notice to the submitting user that their content has been approved and published. Additionally, content may be deleted in the edit screen.

As users prove themselves trustworthy, the site owner could choose to create an unmoderated version of this role and allow these selected users to publish without requiring approval. Another mod would be to allow the users to see all of the content they’ve put in. Seems like this must be configurable but I don’t see it. Not sure why “content” isn’t showing in the content management menu for that role. Also would be useful to filter the list of content by creating user.

In this case, Drupal was changed in these ways to open this functionality:

Altered the calendar content type from published to unpublished.

Created a role and permissions for “event submitter (moderated)” and tested it, also testing the previous step by creating a calendar entry under this role.

Activated the profile module and added the Personal Information tab to it. (/admin/user/profile)

Created test user with the new profile tool active. Sends user to this confirmation message embedded on the home page in between the menu and the photo/content block.

The user sees this message on regisrtation if you don’t change it. “Thank you for applying for an account. Your account is currently pending approval by the site administrator. In the meantime, a welcome message with further instructions has been sent to your e-mail address.”

Now that you’ve read this, does it make sense to you? What else would you add? What questions does it raise? Leave us a comment!

Page 2 of 2212345...1020...Last »