Lms solutions have incorporated wiki & blog software. they are as such only accessible inside the course environment and lack some features that are common to blog or wiki software like wordpress or mediawiki. basic functions do work, but still people may not get the point of wikis and blogs through these tools. the point and the differences are important aspects, i hope to get further insight in the next few weeks.

Onlinerel Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

Ein paar Zahlen zu Facebook, Twitter, LinkedIn, Youtube und Blogging: http://dannybrown.me/2010/07/03/cool-facts-about-social-media/.

Onlinerel Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

Hierzu ein Aufsatz:
Tríona Hourigan and Liam Murray: Using blogs to help language students to develop reflective learning strategies: Towards a pedagogical framework
http://www.ascilite.org.au/ajet/ajet26/hourigan.html

Häufig stößt ein Einsatz von Blogs bei Lernenden auf Skepsis. Dieser benötigt einen Rahmen, d.h. zum Beispiel Leitfragen und Anreize.

Zum Blogeinsatz im Modul eTutoring im Wintersemester 09/10 habe ich ein Dokument verfasst. Dieser wird in diesem Semester leicht modifiziert durchgeführt.

Onlinerel Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

On information literacy:
Most journalists use social media such as Twitter and Facebook as a source | Media | guardian.co.uk

Informationsportal zu Informationskompetenz: i-literacy . Das bekommt 5 Sterne von mir.

Hier ist ein Aufsatz zum Einsatz eines Wiki mit Jigsaw-Didaktik enthalten:
Psychologiedidaktik und Evaluation VI – Google Bücher

Ein Wiki zu akademischen Blogs:
Main Page – AcademicBlogs

Ein Blogbeitrag unter vielen zur Schulmeister-Debatte: herrlarbig.de » Blog Archiv » Vernetzter Diskurs – Ein Beitrag zur „Schulmeister-Debatte“ . Schulmeister hat in der deutschen Edu-Blogosphäre eine Bombe gelegt mit seinem Beitrag “Ansichten zur Kommentarkultur in Weblogs”. Sehr spannend und passt auch zu meinem derzeitigen Thema Informationskompetenz. Außerdem ist der Einsatz von Blogs in der Hochschullehre deutlich schwieriger als zum Beispiel der von Wikis. Ich habe hier unseren Einsatz von Blogs im Rahmen einer Lehrveranstaltung dokumentiert.

Onlinerel Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon

Problem:
Registration possible only for the Main Blog with Setting “User Accounts Registration only”.
Required: Users can register for multiple Sub Blogs.

Use Case: A Faculty member set up different blogs. Students were assigned to write posts
on these blogs. They registered and had subscriber status for the Main Blog. Now they
were manually added to the desired blog. With approximately 100 students there is a lot to
do. So it would be nice to have students automatically sign up for a specific blog.

First solution:
WPMU Per-Blog Registrations Plugin by Nathan Kinkade:

http://code.creativecommons.org/viewsvn/wordpressmu/trunk/mu-

plugins/per_blog_registrations/perBlogRegistrations.php?view=log
This did not work for us. Users still got redirected to the Main Blog with wp-signup.php.

Second solution:
Prerequisite:
Sub Blog Setting is “Users can Register”: 1

Changes in wp-login.php:
1) In the Main part in case ‘register’ two lines should be commented out: wp_direct and
exit. These are the lines responsible for redirecting to wp-sign-up with the Main Blog.
If the redirect does not take place, users can register with the Sub Blog.
case ‘register’ :
// WPMU doesn’t use this
//wp_redirect( get_bloginfo(‘wpurl’) . ‘/wp-signup.php’ );
//exit;
With these changes users can register only once for one Sub Blog. For another Sub Blog
they would have to log in with a new account. To allow students to register with multiple
Sub Blogs further changes have to be made in wp-login.php.

2) For multiple Sub Blog Registration the function “register_new_user” is supplemented
by the following request: If a user is already registered username and email both have to
be existent. If they both exist, the user is added as a subscriber to the blog:
Following the line: $user_email = apply_filters( ‘user_registration_email’, $user_email );
these lines are added:

if( username_exists( $user_login ) && email_exists( $user_email ) )
{
$userid = username_exists( $user_login );
add_user_to_blog( $current_site->blog_id, $userid, “subscriber”);
}
else
{
The closing bracket is placed after return $user_id;

3. What does the user get? The user goes to register for the Sub Blog and fills in his or her
username and email adress. With first time registering a password is sent to the person’s
email adress. If already registered, there is no password sent. So it would be nice to read

Onlinerel Facebook Twitter Myspace Friendfeed Technorati del.icio.us Digg Google Yahoo Buzz StumbleUpon
© 2010 Kathrin Braungardts Blog Suffusion WordPress theme by Sayontan Sinha