Member since Aug 05, 2009, follows 0 people, 0 public groups, 212 public bookmarks (212 total).
More »
Tags
| Recent Tags: |
|
|---|---|
| Top Tags: |
|
More »
Recent Bookmarks and Annotations
-
IPTE5020: Individual Lesson Plans (Assess Student) on 2009-11-23
-
<!-- Doc section Review -->
“One new adaptation I learned about” on a piece of paper. (~2 minutes)
<!-- Section Ends here -->
<!-- Page Ends here -->
<!-- Document Section ends here -->
<script src="/assets/c1/js/LT/Dialogue.js?1258581098" type="text/javascript"></script>
<script src="/assets/c1/js/LT/DropDownDiv.js?1258581098" type="text/javascript"></script>
<script src="/assets/c1/js/LT/Form.js?1258581098" type="text/javascript"></script>
<script src="/assets/c1/js/LT/UserSearchDiv.js?1258581098" type="text/javascript"></script>
<script src="/assets/js/lib/scriptaculous/dragdrop.js?1258581098" type="text/javascript"></script>
<script src="/assets/js/lib/scriptaculous/controls.js?1258581098" type="text/javascript"></script>
<script src="/assets/js/lib/CachedAutocompleter.js?1258581098" type="text/javascript"></script>
<script type="text/javascript">
Event.observe(window, 'load', function () {
var copy_link = $("copyDocumentLink");
if (copy_link) {
copy_link.observe
( "click",
function () {
LT.Dialogue.prompt( 'Enter title of new document',
'Copy of Individual Lesson Plans',
function ( title ) {
if ( ! title ) {
return;
}
LT.Form.makeAndSubmitForm( "/misk5/copydoc",
{ title: title, doc: 5229870 } );
}
);
}
);
}
function addUserToTheList ( ul, user ) {
if (typeof LT.UserSearchDiv.TheList == "undefined") LT.UserSearchDiv.TheList = new Hash();
if (! LT.UserSearchDiv.TheList[ ul.id ] ) LT.UserSearchDiv.TheList[ ul.id ]= new Array();
if ( LT.UserSearchDiv.TheList[ ul.id ].indexOf( user ) != -1 ) return;
LT.UserSearchDiv.TheList[ ul.id ].push( user);
var li = document.createElement('LI');
li.appendChild( document.createTextNode( user ) );
ul.appendChild ( li );
}
function handleSubmit ( response ) {
var viewers = response.viewers;
var editors = response.editors;
var visitors = response.visitors;
var gviewers = response.gviewers;
var geditors = response.geditors;
var hasViewer = false;
var hasEditor = false;
for (var i=0; i < viewers.length; ++i) {
addUserToTheList( $('currentViewers'), LT.UserSearchDiv.UserMap.get( viewers[i] ) );
hasViewer = true;
}
for (var i=0; i < visitors.length; ++i) {
addUserToTheList( $('currentViewers'), LT.UserSearchDiv.VisitorMap.get( visitors[i] ) + " (visitor)" );
hasViewer = true;
}
for (var i=0; i < gviewers.length; ++i) {
addUserToTheList( $('currentViewers'), LT.UserSearchDiv.GroupMap.get( gviewers[i] ) + " (group)" );
hasViewer = true;
}
for (var i=0; i < editors.length; ++i) {
addUserToTheList( $('currentEditors'), LT.UserSearchDiv.UserMap.get( editors[i] ) );
hasEditor = true;
}
for (var i=0; i < geditors.length; ++i) {
addUserToTheList( $('currentEditors'), LT.UserSearchDiv.GroupMap.get( geditors[i] ) + " (group)" );
hasEditor = true;
}
if ( hasViewer ) {
$('currentViewerList').show();
}
if ( hasEditor ) {
$('currentEditorList').show();
}
}
LT.UserSearchDiv.instrumentDiv( {id:"sendForReview", id_group:"sendForReview", user:true, role:"review" } );
var isOkToHide = function () {
return !( $('shareDocumentViewerSubmitList').hasChildNodes() || $('shareDocumentEditorSubmitList').hasChildNodes() );
};
LT.UserSearchDiv.instrumentDiv( {
id:"shareDocumentViewer",
id_group:"shareDocument",
onSuccessSubmit:handleSubmit,
user:true,
visitor:true,
group:true,
role:"view",
isOkToHide:isOkToHide
} );
LT.UserSearchDiv.instrumentDiv( {
id:"shareDocumentEditor",
id_group:"shareDocument",
onSuccessSubmit:handleSubmit,
user:true,
visitor:true,
group:true,
role:"edit",
isOkToHide:isOkToHide
} );
if ( $('currentViewers') ) {
}
if ( $('currentEditors') ) {
}
});
</script>
<!-- Send for Review Search Options starts here -->
<!-- Send for Review Search Options ends here -->
<!-- Share Editor/Viewer Options starts here -->
<!-- Share Editor/Viewer Options ends here -->
<!-- Style Set Editor -->
<!-- Content Area ends here -->
<script language="javascript" type="text/javascript" defer="defer">
if (typeof LT == "undefined") LT = {};
if (typeof LT.FreeComment == "undefined") LT.FreeComment = {};
if (typeof LT.FreeComment.Client == "undefined") LT.FreeComment.Client = {};
LT.FreeComment.imagePath = "/assets/c1/images/tlc";
LT.FreeComment.cssPrefix = "lt_tlc";
LT.FreeComment.me = 304857;
LT.FreeComment.Client.resetAlert = function () {
$$('[id$=commentAlert]').each( function (node) { node.style.display = 'inline'; node.style.visibility = 'hidden'; } );
$$('[id$=commentLostNFound]').each( function (node) { node.style.display = 'inline'; node.style.visibility = 'hidden'; } );
}
LT.FreeComment.Client.resetShowHide = function () {
$$('[id$=showAll]').each( function (node) { node.style.display = 'none'; } );
$$('[id$=hideAll]').each( function (node) { node.style.display = 'none'; } );
}
LT.FreeComment.toggleShowHide = function () {
$$('[id$=showAll]').each( function (node) {
if ( node.style.display == 'none' ) {
node.style.display = 'inline';
} else {
node.style.display = 'none';
}
} );
$$('[id$=hideAll]').each( function (node) {
if ( node.style.display == 'none' ) {
node.style.display = 'inline';
} else {
node.style.display = 'none';
}
} );
}
LT.FreeComment.displayShowHide = function ( flag ) {
$$('[id$=showAll]').each( function (node) {
node.style.visible = flag;
} );
$$('[id$=hideAll]').each( function (node) {
node.style.visible = flag;
} );
}
LT.FreeComment.onLoad = function ( event ) {
var docName = 'doc';
var filter = '';
var className = 'docSection';
var modifiable = false;
var idPrefix = '';
LT.FreeComment.loadAllComments( docName, filter, className, modifiable, idPrefix );
}
LT.FreeComment.loadAllCommentsQueue = $A();
LT.FreeComment.loadingComments = false;
LT.FreeComment.completeLoadingComments = function () {
LT.FreeComment.loadingComments = false;
if ( LT.FreeComment.loadAllCommentsQueue.length > 0) {
var params = LT.FreeComment.loadAllCommentsQueue.shift();
LT.FreeComment.loadAllComments( params.docName, params.filter, params.className, params.modifiable, params.idPrefix );
}
}
LT.FreeComment.hideTLC = function () {
LT.FreeComment.hideAllComments();
LT.FreeComment.hideAllBubbles();
LT.FreeComment.displayShowHide('hidden');
}
LT.FreeComment.showTLC = function () {
LT.FreeComment.showAllBubbles();
LT.FreeComment.displayShowHide('visible');
}
LT.FreeComment.loadAllComments = function ( docName, filter, className, modifiable, idPrefix ) {
if (LT.FreeComment.loadingComments) {
LT.FreeComment.loadAllCommentsQueue.push( {
docName:docName,
filter:filter,
className:className,
modifiable:modifiable,
idPrefix:idPrefix
} );
return;
}
LT.FreeComment.loadingComments = true;
var commentAlert = $(idPrefix + 'commentAlert');
var commentLostNFound = $(idPrefix + 'commentLostNFound');
var showAll = $(idPrefix + 'showAll');
var hideAll = $(idPrefix + 'hideAll');
if (! commentAlert ){
LT.FreeComment.completeLoadingComments();
return;
}
var feature = $(docName).getAttribute('feature') != null ? $(docName).getAttribute('feature') : "";
if ( feature.length == 0 ) {
alert("feature is blank");
}
var config = new LT.FreeComment.clientObjectConfig ();
config.modifiable = modifiable;
config.LostNFound.node = commentLostNFound;
config.ExternalCallback.hasComment = function () {
if (showAll) {
showAll.style.display='inline';
}
config.State.hasComment = true;
};
config.ExternalCallback.finishLoadingComments = function () {
var reposition = false;
if (! modifiable ) {
if ( commentAlert && config.State.hasComment ) {
commentAlert.style.visibility = 'visible';
} else {
commentAlert.style.display = 'none';
reposition = true;
}
} else {
commentAlert.style.display = 'none';
reposition = true;
}
if ( config.LostNFound.enabled && config.LostNFound.hasLostComments ) {
config.LostNFound.node.style.visibility = 'visible';
} else {
config.LostNFound.node.style.display = 'none';
reposition = true;
}
if (reposition) {
setTimeout("LT.FreeComment.reposition();", 1000);
}
LT.FreeComment.completeLoadingComments();
}
LT.FreeComment.initConstant();
LT.FreeComment.initLostNFound( config );
var isFreeCommentEnabled = false;
var allAreaKeys = new Array();
var delayFuncs = new Array();
var loadingDlg;
var totalSection = 0;
var allSections = $$('#' + docName + " " + filter + "." + className);
if (allSections.size() > 15) {
loadingDlg = new LT.Dialogue.Loading("Loading...");
}
allSections.each( function( section ) {
var nSection = ++totalSection;
if (section.getAttribute("sectionType") == 'formview') return;
var tempNode = section;
while ( tempNode.parentNode != null ) {
tempNode = tempNode.parentNode;
if ( typeof tempNode.style != 'undefined' && tempNode.style.display == 'none' ) {
return;
}
}
isFreeCommentEnabled = true;
var rootString = section.id;
var areaKey = rootString.replace(/pl_(\d+)_(\d+)_body$/,"section_body_$1_$2");
if (! areaKey.match(/section_body_\d+_\d+$/)) {
return;
}
areaKey = areaKey.replace(/\S+section_body/,"section_body");
areaKey = feature + '_' + areaKey;
allAreaKeys.push( areaKey );
delayFuncs.push( function() {
LT.FreeComment.enableFreeCommentOnArea( rootString, areaKey, config );
if (loadingDlg != null) {
loadingDlg.updateProgress( Math.round( nSection/totalSection * 100 ) );
}
} );
});
delayFuncs.push( function() {
if (!isFreeCommentEnabled) {
config.ExternalCallback.finishLoadingComments();
}
if (loadingDlg != null) {
loadingDlg.updateProgress( 100 );
}
} );
LT.FreeComment.Ajax.fetchManyAreaKeys( allAreaKeys, function() {
try {
longRun( delayFuncs );
} catch (e) {
if (loadingDlg != null) {
loadingDlg.updateProgress( 100 );
}
simpleAjaxRequest( {
url: "/misk5/free_comment_error/send",
params: { body: e + " <=== " + location.href }
} );
}
if (!isFreeCommentEnabled) {
config.ExternalCallback.finishLoadingComments();
}
} );
}
TextResizeDetector.addEventListener( function() {LT.FreeComment.reposition();} );
</script>
<script>
var pageSections = ["25742872_75368834","25742872_75368835","25742872_75368836","25742872_75368837","25742872_75368838","25742872_75368839","25742872_75368840","25742872_75368841","25742872_75368842","25742872_75368843","25742872_75368844","25742873_75368845","25742873_75368846","25742873_75368847","25742873_75368848","25742873_75368849","25742873_75368850","25742873_75368851","25742873_75368852","25742874_75368853","25742874_75368854","25742874_75368855","25742874_75368856","25742874_75368857","25742874_75368858","25742874_75368859","25742874_75368860"];
var refreshing = false;
var lastRefresh = 0;
Event.observe( window, 'load', function () {
$('pagesArea').select("a").each(
function (node) {
if ( !node.href.match(/javascript\:/i) ) {
node.target = "_blank";
}
}
);
LT.SubmissionDoc.instrumentLoadedDoc(
{
docID: '5229870',
pageID: '25742873',
versionID: '1',
sectionID: '152467',
submissionID: '1110797'
},
'assignment_5229870_1',
false,
pageSections
);
});
function afterIFrameLoaded( iframe ) {
iframe.observeResize( refreshFreeComments );
}
function refreshFreeComments( iframe ) {
var win = window;
if (iframe) {
if (! iframe.getWindow ) {
return;
}
win = iframe.getWindow().LT && iframe.getWindow().LT.FreeComment ? iframe.getWindow() : win;
}
win.refreshing = true;
win.LT.FreeComment.reposition();
win.refreshing = false;
win.lastRefresh = (new Date()).getTime();
}
Event.observe( window, 'resize', function () {
var time = (new Date()).getTime();
if ( refreshing || (time - lastRefresh < 2000) ) {
return;
}
setTimeout( refreshFreeComments, 3000 );
});
</script>
<script>
setTimeout ( "fixToggleWidth();", 2500 );
function fixToggleWidth() {
var frameWidth = getViewWidth();
if ( $('docTOC').style.display != "none" ) {
frameWidth -= 290;
} else {
frameWidth = Math.abs(frameWidth * 0.92);
}
if ( frameWidth+"px" != $('docToggleDiv').style.width) {
$('docToggleDiv').style.width = frameWidth+"px";
setTimeout( function() { refreshFreeComments(); }, 3000 );
}
setTimeout ( "fixToggleWidth();", 3600 );
}
</script>
<!-- MAIN SECTION ENDS HERE -->
</div>
<img style="display: block; z-index: 1; cursor: pointer; left: 373px; top: 1066px;" class="lt_tlc_arrow" src="/assets/c1/images/tlc/tlc_other.gif"><div style="display: none; z-index: 8; left: 371px; top: 1035px;" class="lt_tlc_div_they"><span>Will you assign the animals to them? Will they be doing the research on the internet or in books? Will you give them some guiding questions to answer?</span><img style="display: none;" class="lt_tlc_icon lt_tlc_edit_icon" src="/assets/c1/images/tlc/icon_edit.png"><img style="display: none;" class="lt_tlc_icon lt_tlc_icon lt_tlc_hide_icon" src="/assets/c1/images/tlc/icon_down.png"><img style="display: none;" class="lt_tlc_icon lt_tlc_icon lt_tlc_delete_icon" src="/assets/c1/images/tlc/icon_delete.png"></div><img style="display: none; z-index: 1; left: 371px; top: 1075px;" class="lt_tlc_arrow" src="/assets/c1/images/tlc/arrow.gif"><img style="display: none; z-index: 1; cursor: pointer; left: 304px; top: 1485px;" class="lt_tlc_arrow" src="/assets/c1/images/tlc/tlc_other.gif"><div style="display: block; z-index: 8; left: 302px; top: 1467px;" class="lt_tlc_div_they"><span>I like this question because they have specific animals so their thinking is likely to be a bit more specific.</span><img style="display: none;" class="lt_tlc_icon lt_tlc_edit_icon" src="/assets/c1/images/tlc/icon_edit.png"><img style="display: none;" class="lt_tlc_icon lt_tlc_icon lt_tlc_hide_icon" src="/assets/c1/images/tlc/icon_down.png"><img style="display: none;" class="lt_tlc_icon lt_tlc_icon lt_tlc_delete_icon" src="/assets/c1/images/tlc/icon_delete.png"></div><img style="display: block; z-index: 1; left: 302px; top: 1494px;" class="lt_tlc_arrow" src="/assets/c1/images/tlc/arrow.gif"><img style="display: none; z-index: 1; cursor: pointer; left: 526px; top: 1617px;" class="lt_tlc_arrow" src="/assets/c1/images/tlc/tlc_other.gif"><div style="display: block; z-index: 8; left: 524px; top: 1599px;" class="lt_tlc_div_they">I assume this is something they will write and hand in
-
- International Reading Association on 2009-08-05
- Guatemalensis Spanish School, www.spanland.com, Spanish and Outdoor, adventure, cultural Activities, fun, tourism for all kinds of students, and ages on 2009-08-03
- RealeBooks.com: Welcome to RealeBooks.com on 2009-07-29
- Icebreakers, Warmups, Energerizers, & Deinhibitizers: Activities for getting groups going on 2009-07-27
- Team Building Activities, Initiative Games & Problem Solving Exercises on 2009-07-27
- How to Feel Happy at Work--7 Secrets of a "Thank God It's Monday" Workplace on 2009-07-27
- A Better Workplace - Article: The Eight Essential Skills of Coaching on 2009-07-27
- YouTube - FISH! Culture (trailer) on 2009-07-25
- caslworkshops / FrontPage on 2009-07-25
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo
<form>
</form>