Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Demo Script"

 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Basic Demo Script ==
+
This content has been moved to [[Orion/Documentation/User Guide/Getting started]]
  
Welcome to Orion.  This demo script will help highlight some of the existing features of Orion.  You can [http://download.eclipse.org/e4/orion/ download] and install Orion on your local machine or access the [http://orion.eclipse.org Orion Demo Server]. If you require a userid for the Orion server, please [mailto:orion_invite@eclipse.org email a request]. Please note that this is in limited beta at the time of writing.
 
  
# If you are running a local installation, login using the username: test and password: test.  Both username and password are case sensitive.  If you are using the Orion Demo Server you need to have been created an account on the server.  At this time we are only doing a small number of invitations to access the demo server. [[Image:Orion_Logon.jpg]]
+
[[Category:Orion|Demo Script]]
# The first thing you will see are two directories containing the source code of Orion.  You can navigate down through the directory hierarchy. Navigate to org.eclipse.e4.webeditor/web/js and open the editor.js file.  This will open a JavaScript editor. <br/><br/>[[Image:Orion_Nav.jpg]]
+
# Notice the speed of the JavaScript editor.  Scroll to the bottom of the file.  It is close to 4000 lines of code.  Copy and paste the entire code base a number of times.  Scroll up through the code and you should notice the editor performance remains very fast.  If you want save the file, using the save icon in the upper right hand corner. Try the editor and show the use of the Undo and Redo functions also in the upper right hand corner.<br/><br/>[[Image:Orion_Undo.jpg]]
+
# The editor also has some basic error notification built in. A small red bar decorator on the right hand side indicates a line of code with a problem. Clicking on that brings you to the problem code. Hovering the cursor over the small red "x" will show you the error message from jslint. <br/><br/>[[Image:Orion_Error_Decorator.jpg]]<br/><br/>[[Image:Orion_Error_Msg.jpg]]<br/><br/>
+
# Orion is a web tool that follows the idioms of the web.  You will notice the url for the file is something you can share with others.  The back button will also work, so use the back button to return to the root.  You can now open a new file in a separate tab. From the root navigate to org.eclipse.e4.webeditor/web/js.  Use the right button to open a submenu that allows you to open the editor.js file in a separate tab.<br/>
+
# Integration with other web tools is an important philosophy of Orion.  We have already integrated with JSLint.  From the JavaScript editor showing editor.js, you will noticed a decorator on the left side of the editor.  Click that to see the outline view of the editor.js file.  Click on the different outline components to navigate through the file. <br/><br/>[[Image:Orion_Outline_View.jpg]]<br/><br/>
+
# The Orion server also allows for server-side integration.  Apache Lucene search has been integrated into Orion.  In the upper right there is a search box.  Search on 'breadcrumbs'.  This does a textual search on the term.  You can save the search.  <br/><br/>[[Image:Orion_Search.jpg]]
+
<br/><br/>
+
== Future integrations ==
+
Future integrations are planned for the following:
+
 
+
* Git/ Github
+
* Firebug
+
* Code completion
+

Latest revision as of 11:01, 10 May 2011

This content has been moved to Orion/Documentation/User Guide/Getting started

Back to the top