User Usage

User Usage Information

You need custom scripts enabled.

var doc=top.noodle.headWindow().document;
var el=doc.getElementById("helpLink");
el.style.fontSize="";
el=doc.getElementById("feedback");
el.style.fontSize="";
el=doc.getElementById("logout");
el.style.fontSize="";
el=doc.getElementById("logout").parentNode.parentNode;
el.style.fontSize="14px";

You need custom scripts enabled.

var doc=top.noodle.headWindow().document;
var el=doc.getElementById("status");
el.style.display="none";
el=doc.getElementById("currentUserId");
el.style.display="none";
el=doc.getElementById("currentUser");
el.style.margin="20px";
el=doc.getElementById("currentUserName").parentNode;
el.style.display="block";

The Noodle search is located on the top bar, additionally you can search from the search widget and some application types.

  • Search indexes file names, descriptions, keywords, and the content of text files( and other formats and meta data if configured).
  • If your search results are to broad you can click on the advanced link and filter them.
  • Words in file names and titles are prioritized over those in the contents.
  • If you are looking for the most resent changes on Noodle try the What's New.

Noodle allows you to change much of it's appearance and some of it's behavior.

The simple changes:

  • Change the logo in the top left and on the login screen in System Tools>Settings>General Settings
  • Change the Colors from the same place.
  • add, remove, sort, and nest applications in the navigation.
  • add some fancy widgets

Advanced changes:

  • Backup a copy of the CSS and customize it in the settings.

Appearance and beyond:

Some browsers incorrectly cache HTTP 302 "Found/Moved temporarily" and 303 "See Other" redirects as if they were 301 "Permanent Redirect"s.

Safari

The "Too many redirects" error can be temporarily fixed In the "Safari" menu by selecting "Reset Safari".

Chrome/Chromium

Disabling "Use a prediction service to load pages more quickly" is advised.

Other ways to insert JavaScript here

  1. Press the "Edit" button
  2. Press the "More" button
  3. Press the "Source" button
  4. make a script tag
  5. put your Javascript in it

If you want to use the page re-writer or otherwise effect other pages you will have to escape the scope of the page:

<script>
function temp(){
	if(!top.noodle.custom){
	    top.noodle.custom=function(){
	        var doc=top.noodle.mainWindow().document;
	        var url=doc.location.href;
	        
                //your code here
	        
	    };
	}
}
top.noodle.core.evalString(temp.toString()+";temp();");
</script>