The PCs provided for this session have been pre installed with an EPrints demo repository.

Size: px
Start display at page:

Download "The PCs provided for this session have been pre installed with an EPrints demo repository."

Transcription

1 Exercise 1: Getting Started The PCs provided for this session have been pre installed with an EPrints demo repository. 1.1 Logging In To log into the machine enter the username eprints, Press return, and when asked enter the password you have been given. You will the be logged into the desktop. If you're not familiar with Linux, don't panic! Things work more or less the same as in Windows. 1.2 Entering Commands A terminal allows you to type commands directly. This is how you will issue commands to EPrints. Click the right mouse button on the desktop and select Open Terminal from the popup menu. Enter the following command: eprints> cd /opt/eprints2 (eprints> means type this as user eprints ) 1.3 Starting a Text Editor Each of the exercises in this session require you to edit one or more EPrints configuration files. To start a text editor application, click on the Applications button on the top left hand corner of the screen, select Accessories, then Text Editor. To edit the file: /opt/eprints2/archives/myid/cfg/template en.xml click the Open button on the toolbar, then double click on Filesystem in the left hand pane of the Open File.. dialog box. In the right hand pane, double click opt, then eprints2 etc. until you reach templateen.xml. Double click template en.xml to open it for editing. 1.4 Starting a Web Browser After editing the EPrints configuration files, you will use a Web browser to check the results.to start a Web browser application, click on the Applications button, select Internet, then Firefox Web Browser. In the address bar, enter the hostname of the PC you are using (look on the front of the PC case for the machine name) to load the front page of the demo repository: 1/15

2 Exercise 2: Branding Almost all institutions modify the default look of their EPrints repository. Some simply add their logo and colour scheme, others make far more radical changes. For examples, visit: In this exercise, you will modify the look of the demo repository. Every page displayed by EPrints is wrapped in an XHTML template. This can be found at: /opt/eprints2/archives/myid/cfg/template en.xml 2.1 Change the Web Site Template /opt/eprints2/archives/myid/cfg/template en.xml Find the line <div class="archivetitle">&archivename;</div> This is the name of the archive as it appears in the top left of every page. Replace this with your institution's logo: <div class="archivetitle"><img src= /></div> (Or use the EPrints logo: Note that this file is XHTML so make sure that the img tag is closed correctly! Save your changes. 2.2 Reload the configuration Whenever you make changes to the configuration, you need to tell EPrints to reload it: eprints> bin/force_config_reload myid Tell EPrints to re generate its static pages (home page, help page...): eprints> bin/generate_static myid 2.3 Check it worked Reload the home page of the demo repository in your browser. Check your logo is displayed. 2.4 Change the Stylesheet /opt/eprints2/archives/myid/cfg/static/general/eprints.css 2/15

3 Change the background value for.header and.footer to suit your institution s colour scheme (or use EPrints Blue : #ccccff). Save your changes. Update the static pages: eprints> bin/generate_static myid 2.5 Check it worked Reload the home page of the demo repository in your browser. Check your new colour scheme is displayed. 2.6 Notes Find the <ep:pin> elements in the template en.xml file. These tell EPrints where to insert page content. To apply your changes to the views and abstract pages, you would need to run generate_views and generate_abstracts. Explore how generate_static works in more detail: force_config_reload is a quick way of reloading the eprints configuration, and is useful when tweaking the configuration files. However, for performance reasons you should always restart apache after tweaking a live archive. Read more: hp 3/15

4 Exercise 3: Configuring Submission Workflow When depositing documents in EPrints, users work through several simple forms. However, some institutions prefer to provide users with one large submission form. In this exercise you will learn how EPrints splits up the submission process, and configure the demo repository to provide one large submission form. 3.1 Change the workflow configuration /opt/eprints2/archives/myid/cfg/metadata types.xml Find the definition of the article type. It starts with <type name= article > Notice that the list of metadata fields is broken up by <page> tags these tell EPrints how to split the submission process into forms. Remove all the <page> tags from the article type. Save your changes. 3.2 Reload the configuration eprints> bin/force_config_reload myid 3.3 Create a User Account To view the submission page, you first need to create yourself a user account: eprints> bin/create_user myid USERNAME admin PASSWORD Choose your own values for USERNAME, and PASSWORD. 3.4 Check it worked Load the home page of the demo repository in your browser. Go to the User Area. Log in using the account you just created. You will be asked to enter your name. This is because by default a user record is not valid unless it has a name. Click Update Record. Select Begin new Item. Select Article and click Next. Check that all the metadata fields are shown on a single form. 4/15

5 Exercise 4: Customising the Subject Hierarchy By default, EPrints is configured with a subject hierarchy based on the Library of Congress subject tree. Institutions often modify this hierarchy (e.g. by adding more detail to areas that they specialise in) or even change it for a completely different classification scheme. In this exercise you will replace the EPrints subject tree with an alternative classification scheme. 4.1 Change the default subject tree /opt/eprints2/archives/myid/cfg/subjects Examine the format of this file: subjects:library of Congress Subject Areas:ROOT:0... Q:Q Science:subjects:0 Q1:Q Science (General):Q:1 QA:QA Mathematics:Q:1 QA75:QA75 Electronic computers. Computer science:qa:1 QA76:QA76 Computer software:qa:1 QB:QB Astronomy:Q:1 QC:QC Physics:Q:1 You can see that each line of the file is in the form: subjectid:name:parents:depositable subjectid is a unique identifier for the subject. name is the name of the subject, in the default language of the archive. the parents field defines how the subject fits into the hierarchy. In this case, EPrints is able to determine that "Computer Software" (QA76) comes under "Mathematics" (QA) which itself comes under "Science" (Q) and so on. Therefore a search for eprints matching the "Mathematics" subject would also return items associated with the "Computer Science" (QA75) and "Computer Software" (QA76) subjects. The special keyword ROOT indicates the top level of the hierarchy. depositable specifies whether or not users can associate their deposits with the subject. It wouldn't be very helpful to let users associate their eprints with the top level subject "Library of Congress Subject Areas", so in this case depositable is set to 0. 5/15

6 Remove the eprints subject tree altogether and replace it with you own favourite classification scheme. Here's the first line of an ACM Computing Classification scheme ( to get you started: subjects:acm Computing Classification System (1998):ROOT:0 4.2 Import the new subject tree eprints> bin/import_subjects myid 4.3 Check it worked Load the home page of the demo repository in your browser. Go to the User Area. Select Begin new Item. Select Book and click Next. Continue through the deposit process until you reach the Subjects page. Check your new subject tree is shown. 4.4 Notes The ability to specify multiple parents for a subject means that you can create a rich lattice rather than force items into a tree structure. Note that you did not need to run force_config_reload after making changes to the subjects file. This is because the subjects file is only used by import_subjects script and is not part of the main archive configuration. Editing the subjects file is a good way to define an inital classification scheme. To make small tweaks later, you can use the subject editing tool. Point your browser at: This exercise dealt with creating subject trees in a single language. In order to specify subject trees in multiple languages, you need to use a special XML format. See: 6/15

7 Exercise 5: Bespoke Deposits 1 EPrints comes configured with a default set of metadata fields (title, creators, date, publication, keywords, abstract...). Institutions often add extra metadata fields to suit the individual requirements of their repositories. In this exercise you will add a new metadata field to the demo repository. 5.1 Add a new metadata field The field you are going to add will allow users to enter the project code of the project that produced the item. /opt/eprints2/archives/myid/cfg/archivemetadatafieldsconfig.pm Find the entry for the referencetext field and add a comma after it, then add: { name => "proj_code", type => "text" } 5.2 Add human-readable name and description for new field Now you need to add a human readable name and description of the proj_code field. /opt/eprints2/archives/myid/cfg/phrases en.xml Add the following new phrases: <ep:phrase ref="eprint_fieldname_proj_code">project Code</ep:phrase> <ep:phrase ref="eprint_fieldhelp_proj_code">enter the code number of the project that produced this item.</ep:phrase> The order of the phrases in the file does not matter, but placing these with the other eprint_field* phrases would be sensible. The identifier proj_code is used internally in the database and in the EPrints configuration files, but these are never seen by users. The phrases are the public face of your repository. Although this makes things more complicated in some ways it gives several advantages: Phrases are Unicode so can contain any characters, not just Latin characters. The human readable name or description of a field can easily be changed without having any impact on the underlying data. Multiple phrase files can be used for a single repository, allowing it to support multiple languages. 7/15

8 5.3 Add the field to certain types of EPrints /opt/eprints2/archives/myid/cfg/metadata types.xml You are going to make the proj_code field optional for items of type conference_item but required for those of type monograph. Find the conference_item eprint type. It starts with <type name= conference_item > Add this line anywhere within the <type> element (remember from Exercise 2 that the <page> elements determine where in the submission process fields will appear): <field name="proj_code" /> Now find the monograph eprint type and add: <field name="proj_code" required="yes" /> 5.4 Erase and rebuild the database The erase_archive command deletes all the database tables, all the documents in the repository, and the repository Web pages. However, it does not touch anything in the repository's configuration directory. Stop the indexer running before deleting the database tables, in case it tries to write to them: eprints> bin/indexer stop eprints> bin/erase_archive myid force The mysql root password is blank (just hit return). Of course, on a properly secure system you would have set it to something! eprints> bin/create_tables myid eprints> bin/indexer start eprints> bin/import_subjects myid force eprints> bin/generate_static myid 5.5 Reload the configuration eprints> bin/force_config_reload myid 5.6 Create a User Account Create yourself a user accout. erase_archive also destroyed any existing user data! eprints> bin/create_user myid USERNAME admin PASSWORD 5.7 Check it worked Load the home page of the demo repository in your browser. Go to the User Area. 8/15

9 Log in using the account you just created. You will be asked to enter your name. This is because by default a user record is not valid unless it has a name. Click Update Record. Select Begin new Item. Select Conference or Workshop Item and click Next. Check that the new project code field is shown. Check that an error message is shown if you don t fill in the project code field for the Monograph type. 5.8 Notes Adding or removing fields means that the database tables will need to change. In this exercise you did this the easy way: erase the database and create a new one. Obviously you can't do this if you are already using your repository and have valuable data in the database. In that case you would modify the configuration files as described above, then modify the database directly by issuing SQL commands. There are instructions on how to do this on the EPrints Wiki: 9/15

10 Exercise 6: Bespoke Deposits 2 Default deposit types in Eprints are: Article, Book, Book Section, Conference Item, Monograph, Patent, Thesis, and Other. Some institutions have extended the default list of deposit types to include multimedia or data items. For examples of data repositories, visit: In this exercise you will add a new deposit type to the demo repository. 6.1 Add a new deposit type You will be adding a new Photograph deposit type to the demo repository. /opt/eprints2/archives/myid/cfg/metadata types.xml Add a new photograph type somewhere inside the <dataset name= eprint >.. </dataset> tags: <type name="photo"> <field name="title" required="yes" /> <field name="creators" required="yes" /> <field name="date_issue" required="yes" /> </type> In order to upload a photograph, we also need to extend the list of document types to include photo (jpg) files. Add a new jpg type inside the <dataset name= document >..</dataset> tags: <type name="jpg" /> 6.2 Add human-readable name and description for new types Now you need to add the human readable name and description of the photograph and jpg types. Note that we don t need to add any phrases for the title, creators or date_issue fields since these are defined by default. /opt/eprints2/archives/myid/cfg/phrases en.xml Add the following new phrases: <ep:phrase ref="eprint_typename_photo">photograph</ep:phrase> <ep:phrase ref="eprint_optdetails_type_photo">a scanned or digital photograph</ep:phrase> <ep:phrase ref="document_typename_jpg">jpeg</ep:phrase> 10/15

11 6.3 Add citation style for new types EPrints defines citation styles for each type. These citation styles tell EPrints how to display a short summary of the record, for example in search results. /opt/eprints2/archives/myid/cfg/citations en.xml Add the following citation style for photographs: <ep:citation type="eprint_photo"><span <ep:linkhere><em>@title;magicstop@</em></ep:linkhere> (@date_effective;res=year@) </span></ep:citation> You can see that this citation style contains several special tells EPrints to insert the value of the creators tells EPrints to insert the value of the title field, followed by a full stop unless the title already ends in a full tells EPrints to insert the year part of the date_effective field. The <ep:linkhere> tag tells EPrints where to insert a link to the item. To create a citation style for jpg files, just copy the document_other citation: <ep:citation type="document_jpg"><ep:linkhere><span class="documentcitation"><ep:ifset name="format">@format@</ep:ifset><ep:ifset name="formatdesc"> (@formatdesc@)</ep:ifset></span></ep:linkhere><ep:ifset In this case, the <ep:ifset> tags tell EPrints to only insert the value of the named field if its value is actually defined. 6.4 Add JPG to required formats By default, EPrints requires that users submit a file of type html, pdf, ps, or ascii. This requirement isn t helpful to photographers! Tell EPrints that jpg is also a required type: /opt/eprints2/archives/myid/cfg/archiveconfig.pm Find the lines: 11/15

12 $c >{required_formats} = [ "html", "pdf", "ps", "ascii" ]; And add the jpg format to the list. 6.5 Reload the configuration eprints> bin/force_config_reload myid Note that we don t have to erase and rebuild the database as we did in the previous exercise because we have not defined any new fields for the photo type. 6.6 Check it worked Load the home page of the demo repository in your browser. Go to the User Area. Select Begin new Item. Select Photograph and click Next. Check that the fields you defined for photograph (title, creators, date_issue) are shown. Check that you can upload a JPG file. 6.7 Notes The list of deposit types can also be restricted, for example to create theses only repositories. For examples, visit: 12/15

13 Exercise 7: Adding an Organisational Structure Exercise 4 added an alternative classification schema to EPrints, which involved editing the subjects file. In fact, the subjects file is a slight misnomer it can actually be used to specify any tree like classification. A popular customisation is for institutions to add a separate subject tree describing their organisational structure. This means that deposits can be associated with the departments or research groups from which they originated. In this exercise you add a second subject tree describing the organisational structure of your institution. 7.1 Add your organisational structure /opt/eprints2/archives/myid/cfg/subjects Add another "subject" tree to the subjects file which describes the organisational structure of your university. Here's the first line of the University of Southampton's organisational structure ( to get you started: uos:university of Southampton:ROOT:0 7.2 Add a new metadata field The field you are going to add will allow users to select the departments that were involved in producing the item. /opt/eprints2/archives/myid/cfg/archivemetadatafieldsconfig.pm Find the entry for the referencetext field and add a comma after it, then add: { name => "depts", type=>"subject", top=>"org", multiple => 1 }, 7.3 Add human-readable name and description for new field Add a human readable name and description of the depts field. /opt/eprints2/archives/myid/cfg/phrases en.xml Add the following new phrases: <ep:phrase ref="eprint_fieldname_depts">department(s)</ep:phrase> <ep:phrase ref="eprint_fieldhelp_depts">select the department(s) involved in producing this item.</ep:phrase> 13/15

14 7.4 Add the field to certain types of EPrints Make the depts field optional for records of type book. /opt/eprints2/archives/myid/cfg/metadata types.xml Find the book eprint type. It starts with <type name= book > Add this line after the editor field: <field name="dept" /> 7.5 Erase and rebuild the database eprints> bin/indexer stop eprints> bin/erase_archive myid force eprints> bin/create_tables myid eprints> bin/indexer start eprints> bin/import_subjects myid force eprints> bin/generate_static myid 7.6 Reload the configuration eprints> bin/force_config_reload myid 7.7 Create a User Account eprints> bin/create_user myid USERNAME admin PASSWORD 7.8 Check it worked Load the home page of the demo repository in your browser. Go to the User Area. Log in using the account you just created. You will be asked to enter your name. This is because by default a user record is not valid unless it has a name. Click Update Record. Select Begin new Item. Select Book and click Next. Check that the new depts field is shown. 14/15

15 Exercise 8: Configuring Searching and Browsing The following tasks do not have step by step instructions. If you run into problems or have any questions, please ask! 8.1 Add a new b rowse by view The default EPrints configuration allows users to browse a repository by year or by subject. Add a browse by project code (the field you created in Exercise 5) option to the demo repository. Hints: Views are configured in ArchiveConfig.pm under browse_views. The id of the view determines the phrase used for its title. After reloading the configuration, run generate_views to update the views (add a few submissions first so that your views actually contain some data!) 8.2 Add a new search form The default EPrints configuration has two search forms: simple and advanced. Add a new search form to the demo repository which allows users to search on title and/or project code. Hints: Search forms are configured in ArchiveConfig.pm Copy the simple search definition and modify it. You could also add a new phrase as introductory text for your search form. Don t forget to force_config_reload The id you give your search form ($c >{search} >{YOURID}) determines its URL 15/15

Exercise 1 : Getting Started

Exercise 1 : Getting Started : Repository Exercise 1 :Getting Started Exercise 2 :Branding with Confidence Exercise 3 :Configuring the Deposit Workflow Exercise 4 :Controlled Vocabularies Exercise 5 :Managing Authority Lists Exercise

More information

Exercise 1 : Branding with Confidence

Exercise 1 : Branding with Confidence EPrints Training: Repository Configuration Exercises Exercise 1 :Branding with Confidence 1 Exercise 2 :Modifying Phrases 5 Exercise 3 :Configuring the Deposit Workflow 7 Exercise 4 :Controlled Vocabularies

More information

GNU EPrints 2 Overview

GNU EPrints 2 Overview GNU EPrints 2 Overview Christopher Gutteridge 14th October 2002 Abstract An overview of GNU EPrints 2. EPrints is free software which creates a web based archive and database of scholarly output and is

More information

Working with WebNode

Working with WebNode Workshop 28 th February 2008 Page 1 http://blog.larkin.net.au/ What is WebNode? Working with WebNode WebNode is an online tool that allows you to create functional and elegant web sites. The interesting

More information

Part A: Getting started 1. Open the <oxygen/> editor (with a blue icon, not the author mode with a red icon).

Part A: Getting started 1. Open the <oxygen/> editor (with a blue icon, not the author mode with a red icon). DIGITAL PUBLISHING AND PRESERVATION USING TEI http://www.lib.umich.edu/digital-publishing-production/digital-publishing-and-preservation-using-tei-november-13-2010 Introductory TEI encoding 1 This exercise

More information

Guidelines for work on the Genebank KB site

Guidelines for work on the Genebank KB site Guidelines for work on the Genebank KB site (By Geert Claessens. For extra information email to geert.jef.claessens@gmail.com) These guidelines are written for users of the Crop Genebank Knowledge Base

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Scrat User Guide. Quality Center 2 Team Foundation Server 2010 Migration Tool. Version: Last updated: 5/25/2011. Page 1

Scrat User Guide. Quality Center 2 Team Foundation Server 2010 Migration Tool. Version: Last updated: 5/25/2011. Page 1 Scrat User Guide Quality Center 2 Team Foundation Server 2010 Migration Tool Version: 1.0.0 Last updated: 5/25/2011 Page 1 CONTENTS INTRODUCTION... 3 INSTALLATION... 4 Prerequisites 4 Activation 6 Check

More information

Space Details. Available Pages. Confluence Help Description: Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008)

Space Details. Available Pages. Confluence Help Description: Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008) Space Details Key: confhelp Name: Confluence Help Description: Creator (Creation Date): ljparkhi (Aug 14, 2008) Last Modifier (Mod. Date): ljparkhi (Aug 14, 2008) Available Pages Quickstart Guide Working

More information

Teacher Web Pages. Drupal 7 Training. A step-by-step guide to using your new Teacher Web Pages

Teacher Web Pages. Drupal 7 Training. A step-by-step guide to using your new Teacher Web Pages Teacher Web Pages Drupal 7 Training A step-by-step guide to using your new Teacher Web Pages LOGGING IN Before you can add or edit content, you need to log in. Once you are logged in, hit the main page

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu

USING DRUPAL. Hampshire College Website Editors Guide https://drupal.hampshire.edu USING DRUPAL Hampshire College Website Editors Guide 2014 https://drupal.hampshire.edu Asha Kinney Hampshire College Information Technology - 2014 HOW TO GET HELP Your best bet is ALWAYS going to be to

More information

1.0 Overview For content management, Joomla divides into some basic components: the Article

1.0 Overview For content management, Joomla divides into some basic components: the Article Joomla! 3.4.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Site Administrator Help

Site Administrator Help 1 of 6 28/07/2011 16:17 Site Administrator Help Help Contents Close this window General Information Creating a Top-level Community Creating a Sub-community Editing a Community Creating a Collection Editing

More information

2 P a g e P o w e r H o u s e C e r t i f y ( A M S ) 1. 1 U s e r G u i d e

2 P a g e P o w e r H o u s e C e r t i f y ( A M S ) 1. 1 U s e r G u i d e Content User Manual AMS Introduction... 5 The AMS Assessment Workflow... 5 Adding a Qualification to Your Site... 5 Assessment Certification Process... 5 The Learner Dashboard... 6 Learning Material...

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Creating and updating content on your WordPress content management system (CMS)

Creating and updating content on your WordPress content management system (CMS) Creating and updating content on your WordPress content management system (CMS) Posts vs pages WordPress comes with two content types: Posts and pages. Posts are content entries listed in reverse chronological

More information

MadCap Software. Index Guide. Flare 2017 r2

MadCap Software. Index Guide. Flare 2017 r2 MadCap Software Index Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Website/Blog Admin Using WordPress

Website/Blog Admin Using WordPress Website/Blog Admin Using WordPress Table of Contents How to login... 2 How to get support... 2 About the WordPress dashboard... 3 WordPress pages vs posts... 3 How to add a new blog post... 5 How to edit

More information

You will always have access to the training area if you want to experiment or repeat this tutorial.

You will always have access to the training area if you want to experiment or repeat this tutorial. EasySite Tutorial: Part One Welcome to the EasySite tutorial session. Core Outcomes After this session, you will be able to: Create new pages and edit existing pages on Aston s website. Add different types

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information

File Cabinet Manager

File Cabinet Manager Tool Box File Cabinet Manager Java File Cabinet Manager Password Protection Website Statistics Image Tool Image Tool - Resize Image Tool - Crop Image Tool - Transparent Form Processor Manager Form Processor

More information

edublogs ~ a WordPress Blog

edublogs ~ a WordPress Blog Page 1 http://blog.larkin.net.au/ edublogs ~ a WordPress Blog Introduction There are a number of online tools that teachers can use to establish an online blog. Three of the most commonly used tools are

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Mendeley Help Guide. What is Mendeley? Mendeley is freemium software which is available

Mendeley Help Guide. What is Mendeley? Mendeley is freemium software which is available Mendeley Help Guide What is Mendeley? Mendeley is freemium software which is available Getting Started across a number of different platforms. You can run The first thing you ll need to do is to Mendeley

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

2013 edition (version 1.1)

2013 edition (version 1.1) 2013 edition (version 1.1) Contents 1 Introduction... 3 2 Signing in to your Office 365 account... 3 2.1 Acceptable Use Policy and Terms of Use... 4 3 Setting your profile and options... 4 3.1 Settings:

More information

Club Site Editing Guide

Club Site Editing Guide Swimming New Zealand Club Site Editing Guide Intelligent Software for Membership All information contained in this document is for the exclusive use of Swimming New Zealand. We are happy that any part

More information

User Documentation. Studywiz Learning Environment. Student's Guide

User Documentation. Studywiz Learning Environment. Student's Guide User Documentation Studywiz Learning Environment Student's Guide Studywiz Learning Environment Student's Guide Contents 1 Introduction 4 1.1 Studywiz 4 1.2 The Studywiz Student s Guide 4 2 What s New

More information

2013, Active Commerce 1

2013, Active Commerce 1 2013, Active Commerce 1 2013, Active Commerce 2 Active Commerce User Guide Terminology / Interface Login Adding Media to the Media Library Uploading an Item to the Media Library Editing the Media Meta

More information

PBHS WordPress Blog Manual v1.0

PBHS WordPress Blog Manual v1.0 PBHS WordPress Blog Manual v1.0 Logging into your WordPress Blog In our address bar at the top of your browser, enter in www.yourdomain.com/blog/wp admin and press enter on your keyboard. (substitute youtdomain.com

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

Page Delivery Service User Guide

Page Delivery Service User Guide Harvard University Library Office for Information Systems Page Delivery Service User Guide The Page Delivery Service (PDS) delivers to a web browser scanned page images of books, diaries, reports, journals

More information

Working with the website editor...5. Editing page properties Creating a new page Adding and editing content records...

Working with the website editor...5. Editing page properties Creating a new page Adding and editing content records... About this guide...3 About the structure of web pages in typo3...4 The outer template...4 The page record...4 Page content records...4 Access to editing and publishing records...4 Working with the website

More information

DAITSS Demo Virtual Machine Quick Start Guide

DAITSS Demo Virtual Machine Quick Start Guide DAITSS Demo Virtual Machine Quick Start Guide The following topics are covered in this document: A brief Glossary Downloading the DAITSS Demo Virtual Machine Starting up the DAITSS Demo Virtual Machine

More information

Technical Intro Part 1

Technical Intro Part 1 Technical Intro Part 1 Learn how to create, manage, and publish content with users and groups Hannon Hill Corporation 950 East Paces Ferry Rd Suite 2440, 24 th Floor Atlanta, GA 30326 Tel: 800.407.3540

More information

Exercises Advanced Workshop Using Roxen Content Management System. Editing exercises using sandbox version of Roxen 4.5 site

Exercises Advanced Workshop Using Roxen Content Management System. Editing exercises using sandbox version of Roxen 4.5 site Exercises Advanced Workshop Using Roxen Content Management System Editing exercises using sandbox version of Roxen 4.5 site Exercise 1 Creating a sandbox 1. Start a web browser on your computer (Firefox

More information

TYPO3 Editing Guide Contents

TYPO3 Editing Guide Contents TYPO3 Editing Guide Contents Introduction... 2 Logging in... 2 Selecting your Workspace for editing... 2 Working with Content Elements... 3 Working in the Editing Window... 4 Pasting content from MS Word

More information

Working with Confluence Pages

Working with Confluence Pages Working with Confluence Pages Contents Creating Content... 3 Creating a Page... 3 The Add Page Link... 3 Clicking on an Undefined Link... 4 Putting Content on the Page... 4 Wiki Markup... 4 Rich Text Editor...

More information

Introduction to Cascade Server (web content management system) Logging in to Cascade Server Remember me Messages Dashboard Home

Introduction to Cascade Server (web content management system) Logging in to Cascade Server Remember me Messages Dashboard Home Introduction to Cascade Server (web content management system) Last Updated on Jul 14th, 2010 The College of Charleston's web site is being produced using a Content Management System (CMS) called Cascade

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

More information

Record Manager for New Zealand Schools

Record Manager for New Zealand Schools https://nzschools.share.worldcat.org/wms Record Manager is an OCLC application that is used for cataloguing. New Zealand school libraries can use Record Manager to find catalogue records in WorldCat and

More information

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0 University of Sheffield PART 1 1.1 Getting Started 1. Log on to the computer with your usual username

More information

Site Owners: Cascade Basics. May 2017

Site Owners: Cascade Basics. May 2017 Site Owners: Cascade Basics May 2017 Page 2 Logging In & Your Site Logging In Open a browser and enter the following URL (or click this link): http://mordac.itcs.northwestern.edu/ OR http://www.northwestern.edu/cms/

More information

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age HostPress.ca User manual For your new WordPress website July 2010 Version 1.0 Written by: Todd Munro 1 P age Table of Contents Introduction page 3 Getting Ready page 3 Media, Pages & Posts page 3 7 Live

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Navigating Your Profile

Navigating Your Profile Part 1: Profile Login Navigating Your Profile 1. Start at the Greater Kansas City Community Foundation s home page, www.growyourgiving.org. Select Nonprofit Search. 2. This is the Nonprofit Search home

More information

CMS (Content Managed System) Training Manual

CMS (Content Managed System) Training Manual CMS (Content Managed System) Training Manual 1 Contents Document History... 3 Introduction... 4 Login... 4 Control panel... 4 User manager... 5 Global Configuration... 7 Site Settings... 8 Metadata Settings...

More information

Web publishing training pack Level 2 Extend your knowledge of the web publishing system

Web publishing training pack Level 2 Extend your knowledge of the web publishing system Web publishing training pack Level 2 Extend your knowledge of the web publishing system Learning Objective: Understanding of concepts to enhance web pages look, streamline web publishing and evaluate your

More information

How To Guide. Hannon Hill Corporation for Rowan University

How To Guide. Hannon Hill Corporation for Rowan University How To Guide Hannon Hill Corporation for Rowan University Hannon Hill Corporation 3423 Piedmont Road, Suite 520 Atlanta, GA 30305 www.hannonhill.com 678.904.6900 info@hannonhill.com Rowan University: How

More information

Monarch Services Website Quick Guide

Monarch Services Website Quick Guide January 2016 Monarch Services Website Quick Guide www.monarchscc.org Credentials Wordpress Login URL: http://www.monarchscc.org/wp-login Login name :Nancya Password: wcs9na! Hosting Login at dreamhost.com

More information

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes)

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) A compound object is two or more files bound together with a CONTENTdm-created XML structure. When you create and add compound

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

Adobe Dreamweaver CC 17 Tutorial

Adobe Dreamweaver CC 17 Tutorial Adobe Dreamweaver CC 17 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

ArcGIS Online Tutorial

ArcGIS Online Tutorial ArcGIS Online Tutorial ArcGIS Online allows users to make interactive maps or applications and easily share them with others. The University of Minnesota has an organizational account that can be logged

More information

UNIVERSITY OF YORK. Service Builder. User Guide. Michael Weeks 4/1/2011

UNIVERSITY OF YORK. Service Builder. User Guide. Michael Weeks 4/1/2011 UNIVERSITY OF YORK Service Builder User Guide Michael Weeks 4/1/2011 The Service Builder is a GUI-based application. It takes an executable that conforms to our specification, requests information on the

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE. A Manual for the Cascade Server Content Management System (CMS)

NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE. A Manual for the Cascade Server Content Management System (CMS) NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE A Manual for the Cascade Server Content Management System (CMS) Table of Contents Chapter 1 - Getting Started... 3 Overview... 3 What is a Content Management

More information

FB Image Contest. Users Manual

FB Image Contest. Users Manual FB Image Contest Users Manual Table of contents Description.. 3 Step by step installation... 5 The administration interface.. 10 Creating a new contest... 13 Creating a Facebook Application.. 19 Adding

More information

USER GUIDE. MADCAP FLARE 2017 r3. Import

USER GUIDE. MADCAP FLARE 2017 r3. Import USER GUIDE MADCAP FLARE 2017 r3 Import Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Tutor Handbook for WebCT

Tutor Handbook for WebCT Tutor Handbook for WebCT Contents Introduction...4 Getting started...5 Getting a course set up...5 Logging onto WebCT...5 The Homepage...6 Formatting and designing the Homepage...8 Changing text on the

More information

Getting Help...71 Getting help with ScreenSteps...72

Getting Help...71 Getting help with ScreenSteps...72 GETTING STARTED Table of Contents Onboarding Guides... 3 Evaluating ScreenSteps--Welcome... 4 Evaluating ScreenSteps--Part 1: Create 3 Manuals... 6 Evaluating ScreenSteps--Part 2: Customize Your Knowledge

More information

University of Pittsburgh Communications Services. Basic Training Manual Drupal 7

University of Pittsburgh Communications Services. Basic Training Manual  Drupal 7 University of Pittsburgh Communications Services Basic Training Manual www.shrs.pitt.edu Drupal 7 Table of Contents Users... 3 Log In... 3 Log Out... 3 What is a Content Management System?... 4 What are

More information

SOCE Wordpress User Guide

SOCE Wordpress User Guide SOCE Wordpress User Guide 1. Introduction Your website runs on a Content Management System (CMS) called Wordpress. This document outlines how to modify page content, news and photos on your website using

More information

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views!

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views! Dreamweaver CS6 Table of Contents Setting up a site in Dreamweaver! 2 Templates! 3 Using a Template! 3 Save the template! 4 Views! 5 Properties! 5 Editable Regions! 6 Creating an Editable Region! 6 Modifying

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Browsing the World Wide Web with Firefox

Browsing the World Wide Web with Firefox Browsing the World Wide Web with Firefox B 660 / 1 Try this Popular and Featurepacked Free Alternative to Internet Explorer Internet Explorer 7 arrived with a bang a few months ago, but it hasn t brought

More information

URL for staff interface (bookmark this address on staff computers):

URL for staff interface (bookmark this address on staff computers): URL for public interface (link to this address): URL for staff interface (bookmark this address on staff computers): Application Name (for IIS): System Maintenance In the following Directory on your web

More information

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in 1 Contents 1. Using Cherry 1.1 Getting started 1.2 Logging in 2. Site Page Hierarchy Management 2.1 Page Addition 2.2 Page Deletion 2.3 Editing Page Details 3. Page Content Modification 3.1 Page Revisions

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

RunClick Webinar and Video Conferencing Software. User Manual

RunClick Webinar and Video Conferencing Software. User Manual RunClick Webinar and Video Conferencing Software User Manual Visit RunClick.com for more details 1 Page Table of Contents Installation and Activation of RunClick Part 1: WordPress Fresh Installation Process

More information

PROFESSIONAL TUTORIAL. Trinity Innovations 2010 All Rights Reserved.

PROFESSIONAL TUTORIAL. Trinity Innovations 2010 All Rights Reserved. PROFESSIONAL TUTORIAL Trinity Innovations 2010 All Rights Reserved www.3dissue.com PART ONE Converting PDFs into the correct JPEG format To create a new digital edition from a PDF we are going to use the

More information

Blog Pro for Magento 2 User Guide

Blog Pro for Magento 2 User Guide Blog Pro for Magento 2 User Guide Table of Contents 1. Blog Pro Configuration 1.1. Accessing the Extension Main Setting 1.2. Blog Index Page 1.3. Post List 1.4. Post Author 1.5. Post View (Related Posts,

More information

AE42 Version 4.2 B 2 Content Contributor

AE42 Version 4.2 B 2 Content Contributor Activedition Training AE42 Version 4.2 B 2 Content Contributor C2 Software Further Information: C2 Software Grianan Building Technology Park Dundee DD2 1SW T: +44 (0)1382 723040 E: training@c2software.com

More information

Deposit guide for Nottingham eprints

Deposit guide for Nottingham eprints Deposit guide for Nottingham eprints Contents 1. Deposit process... 1 1.1. Create a PDF... 2 2. How to place an embargo using eprints... 3 3. How to use an existing eprint as the basis for one with updated

More information

1 Installation (briefly)

1 Installation (briefly) Jumpstart Linux Bo Waggoner Updated: 2014-09-15 Abstract A basic, rapid tutorial on Linux and its command line for the absolute beginner. Prerequisites: a computer on which to install, a DVD and/or USB

More information

Joomla 2.5 Flexi Contact Component Configuration

Joomla 2.5 Flexi Contact Component Configuration Joomla 2.5 Flexi Contact Component Configuration Open Source Varsity For the configuration of Flexi Contact component in Joomla 2.5, you have to first login through the administrative panel of Joomla by

More information

PBwiki Basics Website:

PBwiki Basics Website: Website: http://etc.usf.edu/te/ A wiki is a website that allows visitors to edit or add their own content to the pages on the site. The word wiki is Hawaiian for fast and this refers to how easy it is

More information

INTRODUCTION TO EVERNOTE. Your External Brain

INTRODUCTION TO EVERNOTE. Your External Brain INTRODUCTION TO EVERNOTE Your External Brain How Does Evernote Work? How Does Evernote Work? Capture things you want to remember in Evernote How Does Evernote Work? Capture things you want to remember

More information

EQUELLA. Moodle User Guide. Version 6.2

EQUELLA. Moodle User Guide. Version 6.2 EQUELLA Moodle User Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 12/12/2013 13/12/2013 13/12/2013 December 2013 edition. Information in this document may change without

More information

Web Site Documentation Eugene School District 4J

Web Site Documentation Eugene School District 4J Eugene School District 4J Using this Documentation Revision 1.3 1. Instruction step-by-step. The left column contains the simple how-to steps. Over here on the right is the color commentary offered to

More information

User guide. Created by Ilse A. Rasmussen & Allan Leck Jensen. 27 August You ll find Organic Eprints here:

User guide. Created by Ilse A. Rasmussen & Allan Leck Jensen. 27 August You ll find Organic Eprints here: Fact sheet: Screenshot Manual User guide Created by Ilse A. Rasmussen & Allan Leck Jensen 27 August 2013 You ll find Organic Eprints here: http://www.orgprints.org/ Page 1/38 Fact sheet: Screenshot Manual

More information

ITSM SQL Reports. Installation and Configuration Guide. Date: November Page 1 of 18

ITSM SQL Reports. Installation and Configuration Guide. Date: November Page 1 of 18 ITSM SQL Reports Installation and Configuration Guide Date: November 2017 Page 1 of 18 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Xerte. Guide to making responsive webpages with Bootstrap

Xerte. Guide to making responsive webpages with Bootstrap Xerte Guide to making responsive webpages with Bootstrap Introduction The Xerte Bootstrap Template provides a quick way to create dynamic, responsive webpages that will work well on any device. Tip: Webpages

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

Free Websites for Clubs Handbook Comfypage User Guide

Free Websites for Clubs Handbook Comfypage User Guide Free Websites for Clubs Handbook Comfypage User Guide Department of Sport and Recreation Katherine Burnett katherine.burnett@dsr.wa.gov.au This information, along with training videos, can be found at

More information

ACADEMIC TECHNOLOGY SUPPORT

ACADEMIC TECHNOLOGY SUPPORT ACADEMIC TECHNOLOGY SUPPORT D2L : Introduction A Guide for Instructors ats@etsu.edu 439-8611 www.etsu.edu/ats Table of Contents Introduction...1 Objectives... 1 Logging In to D2L...1 My Home... 2 The Minibar...

More information

Web Publishing Basics 1

Web Publishing Basics 1 Web Publishing Basics 1 Website Maintenance Essentials Jeff Pankin Information Services and Technology Contents Course Objectives and Your Role As Site Maintainer... 3 Course Objectives... 3 Your Role...

More information

CS 268 Lab 6 Eclipse Test Server and JSPs

CS 268 Lab 6 Eclipse Test Server and JSPs CS 268 Lab 6 Eclipse Test Server and JSPs Setting up Eclipse The first thing you will do is to setup the Eclipse Web Server environment for testing. This will create a local web server running on your

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

Cascade User Guide. Introduction. Key System Features. User Interface

Cascade User Guide. Introduction. Key System Features. User Interface Cascade User Guide Introduction Key System Features User Interface Menus and Moving Through the System Files and Pages Working with Existing Pages File Action Menu Version Control Deleting files Restoring

More information

Getting Started with Penn State WikiSpaces

Getting Started with Penn State WikiSpaces Getting Started with Penn State WikiSpaces About Penn State WikiSpaces Penn State WikiSpaces is a platform intended to support Penn State-associated collaboration. Wikis are websites that allow for the

More information

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013

Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 Google Earth: Significant Places in Your Life Got Maps? Workshop June 17, 2013 1. Open Google Earth. 2. Familiarize yourself with Google Earth s navigational features by zooming into Furman s campus, your

More information