This link has been bookmarked by 229 people . It was first bookmarked on 11 Sep 2007, by Maggie Tsai.
-
08 Apr 13
-
17 Jan 13
-
18 Oct 12
-
05 Jun 12
-
17 Oct 11
-
04 Aug 11
-
08 Jul 10
-
22 May 10
-
16 Apr 10
-
10 Aug 09
-
14 Jul 09
-
08 May 09
Randall DoughmanWelcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies. Hopefully, it provides you with a good overview of the technologies, some ideas for
-
23 Oct 08
-
22 Aug 08
-
20 Aug 08
-
18 Aug 08
-
16 Aug 08
-
14 Aug 08
-
Geoff CainWelcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies.
-
13 Aug 08
-
02 Aug 08
Marg Wilkinsondevoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies..........excellent
-
31 Jul 08
-
25 Jul 08
-
24 Jul 08
-
23 Jul 08
-
20 Jul 08
-
18 Jul 08
-
16 Jul 08
-
15 Jul 08
pjt111 taylorresources for the classroom and professional-development use of Web 2.0 (i.e., 2-way and group interaction) and collaborative technologies
-
14 Jul 08
-
12 Jul 08
-
10 Jul 08
-
09 Jul 08
-
07 Jul 08
-
05 Jul 08
Michelle BourgeoisWiki site with info and live events to help teachers incorporate web tools into teaching.
collaboration 1:1 ProfessionalDevelopment Web2.0Tools wiki socialnetworking community presoideas
-
02 Jul 08
-
01 Jul 08
-
30 Jun 08
-
28 Jun 08
coachrobboWelcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies.
education elearning learning school web2.0 resources wiki teechnology ict for:skarabatsos for:kate.thomas47 for:twomeyl for:exsprinter for:cookm
-
26 Jun 08
-
25 Jun 08
-
23 Jun 08
-
21 Jun 08
-
20 Jun 08
-
18 Jun 08
-
17 Jun 08
Steve DickieWelcome
Welcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies. Hopefully, it provides you with a good overview of the technologies, some ideas for lesson plans, and then points you in the direction of more detailed resources. Click here for the Classroom 2.0 social network. -
13 Jun 08
-
Library OnlineReally useful resources for education, from this Web2.0 wiki
-
10 Jun 08
-
09 Jun 08
-
01 Jun 08
-
31 May 08
-
30 May 08
-
29 May 08
-
Leigh NewtonWelcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies.
-
-
<script type="text/javascript"> <!-- var autosaveDetected = false; var checkoutStatus = ''; var checkoutUser = ''; var checkoutMessage = ''; function disableEditButton(element) { if (element.className == 'WikiPageMenuEditButton') { element.className='WikiPageMenuEditButtonDisabled'; } jQuery(element).unbind("click"); element.style.cursor='default'; element.href='#'; return true; } function enableEditButton(element) { log('enabledEditButton'); if (element.className == 'WikiPageMenuEditButtonDisabled') { element.className='WikiPageMenuEditButton'; } jQuery(element).click(function() { jQuery('.WikiNotice').remove(); jQuery('.WikiBanner').remove(); try { disableEditButton(element); showFiles(); editorEnable(); return false; } catch (e) { element.href = '/page/edit/' + encodeURIComponent(wikispaces_page); redirectToEditPage(false); return true; } }); element.style.cursor='pointer'; element.href='/page/edit/' + encodeURIComponent(wikispaces_page); return true; } function editorEnable() { if (navigator.userAgent.toLowerCase().indexOf('safari') + 1 || navigator.userAgent.toLowerCase().indexOf('opera') + 1) { redirectToEditPage(true); exit(); } try { var url = '/page/dump/' + encodeURIComponent(wikispaces_page) + '?format=Wikispaces2'; jQuery.ajax({ url: url, type: "GET", timeout: 2000, global: false, error: redirectToEditPageCallback, success: editorEnableCallback }); } catch (e) { redirectToEditPage(false); } } function redirectToEditPageCallback(request, errorString, errorException) { log('redirectToEditPageCallback'); redirectToEditPage(false); } function redirectToEditPage(textEditor) { log('redirectToEditPage'); document.location = '/page/edit/' + encodeURIComponent(wikispaces_page) + (textEditor ? '?texteditor=1' : ''); } function editorEnableCallback(xml) { log('editorEnableCallback'); // Load the fetched XML and set it up for the editor if (loadXMLData(xml)) { if (checkoutStatus == 'locked' && (!wikispaces_isUserLoggedIn || checkoutUser != wikispaces_username)) { alert(checkoutMessage); enableEditButton(document.getElementById('editButton')); return false; } // Fade before autosave or editor starts, so that we don't fade the popup windows fadeEditor(); // Setup autosave if (autosaveDetected) { log('autosaveDetected'); if (typeof(Dialog) != 'undefined') { if (typeof(showAutosavePopup) != 'undefined') { log('showAutosavePopup'); showAutosavePopup(); } else { log('ERROR: undefined showAutosavePopup'); redirectToEditPage(false); return false; } } else { log('ERROR: undefined Dialog'); redirectToEditPage(false); return false; } } else { //Only start the autosave loop after the modal autosave popup has closed or if it wasn't displayed log('autosaveLoop setTimeout'); setTimeout("autosaveLoop()", 1000); } jQuery('#editor_wrap').show(); if (customEditorStart('WikispacesEditorContentHidden')) { jQuery('#WikiTags').hide(); jQuery('#content_view').hide(); jQuery('#WikiAds').hide(); o = jQuery('#WikiAdMargin'); if (o) { o.css('marginRight', 0); } return true; } else { log('customEditorStart failed'); } } // Something failed, and we're in a callback, so we have to change the page location to the edit page like this redirectToEditPage(false); } function loadXMLData(xml) { log('loadXMLData'); try { var contentBlock = xml.getElementsByTagName('dump')[0].getElementsByTagName('content')[0]; var wikiPageData = ''; if (contentBlock && contentBlock.childNodes.length > 0) { for (var i = 0; i < contentBlock.childNodes.length; i++) { wikiPageData += contentBlock.childNodes[i].nodeValue; } } var versionBlock = xml.getElementsByTagName('dump')[0].getElementsByTagName('version')[0] if (versionBlock && versionBlock.firstChild) { version = versionBlock.firstChild.nodeValue; } // If we got back a version, but not any data if (!wikiPageData && version != 0) { return false; } // Store loaded page data in the same place that the edit page would have it if (wikiPageData) { document.getElementById('WikispacesEditorContentHidden').innerHTML = wikiPageData; } checkoutStatus = xml.getElementsByTagName('checkout')[0].getElementsByTagName('checkoutStatus')[0].firstChild.nodeValue; if (checkoutStatus == 'locked') { checkoutUser = xml.getElementsByTagName('checkout')[0].getElementsByTagName('checkoutUser')[0].firstChild.nodeValue; var checkoutDate = xml.getElementsByTagName('checkout')[0].getElementsByTagName('checkoutDate')[0].firstChild.nodeValue; var checkoutRefreshDate = xml.getElementsByTagName('checkout')[0].getElementsByTagName('checkoutRefreshDate')[0].firstChild.nodeValue; checkoutMessage = 'This page was locked for editing by ' + checkoutUser + ' on ' + checkoutDate + '. The page will be available for editing after the changes have been saved.'; } if (xml.getElementsByTagName('dump')[0].getElementsByTagName('autosave').length > 0) { var autosaveRoot = xml.getElementsByTagName('dump')[0].getElementsByTagName('autosave')[0]; var autosaveContentBlock = autosaveRoot.getElementsByTagName('autosaveContent')[0]; var autosaveContent = ''; if (autosaveContentBlock && autosaveContentBlock.childNodes.length > 0) { for (var i = 0; i < autosaveContentBlock.childNodes.length; i++) { autosaveContent += autosaveContentBlock.childNodes[i].nodeValue; } } var autosaveDate = autosaveRoot.getElementsByTagName('autosaveDate')[0].firstChild.nodeValue; autosaveVersion = autosaveRoot.getElementsByTagName('autosaveVersion')[0].firstChild.nodeValue; document.getElementById('autosavePrompt').innerHTML = '<h1>Draft Recovered</h1><p class="wikispaces_p">We have recovered an unsaved draft of this page, created ' + autosaveDate + '.</p>' + (autosaveVersion != version ? '<p class="wikispaces_p">However, another person has edited this page since your last draft. If you continue, their changes will be overwritten. To view these changes, <a href="/page/diff/' + encodeURIComponent(wikispaces_page) + '?v1=' + autosaveVersion + '&v2=' + version + '">click here</a>.</p>' : ''); document.getElementById('autosaveContent').innerHTML = autosaveContent; autosaveDetected = true; } return true; } catch (e) { return false; } } // Link the edit button to the dynamic in-page editor and remove the href to the standalone editor jQuery(document).ready(function() { if (document.getElementById('editButton')) { enableEditButton(document.getElementById('editButton')); } } ); //--> </script> <!-- The wiki div is styled in the customizable stylesheet -->
-
-
23 May 08
-
21 May 08
-
20 May 08
-
14 May 08
-
12 May 08
-
11 May 08
-
10 May 08
-
09 May 08
-
08 May 08
-
02 May 08
-
29 Apr 08
-
24 Apr 08
-
23 Apr 08
-
18 Apr 08
-
17 Apr 08
-
15 Apr 08
-
14 Apr 08
-
13 Apr 08
-
11 Apr 08
WiselyWelcome to the Classroom 2.0 wiki! This site is devoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies. Hopefully, it provides you with a good overview of the technologies, some ideas for lesson plans, and then points you in the direction of more detailed resources.
-
10 Apr 08
Boris Jaegerdevoted to building resources for the classroom and professional-development use of Web 2.0 and collaborative technologies.
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.