Web-based IDE for Interfacing View Controller
|
|
|
- Beverly Harrison
- 10 years ago
- Views:
Transcription
1 Web-based IDE for Interfacing View Controller A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment Of the Requirements for the Degree Master of Science by Tejasvi Palvai Dec 2010 i
2 2010 Tejasvi Palvai ALL RIGHTS RESERVED ii
3 SAN JOSÉ STATE UNIVERSITY The Undersigned Writing Project Committee Approves the Project Titled Web Based IDE for Interfacing View Controller by Tejasvi Palvai APPROVED FOR THE DEPARTMENT OF COMPUTER SCIENCE Dr. Chris Pollett, Department of Computer Science 12/02/2010 Dr. Mark Stamp, Department of Computer Science 12/02/2010 Dr. Robert Chun, Department of Computer Science 12/02/2010 iii
4 ABSTRACT The main idea of this project is to develop a web-based IDE, which helps users to avoid installing or configuring the Desktop IDE. It also enables users to create XHTML pages using the drag and drop mechanism in Struts. Struts extends the Java Servlet API to encourage developers to adopt the MVC (Model-View- Controller) architecture. In this project, a web application for interfacing the view and controller parts of the MVC architecture was developed. This web-based IDE connects the View and Controller components when the user drags and drops HTML elements in the UI of the IDE. With this project, users can create dynamic web pages without having any knowledge in XHTML or any server side language.
5 ACKNOWLEDGEMENTS I am grateful for my advisor, Dr. Chris Pollett, for his suggestions and constant guidance throughout my master s project, and also for my committee members, Dr. Mark Stamp and Dr. Robert Chun, for their time and effort. I would like to thank my good friends Swathi, Deepti and Sugi for their help, and feedback. I would also like to thank my husband, Vipan Nalla, for his encouragement and constant support.
6 Table of Contents 1. Introduction Tools Used My Eclipse Tomcat Server Struts Firebug CKEditor Java Preliminary work Developing a demo struts application Comparison of JavaScript frameworks Developing the view page Directory structure for struts Server side Client side Configuration files Struts-config Login page User authentication Database table
7 6 Tree Structure for Projects Project creation in server Implementation Horizontal Menu Modal box Implementation Tabs for View JQuery Tab Design and Edit Tools Drag and Drop Right Click on HTML elements Performance Operating System Browser compatibility Issues Usability Testing Results Conclusion References
8 List of Figures Figure 1: Struts Demo Figure 2: Drag and drop example Figure 3: View part of IDE Figure 4: Directory structure Figure 5: Login page Figure 6: Tree Structure of user projects Figure 7: IDE with Editor Figure 8: Horizontal bar Figure 9: Horizontal bar with dropdowns Figure 10: Modal box Figure 11: Popup Window Figure 12: Edit mode Figure 13: Design mode Figure 14: Drop down of html elements Figure 15: Attribute setting Tables Table 1: Test results using Slick speed Table 2: Results
9 1 INTRODUCTION An IDE (Integrated development environment) is a software application that provides comprehensive facilities like a source code editor, compiler, and a debugger for software development. There are many IDEs available for programmers, such as Eclipse, Net Beans, emacs, JDeveloper, textmate and intellijs. However, these IDEs are desktop-based applications. Users have to install and run them from scratch. Even after installing, these desktop IDEs take some time in loading the entire application and opening the editor. To avoid all these complications, Web-based IDEs are emerging which make life easier for any software developer. A Web-based IDE is an online programming environment with a file manager and a console interface for compiling and executing. It also supports computer languages like Java, C, C++, php, html and many more. The main advantages of Web-based IDEs when compared to a desktop IDEs are: i) Instant Development and Code Testing: Web-based ide avoids installing or configuring any desktop IDE, thus users can begin to write any code without wasting time in environment setting or configurations. ii) Accessing the Code from anywhere: Since web-based IDE is an online service, it can be accessed from anywhere there is we have internet connection.
10 iii) Layout: Web applications tend to be sparser in information density, using white space, font changes, and other layout techniques to guide the user in certain focused directions. iv) Increases visual sophistication: Web users tend to expect a higher degree of visual sophistication from their applications. Animation, transparency and even sound cues are fairly common. An example of a web-based IDE, which already exists, is Bespin. It is a product of Mozilla Labs (which is a part of Mozilla). It is a web-based integrated development environment (editor) that allows developers to collaborate on codebased projects. Bespin features a code editor with syntax highlighting and access to frequently used actions via the Command Bar. Work can be resumed from any browser at any time without the need to save. The main disadvantage of Bespin [3] is that at present it supports only JavaScript, HTML, CSS code and also it is compatible only with Firefox browser. In Internet Explorer,this IDE failed with JavaScript errors. Also, the present version has sluggishness in the cursor movement. This web-based IDE is similar to Bespin but has the drag and drop functionality. It supports many computer languages like Java, Html, JavaScript, JSP and many more. This project was developed using the Struts and JQuery framework and is
11 based on MVC architecture (Model-View-Controller). With this IDE, users can create database tables, insert the data into the tables, and also create any queries to retrieve the data from the tables without actually knowing any SQL. This project mainly focused on interfacing between the View and Controller of MVC. With this web-based IDE, users can create html elements using the drag and drop functionality. These elements can be made dynamic when connected to the controller components. Without any prior knowledge of XHTML and server side languages, one can create dynamic web pages. This IDE requires a browser like Firefox or Google Chrome. When the users type the url of this web-based IDE, it redirects them to Login page. If they are new users, this IDE asks them to register. After logging in successfully, users can create, delete and manage their own projects.
12 2) Tools 2.1) MyEclipse MyEclipse is a desktop IDE tool for developing any software applications (includes web applications) and supports full life cycle of application development. It has an application development environment for languages like Java, XML, JSP, databases and server connectors to optimize development, deployment, testing and also portability. It works on Windows, Linux, and also on Apple's OS X. Main features of MyEclipse are: a) It has inbuilt Spring, Java Server Faces and Spring frameworks in it which makes a developer life easy. b) It provides rich development of client side content. c) It provides Database development d) It is also inexpensive and gets better with advance features with each release. 2.2 Tomcat Server Tomcat server was used to host our Web application (i.e. Web based IDE). It is one of the most popular web servers. It is free, reliable and also easy to configure. It includes features like CGI, SSL, and virtual domains. Tomcat is primarily used to serve both static content and dynamic web pages on the World Wide Web.
13 Many web applications are designed expecting the environment and features it provides. When a user requests a page on a browser, it redirects the page to the respective web server. The web server fetches the requested page and sends it to the web browser. 2.3 Struts The Framework that was used develop this web application is Struts [2]. The reason to choose Struts and not any other frameworks (like Spring, Java Server Faces) is because it has got excellent support for Tag library (which has wide industry acceptance) and also it is easy to Integrate with client side technologies. It is an open source framework based on Model-View-Controller architecture. MVC [1] is considered an architectural pattern used in software engineering. It separates the business logic and application data from the presentation data to the user. In this project, the model is responsible for providing the data from the database and storing it into the database.in general, Model is not a database. It is both the data and business logic that is needed to manipulate the data in the application. View represents the user view of the applications and is responsible for taking the input from the user, whereas the Controller is the intermediary between Model and View. The Controller receives input and initiates a response by making calls on model objects. A controller accepts input from the user and
14 instructs the model and view port to perform actions based on that input. This project is mainly focused on developing the interface between the view and controller of the MVC. 2.4 Firebug Firebug is software, which integrates with the Firefox. It is one of the very important and powerful tools in web development. It helped me in finding the errors and debugging the HTML, JQuery, CSS and XML on the web page of this project. 2.5 CKEditor It is an open source text editor, which can be used inside the web pages. It is a powerful tool and it has ready to use plugins and buttons, which made it easy to integrate in my web-based IDE. It is compatible with almost all the Internet web browsers such as Explorer, Firefox, Google Chrome, Safari and Opera. 2.6 Java To write the server side code, Java language was used in this project. Java s portable nature (write once and run anywhere) makes it one of the most popular computer languages and is widely used in many of the web applications and developing application software. The client side applications was developed using Java server pages(jsp).
15 3 Preliminary work: As a part of preliminary work, the research on Web based IDEs was done and also came up with the tools required to develop this project. Understood the Struts framework and MVC architecture. The whole work was divided into four different deliverables. 3.1: Developing the Demo Struts Application: In the very first deliverable, a basic Struts application to get comfortable working with Struts was developed. This is a simple web application, which has a login page, and when the user enters his username and password, it validates them and takes necessary actions. If any of the columns are left empty or entered incorrectly, then the user will be redirected to failure.jsp, which prompts the user to enter the login details again correctly. If all the details are entered correctly, the user is authenticated and will be redirected to the success.jsp.
16 The following figure is the snapshots of login page and success page Figure 1: Struts Demo 3.2 Comparison of JavaScript framework In the second deliverable, the various JavaScript frameworks [6] like JQuery, YUI[8] (Yahoo Use Interface), DOJO were compared and selected the appropriate framework for my project. To perform this, a Drag and Drop example was
17 developed using all the three frameworks. With this example, one can drag and drop the courses from one department to another department. Following is the screen shot for the example. In the figure, there are two departments, Computer Science and Computer Engineering. Users can drag and drop the courses from one department to another department. This was implemented by using JQuery [7], YUI and DOJO. Figure 2- Drag and drop example Using the Drag and Drop example, the three frameworks were tested and following are the results. Memory Testing: YUI uses more memory when compared to JQuery and DOJO. For the example shown above, YUI took around 78k and JQuery used 65 k of memory. This was tested using task manager in windows. JQuery performs well in almost all the browsers and also has highly effective and short code. It was very fast in Firefox, where as YUI was slow compared to JQuery and DOJO
18 Dojo is not compatible in Internet Explorer 8, Mozilla Firefox 3.1, Beta2 and Safari Following are the test results Using Slick speed. Table 1)) Test results using Slick speed. In many browsers and for some of the selectors tests, Dojo Query and YUI did not work or were not compatible, where as JQuery passed them all. Hence decided to use JQuery framework for my project. 3.3 Developing the Web page In the third and fourth deliverable, designed and implemented the View part of the Web-based IDE. The entire view part is divided into five different components: top bar, right bar, left bar, central part and the bottom part. The bottom of the IDE
19 has the trash bin. The main purpose of doing this is to make the user interface more user friendly. The implementation of each function is done during the next semester. The left part of the IDE is for managing the projects. These projects appear in a tree structure.the main project folder has various subfolders and each subfolder is a project created by the user. The left side of IDE also has a controller div. It has various controller files and each file has different functions from Action file (Action.java). The top part is the horizontal menu bar. It is a horizontal and standard menu bar. The top-level menu items are next to each other from left to right, and all other submenu items are stacked vertically. The right most part of the IDE has html elements (like title, button, table, form and file) Users can create forms and drag and drop these elements onto the form. The central part is the edit part. It is for writing and reading the code in any language.
20 Figure 3- View part of IDE The above figure 3 shows the complete View part of the IDE. As explained above, it has got different divisions performing various tasks. The bottom part of the web page is to delete any files.it can be done by dropping the files onto trash bin.
21 4) Directory Structure for Struts: The figure: 3 shows the directory structure of this particular web application project. The folder name of this project is strutswebproject. 4.1 Server Side files The Struts framework has a well-defined directory structure. All Action files (CreationAction.java,ParsingAction.java,ReadAction.java) are kept under com.visualbuilder.struts.action.these are controller files. In com.visualbuilder.struts.beans, the form files were kept. They are typically written using Java beans. 4.2 Client side files Next we need to create a WEB ROOT folder, which has the entire client side files. One of the vital components of this web root folder is WEB_INF.It contains the configuration information in web.xml and struts-config.xml files, classes that are called by Java server pages (JSP) and also class files for servlets for our web application. The other html and jsp pages used in this project are Welcome.html, which is a login page, web based IDE.jsp, which has the main web page, and logout.html.it is this page that appears when users log out from the web IDE.
22 4.3 Configuration files These files are very important and describe how to deploy any web-based application in a Servlet container such as Apache or Tomcat. It is mainly used for establishing the connection between web application and web container. The following is the servlet mapping in the web.xml file. <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> Struts-config Struts-config.xml contains three important elements used to describe actions: i) form-beans: These form-beans contain FormBean definitions along with name and type. ii) global-forwards: these global-forwards contain Global Forwards definitions. iii) action-mapping: contains action definitions. It uses an action element for each action defined.
23 The following code is one of the action-mappings in the struts-config.xml file. <action-mappings > <action name="creatioform" path="/file" type="com.visualbuilder.struts.action.creationaction" validate="true"input="web Based IDE.jsp"> <forward name="success" path="/web Based IDE.jsp"/> </action> </action-mappings Web root folder also has a META_INF folder. It contains meta information and has all the.jar files. These are created when we write a jarfile. The other folders worth mentioning are the CSS (Cascading Styling Sheet). This folder has different.css files required for styling the main web page. The JavaScript folder has all the js files.it has both the open source js files like jquery.min.js, jquery-ui.js and also the files written by me for developing this IDE (for example, files are dnd.js,dnd1.js,read_write.js) This project also has different libraries like struts libraries, J2EE libraries and Java run time environment System library. The following figure: 4 shows the directory structure of this project.
24 Figure 4-Directory Structure
25 5 Login Page: The Login Page of this web application is welcome.html. As the name suggests, this page was developed using HTML. The welcome.html page will be in the WEB-INF folder, and we need to declare a welcome file in the web.xml configuration file. One can access the project root with the url where strutswebproject is the project folder name. This url will redirect to The welcome file inside Web.xml is as follows: <welcome-file-list> <welcome-file>welcome.html </welcome-file> </welcome-file-list. 5.1 User authentication: The welcome page has a text field to enter the user name and another text field to get the password. This form also has submit and cancel buttons. When clicking on the submit button, and if the user is authenticated, it will redirect the welcome page to the Web-based IDE.jsp page. The cancel button is used to reset the text fields in the form.
26 If the user is new to this application, they can create a new account by clicking the new user? link. On clicking this link, a popup window opens up and users can register. If the user enters a incorrect password or if they forget the password, they can always reset the password by clicking the "forgot the password" link. The following figure shows the login page of Web IDE. Figure 5: Login page 5.2 Database table The database table name user_table was created in the database MYSQL to store the entire user ID and passwords. The table has columns such as , username and password. The primary key of this database table is ID of the user.
27 6 Tree structure for projects The left most part of the IDE has the div called Files. The users can create and manage different projects. When a user creates a new project, a folder with that name is created in the server. The reason for storing the newly created project in the server instead of the database is to avoid any synchronization problems, i.e. if a user deletes a particular project in the server, it needs to be reflected in the database. This project is mainly on the Interfacing the View and Controller of MVC in this project and not on the Model. 6.1 Project creation in server The Struts based project folder (created by the user) in the view creates three different sub folders (Action, Model, Web-Inf) in the server. The Action folder has the Action. java, which is a controller file. The Form folder has a Form. java file and Web-Inf has three different files, namely Index.jsp, Struts-config.xml and web-xml files. The Web.xml file defines the Action Servlet, which is the controller piece that is provided by the Struts framework and maps URI (Uniform resource indicator). Action.java extends org.apache.struts.action.action class. It is a controller, which handles the requests and decides what kind of server-side model objects can be invoked. Based on the outcome of this, it selects the next view.
28 Form.java extends org.apache.struts.action.actionform class. It decides the set of properties that reflect the input form and writes the get and set method for each property. It also has a Validate () method which validates the user input. In Validate method, if the fields are empty or if the user enters a incorrect password, the errors are added to ActionErrors () method. The following figure: 6 show the list of projects created by users and also the list of files under each project. Figure 6: Tree structure of user projects
29 6.2 Implementation: When a user creates a new project with a name, the value gets stored in a string called file in the CreationForm.java. In controller file (CreationAction.java) the ActionForm object was typecasted to a variable (webform) so that we can access the form variables by using getter and setter methods. The webform.getfile () method gets the name from the model and creates the folder in the server. We can get the path of the server by getservlet (). getservletcontext().getrealpath() ; method. Once the folder gets created in the server, all the sub folders are traversed through and all the files (Action. java, Form. java, index.jsp, struts-config.xml, web.xml) in them are stored in an array. This array is later converted to string buffer and this buffer is sent to the client side to display the files in the view. request.setattribute( ProjectUserName, Buffer); method sends the string buffer to the client and in the view side, the values can be retrieved by using: <%StringBuffervalues= (StringBuffer) request.getattribute ("FolderName"); %> Once the buffer value is retrieved, for each project an ul element is created and for each file inside the folder, an li element is created. All the li elements are appended to the ul element. The path of the files is retrieved in a similar way as the file names and is set as attributes to the file names. When the user clicks on a file to read or write the code, an Ajax call is made with the pathname to the ReadAction.java file. This java file
30 reads the contents of the file from server and returns the string buffer. When the user writes and saves the file, it gets stored in the server and the user can return back and read all the content. Figure 7: IDE with editor The figure: 7 above shows all the projects created by the users and each project has files on the left-hand side of the IDE. When the user clicks on a file, an editor opens on the view part of the IDE
31 . The following JavaScript function opens a editor when clicked on a particular file: CKEDITOR.replace( 'editor1' ); //CKEDITOR.constructor('/Project'); var editor_data = CKEDITOR.instances.editor1.getData();
32 7 Horizontal Menu The horizontal navigation of the web-based IDE has File and help items. The toplevel menu items are next to each other from left to right, and all other submenu items are stacked vertically. New files can be created and deleted. The file has New Project, Close Project and Logout, whereas Help has About. Users can even create a new project here by clicking the New Project dropdown. When the user clicks on new project, a Modal box opens and they can enter the project name given in the place provided. Figure 8 Horizontal bar Figure:98 Horizontal bar with dropdowns 7.1 Modal box: A Modal box is developed using JavaScript and is a technique for developing dialog boxes without using any popups. It uses Ajax for loading content. To invoke a Modal box all we need to do is call the method Modalbox.show (params).
33 The figure:10 shows a Modal box. This pops up when the user clicks onto one of the drop downs to create a project. Figure 10 Modal box 7.2 Implementation: When the user clicks on the About, a popup box opens up describing the Webbased IDE and also provides a link to the report and contact information to the user if they have any issues or concerns about this IDE. This popup box is generated by a JavaScript code and the file is a simple HTML file About.html. The following JavaScript code opens a window with a height of 350 and a width of 400. Function popitup(url) {s newwindow=window.open(url,'name','height=350,width=400');if (window. Focus) {newwindow.focus()}return false;
34 Figure 11 is the window that pops up when clicked on the dropdown of About. It clearly describes about this web based IDE Figure 11 Popup window
35 8 Tabs for View The central part of the IDE has two different tabs, one is Design and another one is Edit- each set to similar height and width (125 and 100 respectively). The reason for having two tabs is to make this IDE user friendly and also to separate design mode from the coding part. 8.1 JQuery Tabs To develop these tabs, unordered lists for tabs were used. Each list item. i.e. tab has an attribute of href which matches with the ID of the tab_content_view div. This will be very important once we have JQuery pull off the actions. The following is the html code to get the tabs <ul class="tabs_view"> <li><a id = 'design' href="#tab1">design</a></li> <li><a id = 'edit' href="#tab2">edit</a></li> </ul> 8.2 Design and Edit Design tab is for visualizing the result of the code in the edit tab, where as edit tab is for writing and editing the code. Once the code is edited and saved, the output can be seen in the design tab. CSS file for this is in IDE.CSS file, which is inside
36 the CSS folder. When the user clicks on a particular file to view or edit, he can see the file only on the edit tab. This is implemented by using JQuery. When clicked on the Design tab, all the content on the edit tab is passed to a function called htmlspecialchars_decode which decode the special characters and returns the string. In the returned string, all the special characters like   are replaced with space and this resultant string is converted to html and appended to the id of design tab. The following is the JavaScript code: $("#design"). click(function () { var h = htmlspecialchars_decode($('#tab2 textarea#editor1').val()); alert($('#tab2 textarea#editor1').val()); h = h.replace(" ", " "); $('#viewarea'). html(' ').html(h); }); When clicked on the edit tab, the html that is on the design tab is passed to a function called html entities, which replaces html strings, and the resulting string is added to the edit tab. The following figure 11 shows code in html in Edit mode, whereas, Figure 12 shows the design of the html code in edit mode.
37 Figure: 12 Edit mode Figure 13 Design Mode 9 Tools
38 The right side of the IDE has HTML elements. The main aim of these tools is to develop dynamic web pages by dragging and dropping these html elements onto web pages. These elements are made dynamic by connecting them to controller components. The various html elements that were used in this project are Labels, Text fields, Text area, drop downs, check boxes, Radio buttons, and the normal buttons. 9.1 Drag and Drop These elements are made draggable [11] and droppable onto the view area by using the methods $(. Class ). draggable () and $(. class). droppable (). In the drop function, the parameters (like width, height and border) for these html elements will be set. All the html elements must be dropped onto the view form only. They cannot be dropped anywhere else on the view area. 9.2 Right click on html elements: Once the elements are dropped onto the view form, right clicking on them can set the attributes to each of these. All the elements have the similar right click options, i.e. edit and delete. On clicking the delete, it will delete that html element on the view form. Clicking on Edit can set the attributes to the elements. For the html element label, the attributes that are needed to set are label name and label value. For field element, they are name, value, text type, and password type. Similarly text area has placeholder and title attributes.
39 The dropdown has options and values. These values can be extracted from the Action.java. Action.java file is parsed and all the methods in this file will be the values in the drop down list. This parsing of action file is done in Java. The following figure: 14 demonstrate the drag and drop of html elements onto the view form. It also shows the right click demonstration of html element (label). Similarly all the elements on the right side can be right clicked to set the attributes. Figure 14 Drag drop of html elements Figure 15 Attribute setting
40 Figure 15 above demonstrates the attribute modal box that pops up when a user right clicks on a html element. All the html elements have different attributes and can be set only on right clicking on that particular element. When the modal box pops up, everything else on the IDE gets disabled and only this pop up box gets highlighted. This is done to make sure the user sets the attribute for any element
41 10 Performances 10.1 Operating system This web-based IDE was tested both on Windows and OSX. It works really fast on both these operating systems. Since this web application was developed on windows, to make it work on OSX one need to make some styling changes in CSS files Browser Compatibility: This web application is compatible with Mozilla firefox, Internet explorer (even with the recent version of IE), Google Chrome and Safari. At this point there are no performance issues with the browser compatibility. The Firefox takes more memory for this application compared to the Internet explorer and Google Chrome (found this using the task manager in the windows). From the developer s point of view, Firefox is best as we can debug, analyze the code and also can detect any code errors instantly with the help of Firebug tool Issues The present version of the web-based IDE does not have any performance issues like sluggishness in the cursor movement (Unlike Bespin). This IDE even switches very quickly between different files just like the desktop IDE.
42 At present this IDE supports only struts based projects. In future, it can be enhanced to support other frameworks like cake php, spring, java server faces and also normal projects (without following any particular frameworks). The other main challenge with these IDEs is, one must have Internet connection to have access to their code Usability Testing Usability testing [9] is a process, which is used to test or evaluate an application or product by testing it on different users. This is very important phase in any product as it gives immediate results on how the end users use the product. This web application was tested on few users and also compared this web application with other existing applications. Bespin and Aurorasdk were compared with the Web-based IDE discussed in this report. Bespin and Aurorasdk are also web-based IDEs which presently exist Results: Results show that: i) Bespin and Aurorasdk take more time in creating new projects and switching between the files when compared to this web IDE. This was tested using Java method (System.currentTimeMillis();). (This provides the time in milliseconds)
43 The reason for less time is because there were not any Ajax calls from client side to server side. ii) Used Ajax calls for reading and writing to the files which are in the server. Even here IDE developed by me took less time when compared to the Aurorasdk The following table shows the time taken to perform various functions in two different IDE. Table2 : Results Web-Based IDE SJSU Bespin Loading a IDE 248 ms 650 ms Creating a project 1.22 s 1.34 s Writing to files 41 ms 710 ms Saving a file 810 ms 1.03 s
44 11 Conclusion In this project, a web application using Java was developed and the report focused on the advantages of web-based IDEs over desktop application IDE and detailed implementation of how this web application is developed. This IDE increases the productivity of developers and at the same time promotes the use of open source standards. The scalability, speed, and productivity of this web ide is comparable to any desktop application. There are no performance issues with this ide and it supports many web browsers. The coding in the cloud concept already attracted many developers across the globe and will become the mainstream integrated development environment in near future. This web application can be extended to support many frameworks and applications in future
45 12 References [1] Implementing MVC architecture using Struts Struts.html [2] Struts tutorial by Benmira free [3] Bespin Web-based IDE [4] Aurorasdk- A Web-based IDE inside your Browser [5] ECCO A Web-based IDE inside your Browser [6] JavaScript Frameworks: [7] JQuery documentation [8] Yahoo User Interface [9] Usability Testing [10] JavaScript properties [11] JQuery UI Draggable and droppable
Struts Tools Tutorial. Version: 3.3.0.M5
Struts Tools Tutorial Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features Struts Tools... 1 1.2. Other relevant resources on the topic... 2 2. Creating a Simple Struts Application... 3 2.1. Starting
Development. with NetBeans 5.0. A Quick Start in Basic Web and Struts Applications. Geertjan Wielenga
Web Development with NetBeans 5.0 Quick Start in Basic Web and Struts pplications Geertjan Wielenga Web Development with NetBeans 5 This tutorial takes you through the basics of using NetBeans IDE 5.0
SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1
SUBJECT TITLE : WEB TECHNOLOGY SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 16 02 2. CSS & JAVASCRIPT Test
Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY
Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun ([email protected]) Sudha Piddaparti ([email protected]) Objective In this
Building and Using Web Services With JDeveloper 11g
Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the
Web-JISIS Reference Manual
23 March 2015 Author: Jean-Claude Dauphin [email protected] I. Web J-ISIS Architecture Web-JISIS Reference Manual Web-JISIS is a Rich Internet Application (RIA) whose goal is to develop a web top application
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation
Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet
UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1
UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,
Creating Web Services Applications with IntelliJ IDEA
Creating Web Services Applications with IntelliJ IDEA In this tutorial you will: 1. 2. 3. 4. Create IntelliJ IDEA projects for both client and server-side Web Service parts Learn how to tie them together
New Online Banking Guide for FIRST time Login
New Online Banking Guide for FIRST time Login Step 1: Login Enter your existing Online Banking User ID and Password. Click Log-In. Step 2: Accepting terms and Conditions to Proceed Click on See the terms
CrownPeak Java Web Hosting. Version 0.20
CrownPeak Java Web Hosting Version 0.20 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,
Course Name: Course in JSP Course Code: P5
Course Name: Course in JSP Course Code: P5 Address: Sh No BSH 1,2,3 Almedia residency, Xetia Waddo Duler Mapusa Goa E-mail Id: [email protected] Tel: (0832) 2465556 (0832) 6454066 Course Code: P5 3i
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK
Working with the Ektron Content Management System
Working with the Ektron Content Management System Table of Contents Creating Folders Creating Content 3 Entering Text 3 Adding Headings 4 Creating Bullets and numbered lists 4 External Hyperlinks and e
Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...
Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...
Portals and Hosted Files
12 Portals and Hosted Files This chapter introduces Progress Rollbase Portals, portal pages, portal visitors setup and management, portal access control and login/authentication and recommended guidelines
Installing and Sending with DocuSign for NetSuite v2.2
DocuSign Quick Start Guide Installing and Sending with DocuSign for NetSuite v2.2 This guide provides information on installing and sending documents for signature with DocuSign for NetSuite. It also includes
Synchronizer Installation
Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient
10CS73:Web Programming
10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server
CEFNS Web Hosting a Guide for CS212
CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things
Software Requirement Specification for Web Based Integrated Development Environment. DEVCLOUD Web Based Integrated Development Environment.
Software Requirement Specification for Web Based Integrated Development Environment DEVCLOUD Web Based Integrated Development Environment TinTin Alican Güçlükol Anıl Paçacı Meriç Taze Serbay Arslanhan
Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:
Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,
IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules
IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This
VPN Web Portal Usage Guide
VPN Web Portal Usage Guide Table of Contents WHAT IS VPN WEB CLIENT 4 SUPPORTED WEB BROWSERS 4 LOGGING INTO VPN WEB CLIENT 5 ESTABLISHING A VPN CONNECTION 6 KNOWN ISSUES WITH MAC COMPUTERS 6 ACCESS INTRANET
A Crash Course in OS X D. Riley and M. Allen
Objectives A Crash Course in OS X D. Riley and M. Allen To learn some of the basics of the OS X operating system - including the use of the login panel, system menus, the file browser, the desktop, and
System Administration Training Guide. S100 Installation and Site Management
System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
In this chapter, we lay the foundation for all our further discussions. We start
01 Struts.qxd 7/30/02 10:23 PM Page 1 CHAPTER 1 Introducing the Jakarta Struts Project and Its Supporting Components In this chapter, we lay the foundation for all our further discussions. We start by
Eucalyptus 3.4.2 User Console Guide
Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure
JTouch Mobile Extension for Joomla! User Guide
JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed
1. Tutorial - Developing websites with Kentico 8... 3 1.1 Using the Kentico interface... 3 1.2 Managing content - The basics... 4 1.2.
Kentico 8 Tutorial Tutorial - Developing websites with Kentico 8.................................................................. 3 1 Using the Kentico interface............................................................................
Front-End Performance Testing and Optimization
Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client
Adding Panoramas to Google Maps Using Ajax
Adding Panoramas to Google Maps Using Ajax Derek Bradley Department of Computer Science University of British Columbia Abstract This project is an implementation of an Ajax web application. AJAX is a new
Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business
2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update
Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG...
Table of Contents INTRODUCTION... 2 HOME PAGE... 3 Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... 11 Raising a Service Request... 12 Edit the Service Request...
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
Instructions for Configuring Your Browser Settings and Online Security FAQ s. ios8 Settings for iphone and ipad app
Instructions for Configuring Your Browser Settings and Online Security FAQ s ios8 Settings for iphone and ipad app General Settings The following browser settings and plug-ins are required to properly
Creating Personal Web Sites Using SharePoint Designer 2007
Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare
Content Management System User Guide
Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select
Secure Messaging Quick Reference Guide
Secure Messaging Quick Reference Guide Overview The SHARE Secure Messaging feature allows a SHARE registered user to securely send health information to another SHARE registered user. The Secure Messaging
PORTAL ADMINISTRATION
1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5
Web Development on the SOEN 6011 Server
Web Development on the SOEN 6011 Server Stephen Barret October 30, 2007 Introduction Systems structured around Fowler s patterns of Enterprise Application Architecture (EAA) require a multi-tiered environment
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET
MAGENTO THEME SHOE STORE
MAGENTO THEME SHOE STORE Developer: BSEtec Email: [email protected] Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1
Web Development with the Eclipse Platform
Web Development with the Eclipse Platform Open Source & Commercial tools for J2EE development Jochen Krause 2004-02-04 Innoopract Agenda Currently available Tools for web development Enhancements in Eclipse
SelectSurvey.NET Developers Manual
Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual
INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3
INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you
Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development
Designing portal site structure and page layout using IBM Rational Application Developer V7 Part of a series on portal and portlet development By Kenji Uchida Software Engineer IBM Corporation Level: Intermediate
Working With Your FTP Site
Working With Your FTP Site Welcome to your FTP Site! The UnlimitedFTP (UFTP) software will allow you to run from any web page using Netscape, Internet Explorer, Opera, Mozilla or Safari browsers. It can
Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning
Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux
TIMETABLE ADMINISTRATOR S MANUAL
2015 TIMETABLE ADMINISTRATOR S MANUAL Software Version 5.0 BY GEOFFPARTRIDGE.NET TABLE OF CONTENTS TOPIC PAGE 1) INTRODUCTION 1 2) TIMETABLE SPECIFICATIONS 1 3) SOFTWARE REQUIRED 1 a. Intranet Server (XAMPP
Terminal Four. Content Management System. Moderator Access
Terminal Four Content Management System Moderator Access Terminal Four is a content management system that will easily allow users to manage their college web pages at anytime, anywhere. The system is
Installation Instructions
Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3
XenClient Enterprise Synchronizer Installation Guide
XenClient Enterprise Synchronizer Installation Guide Version 5.1.0 March 26, 2014 Table of Contents About this Guide...3 Hardware, Software and Browser Requirements...3 BIOS Settings...4 Adding Hyper-V
How to Edit Your Website
How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing
Working with RD Web Access in Windows Server 2012
Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.
5.1 Features 1.877.204.6679. [email protected] Denver CO 80202
1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street [email protected] Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...
INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8
Lucy Zhang UI Developer [email protected]/[email protected] Contact: 646-896-9088
Lucy Zhang UI Developer [email protected]/[email protected] Contact: 646-896-9088 SUMMARY Over 7 years of extensive experience in the field of front-end Web Development including Client/Server
Dreamweaver CS5. Module 2: Website Modification
Dreamweaver CS5 Module 2: Website Modification Dreamweaver CS5 Module 2: Website Modification Last revised: October 31, 2010 Copyrights and Trademarks 2010 Nishikai Consulting, Helen Nishikai Oakland,
IT3504: Web Development Techniques (Optional)
INTRODUCTION : Web Development Techniques (Optional) This is one of the three optional courses designed for Semester 3 of the Bachelor of Information Technology Degree program. This course on web development
Data Tool Platform SQL Development Tools
Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6
Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00
Course Page - Page 1 of 12 Mobile Web Design with HTML5, CSS3, JavaScript and JQuery Mobile Training BSP-2256 Length: 5 days Price: $ 2,895.00 Course Description Responsive Mobile Web Development is more
DTS Web Developers Guide
Apelon, Inc. Suite 202, 100 Danbury Road Ridgefield, CT 06877 Phone: (203) 431-2530 Fax: (203) 431-2523 www.apelon.com Apelon Distributed Terminology System (DTS) DTS Web Developers Guide Table of Contents
Website Builder Documentation
Website Builder Documentation Main Dashboard page In the main dashboard page you can see and manager all of your projects. Filter Bar In the filter bar at the top you can filter and search your projects
This document is for informational purposes only. PowerMapper Software makes no warranties, express or implied in this document.
SortSite 5 User Manual SortSite 5 User Manual... 1 Overview... 2 Introduction to SortSite... 2 How SortSite Works... 2 Checkpoints... 3 Errors... 3 Spell Checker... 3 Accessibility... 3 Browser Compatibility...
ACE: Dreamweaver CC Exam Guide
Adobe Training Services Exam Guide ACE: Dreamweaver CC Exam Guide Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation
Debugging JavaScript and CSS Using Firebug. Harman Goei CSCI 571 1/27/13
Debugging JavaScript and CSS Using Firebug Harman Goei CSCI 571 1/27/13 Notice for Copying JavaScript Code from these Slides When copying any JavaScript code from these slides, the console might return
HDVideoShare! User Documentation Team January 31. 2012
Version 2.3 HDVideoShare! User Documentation Team January 31. 2012 2010 Copyrights and all rights reserved by Contus Support Interactive Pvt. Ltd., TABLE OF CONTENTS Welcome to you as a new user of this
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL
Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license
How To Integrate An Ipm With Airwatch With Big Ip On A Server With A Network (F5) On A Network With A Pb (Fiv) On An Ip Server On A Cloud (Fv) On Your Computer Or Ip
F5 Networks, Inc. F5 Recommended Practices for BIG-IP and AirWatch MDM Integration Contents Introduction 4 Purpose 5 Requirements 6 Prerequisites 6 AirWatch 6 F5 BIG-IP 6 Network Topology 7 Big-IP Configuration
Tutorial: Building a Web Application with Struts
Tutorial: Building a Web Application with Struts Tutorial: Building a Web Application with Struts This tutorial describes how OTN developers built a Web application for shop owners and customers of the
Macromedia Dreamweaver 8 Developer Certification Examination Specification
Macromedia Dreamweaver 8 Developer Certification Examination Specification Introduction This is an exam specification for Macromedia Dreamweaver 8 Developer. The skills and knowledge certified by this
Web Development using PHP (WD_PHP) Duration 1.5 months
Duration 1.5 months Our program is a practical knowledge oriented program aimed at learning the techniques of web development using PHP, HTML, CSS & JavaScript. It has some unique features which are as
place/business fetch details, 184 185 removefromfavorite () function, 189 search button handler bind, 190 191 B BlackBerry build environment
Index A addtofavorite() method, 175 177, 188 189 Android ADT Plugin for Eclipse installation, 22 24 application, GWT Build Path, 244 device info, 247 directory structure, 244, 245 Eclipse classpath, 244
WEB DEVELOPMENT IA & IB (893 & 894)
DESCRIPTION Web Development is a course designed to guide students in a project-based environment in the development of up-to-date concepts and skills that are used in the development of today s websites.
IT3503 Web Development Techniques (Optional)
INTRODUCTION Web Development Techniques (Optional) This is one of the three optional courses designed for Semester 3 of the Bachelor of Information Technology Degree program. This course on web development
Cloud Storage Service
Cloud Storage Service User Guide (Web Interface, Android App) Table of Content System Requirements...4 1.1Web Browser... 4 1.2Mobile Apps... 4 Accessing Cloud Storage using a Web Browser... 4 The Web Home
Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers
Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW
Content Author's Reference and Cookbook
Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
SAS Business Data Network 3.1
SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,
Homework 9 Android App for Weather Forecast
1. Objectives Homework 9 Android App for Weather Forecast Become familiar with Android Studio, Android App development and Facebook SDK for Android. Build a good-looking Android app using the Android SDK.
Glassfish, JAVA EE, Servlets, JSP, EJB
Glassfish, JAVA EE, Servlets, JSP, EJB Java platform A Java platform comprises the JVM together with supporting class libraries. Java 2 Standard Edition (J2SE) (1999) provides core libraries for data structures,
SSC - Web development Model-View-Controller for Java web application development
SSC - Web development Model-View-Controller for Java web application development Shan He School for Computational Science University of Birmingham Module 06-19321: SSC Outline Outline of Topics Java Server
BT CONTENT SHOWCASE. JOOMLA EXTENSION User guide Version 2.1. Copyright 2013 Bowthemes Inc. [email protected]
BT CONTENT SHOWCASE JOOMLA EXTENSION User guide Version 2.1 Copyright 2013 Bowthemes Inc. [email protected] 1 Table of Contents Introduction...2 Installing and Upgrading...4 System Requirement...4
A Tool for Evaluation and Optimization of Web Application Performance
A Tool for Evaluation and Optimization of Web Application Performance Tomáš Černý 1 [email protected] Michael J. Donahoo 2 [email protected] Abstract: One of the main goals of web application
Design Approaches of Web Application with Efficient Performance in JAVA
IJCSNS International Journal of Computer Science and Network Security, VOL.11 No.7, July 2011 141 Design Approaches of Web Application with Efficient Performance in JAVA OhSoo Kwon and HyeJa Bang Dept
CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE
CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE INTRODUCTION Tumbleweed (Secure Transport) is used to provide secure file transfer of critical business files, financial transactions and sensitive data such
2/24/2010 ClassApps.com
SelectSurvey.NET Training Manual This document is intended to be a simple visual guide for non technical users to help with basic survey creation, management and deployment. 2/24/2010 ClassApps.com Getting
USC Aiken CMS Manual. A manual on using the basic functions of the dotcms system. Office of Marketing and Community Relations-USC Aiken
USC Aiken CMS Manual A manual on using the basic functions of the dotcms system Office of Marketing and Community Relations-USC Aiken Table Of Contents Introduction/How to Use Manual... 2 Logging In...
603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide
603: Enhancing mobile device experience with NetScaler MobileStream Hands-on Lab Exercise Guide Christopher Rudolph January 2015 1 Table of Contents Contents... 2 Overview... 3 Scenario... 6 Lab Preparation...
Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf
1 The Web, revisited WEB 2.0 [email protected] Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf 2 The old web: 1994 HTML pages (hyperlinks)
Building Java Servlets with Oracle JDeveloper
Building Java Servlets with Oracle JDeveloper Chris Schalk Oracle Corporation Introduction Developers today face a formidable task. They need to create large, distributed business applications. The actual
Creating Java EE Applications and Servlets with IntelliJ IDEA
Creating Java EE Applications and Servlets with IntelliJ IDEA In this tutorial you will: 1. Create IntelliJ IDEA project for Java EE application 2. Create Servlet 3. Deploy the application to JBoss server
WEB PROGRAMMING LAB (Common to CSE & IT)
138 WEB PROGRAMMING LAB (Common to CSE & IT) Course Code :13CT1121 L T P C 0 0 3 2 Course Educational Objectives: The main objective of the lab course is to expose the students to different programming
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of
PDF Expert for ipad User guide
PDF Expert for ipad User guide 2011 Readdle Inc. 2 Contents Introduction Chapter 1: Copying documents to PDF Expert USB file transfer using itunes File Sharing Saving attachments from Mail and other ipad
Mistral Joomla Template
Mistral Joomla Template Documentation Copyright arrowthemes Table of Contents Introduction... 4 1.1 Template Overview... 5 Theme Styles and admin options... 5 Theme profiles... 5 Theme Layouts... 5 1.2
