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"

(Basic Demo Script)
Line 1: Line 1:
 
== Basic Demo Script ==
 
== Basic Demo Script ==
  
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.
+
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]. In the future we will be extending invitations to the Orion Demo server.
  
 
# 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]]
 
# 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]]
Line 11: Line 11:
 
# 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]]
 
# 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/>
 
<br/><br/>
 +
 
== Future integrations ==
 
== Future integrations ==
 
Future integrations are planned for the following:
 
Future integrations are planned for the following:

Revision as of 10:19, 19 January 2011

Basic Demo Script

Welcome to Orion. This demo script will help highlight some of the existing features of Orion. You can download and install Orion on your local machine or access the Orion Demo Server. In the future we will be extending invitations to the Orion Demo server.

  1. 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. Orion Logon.jpg
  2. 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.

    Orion Nav.jpg
  3. 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.

    Orion Undo.jpg
  4. 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.

    Orion Error Decorator.jpg

    Orion Error Msg.jpg

  5. 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.
  6. 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.

    Orion Outline View.jpg

  7. 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.

    Orion Search.jpg



Future integrations

Future integrations are planned for the following:

  • Git/ Github
  • Firebug
  • Code completion

Back to the top