Customizing Display Views

Size: px
Start display at page:

Download "Customizing Display Views"

Transcription

1 This tutorial describes the process of customizing how search results and browse pages are displayed in CONTENTdm. This documentation is not intended to take the place of having working knowledge of HTML, PHP, or Java Script. Before making changes to any CONTENTdm Web template files, make a backup copy so you can restore the original if needed. Keep in mind that even simple changes could alter the layout of your Web templates. The CONTENTdm Web templates are Unicode compatible. When editing the files, be sure to use an editor that supports UTF-8 encoding. Some text editors, such as Notepad, add a Byte Order Mark to files saved as UTF-8. The Byte Order Mark is not recognized by PHP and alters the layout of the CONTENTdm Web templates. Notepad and other editors that add Byte Order Marks to UTF-8 files should not be used for editing the CONTENTdm Web templates. Learn About: Section I: Section II: Section III: Section IV: Overview Before You Begin Changing View Type Changing Display Views and Values using CQR Creating a Custom Query Pasting Results into browse.php Checking Your Changes Changing the results.php file Section V: Default Viewing Parameters Parameter Names and Values Nicknames Section VI: Editing Default Viewing Parameters Manually Determining Field Nickname Editing browse.php Checking Your Changes Changing the results.php file Section I: Overview When you browse a CONTENTdm collection or view search results, you most likely see the items in your collection in a grid view. Unless you change this view, the grid view displays the Thumbnail, the Title, the Subject, and Description fields. You can change the view from grid to another view by changing the CISOMODE value in the browse.php or the results.php files. The browse.php file contains settings that affect how end users browse your collections. The results.php file settings affect what end users see after performing a search. In addition to changing the CISOMODE value, you can also change the values for the parameters that define 2009 OCLC Page 1 of 17

2 the different views. These parameters include what fields are visible, how much data within the field is visible, which fields link to the item, how many items display on a page, and how the items are sorted. You can use Custom Queries and Results (CQR) to generate code to copy and paste into browse.php and results.php. Customizing these display views in the results.php or browse.php files does not guarantee that this view is what the end user sees. The settings that you edit in these files can be overwritten by using predefined queries created using CQR. Additionally, an end user can overwrite both the default browse and search results displays and those defined by CQR queries by setting Preferences while viewing a CONTENTdm collection. In Preferences, an end user can select view option, sort order, and number of items per page but cannot change what fields are visible, how much data is visible, or which fields link to the item. More information about CQR is available in the Help files at Information about setting preferences is available in the Help files at This tutorial leads you through the process of changing your PHP files to change the default settings for the browse and results pages. The tutorial will cover using Custom Queries and Results to generate code to copy and paste into browse.php and results.php. This tutorial also covers editing your settings manually. Section II: Before You Begin Both the browse.php file and the results.php file are located on the server in the \docs\cdm4 directory. You must have access to these files on the server in order to perform the steps within this tutorial. You must also have access to Collection Administration so that you can identify nicknames. This tutorial involves editing your PHP files. This documentation is not intended to take the place of having working knowledge of HTML, PHP, or Java Script. The customizations added to these pages will change the default settings of the browse.php and results.php file. These default settings can be overwritten by CQR queries and by the settings users define under preferences. This tutorial does not cover changing the preferences page to match your new default display. This is considered advanced customization and is not supported. Before you begin, make backup copies of your browse.php and results.php files so that you can easily change the web pages back to their original state if necessary. Section III: Changing View Type Changing the default view from grid to another type is done by replacing grid (in quotes) in the default viewer parameters with one of the following: bib Default displays title, which is hyperlinked, subject, and description. Does not include a thumbnail image. Default sorts by title. thumb Default displays a thumbnail image and the title. Both are hyperlinked. Default sorts by title. title Default displays title only, which is hyperlinked. Does not include a thumbnail image. Default sorts by title OCLC Page 2 of 17

3 hiera Default sorts and displays on subject and title. Does not include a thumbnail image. The name of the variable to change is CISOMODE. When editing the CISOMODE variable, keep the semicolons and the quotation marks intact. Otherwise, your changes will not appear as expected. To keep the results displays consistent for both browse and search results, make the same changes to your default viewing parameters in both the browse.php and results.php files. When a field is hyperlinked, it is a link to view the item in either the item viewer or the compound object viewer (if it is a compound object). It is easy to make this change directly in your PHP files. Once you have made backup copies, edit the browse.php and results.php files using HTML editing software. If you do not have HTML editing software, open the files in a text editor that supports UTF-8 encoding. In this example, we will edit the browse.php and results.php files, changing the default view type from grid to thumbnail. To change view type: 1. Make backup copies of browse.php and results.php, located in the \docs\cdm4 directory on your server. 2. Open browse.php in an HTML or text editor. 3. In the default viewer parameters section of the file, locate the variable named CISOMODE. This parameter defines the default viewing mode. Read Section V for more information about the default viewing parameters. Figure 1. Locating CISOMODE 4. Locate the word grid next to CISOMODE. Replace the word grid with the word thumb, retaining the surrounding quotes. Other options are title, bib, and hiera, as noted in the comments within the file. 5. Save your changes. 6. Check that the changes you make provide the expected results. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar OCLC Page 3 of 17

4 If your changes are not visible, check that you have saved your file. You may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. To delete cached files when using Microsoft Internet Explorer, from the Tools menu, select Internet Options. Click Delete Files. A dialog box confirms that you want to delete all files in Temporary Internet Files. Click Yes. When your cached files have been cleared, click OK. Refresh the Web page. 7. If you are satisfied with your changes, close the file. 8. Open results.php and perform steps 3-7. You have now changed the default view to thumbnail. If you wish to change the parameters within the view that you have selected, you must edit the default viewing parameter values, either by using CQR to generate new code, or manually. Section IV: Changing Display Views and Values Using CQR Many users want to change the default display view and sort field after adding a new field to their collection. For instance, if an organization adds a new field to their newspaper collection called Issue Number, they might want to change the grid view, hierarchical view, and bibliographic view to make the new field visible. They may also want to change the sort order so results are sorted on the new issue number. Another reason you might want to change display views and values is to make more fields visible in the grid and bibliographic views. You can change the default display and sort parameters in two different ways: Generating a CQR query and then pasting the resulting code into browse.php and results.php Editing the default viewer parameters in browse.php and results.php directly. This will be covered in Section VI. To avoid errors caused by misplaced punctuation and unknown field nicknames, we recommend using CQR. If you are not familiar with CQR, read Creating Custom Queries and Results at In this tutorial, we will change the default viewing mode from grid to bibliographic. Then, we will change the parameters within the bibliographic view type. With this method, we will create a query using CQR to generate the code string that defines the view. We will copy the query result and paste it into browse.php. Once we check our changes, we will save them. Then, we will paste the same portion into results.php. Step 1: Creating a Custom Query This step will walk you through creating a query. For this tutorial, we are going to change the view from grid to bibliographic, and we are going to add a field to the list of visible fields. 1. Navigate to the CQR by typing the following URL in your Web browser address bar: OCLC Page 4 of 17

5 Figure 2. Select Query Type 2. Select Generate the default view parameters for the browse or results page. 3. Click Next. The Results View page displays. What we choose will produce the code needed for changing the default viewing parameters OCLC Page 5 of 17

6 Figure 3. Define Results View 4. Change the following on the Results View page: In Select the default viewing mode: Select Bibliographic. In Configure the bibliographic view: For Field 4, select Format from the drop-down list. For Field 4 Display Options, select Show entire field from the drop-down list. For Field 4 Separator, select New Line from the drop-down list. Do not check Link to Item. In Choose sort order: For Priority 2, select Subject from the drop-down list. Note: The Relevancy sort option only applies to the Results View page OCLC Page 6 of 17

7 In Define compound object results display: Choose Only show full compound object within search results. Note: The compound object option only applies to the results page. 5. Select Next. The Finish page is shown. Figure 4. CQR Results Step 2: Pasting Results into browse.php In this step, copy the results in the text box on the Finish CQR page and then paste it into browse.php. 1. Copy the code from the text box of the CQR page. Many Web browser support Ctrl C as a shortcut. 2. Navigate to \server\docs\cdm4 and make backup copies of browse.php and results.php if you have not already done so. 3. Open browse.php. 4. Find the default viewer parameters within the file. There are comments above and below the parameters that indicate their location OCLC Page 7 of 17

8 Figure 5. browse.php File 5. Highlight and delete the default viewer parameters. 6. Paste the section that you copied from the Web page into browse.php. 7. Save browse.php. Note: The CQR finish page adds a command to suppress compound objects in search results. This code does not change the functionality of the browse.php page. If desired, you can remove this code from the file. Step 3: Checking Your Changes Before you close your file, check your changes to make sure that this new view is what you want. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar and navigate to the Browse page OCLC Page 8 of 17

9 Figure 6. Check the Browse page within your Web browser If your changes are not visible, you may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. If your changes are not visible, check that you have saved your file. You may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. To delete cached files when using Microsoft Internet Explorer, from the Tools menu, select Internet Options. Click Delete Files. A dialog box confirms that you want to delete all files in Temporary Internet Files. Click Yes. When your cached files have been cleared, click OK. Refresh the Web page. If you are satisfied with your changes, close the file. You have now successfully changed the browse.php file. Step 4: Changing the results.php File Once you have successfully changed the browse.php file, you are now ready to change the results.php file. At this point, you still have the finish page of Custom Queries and Results open and you have made a back up copy of your results.php file. 1. Copy the code from the CQR text box. (If you know that you have the default parameters in the clipboard, you can skip this step.) 2. Navigate to \server\docs\cdm4 and make backup copies of results.php if you have not already done so. 3. Open results.php. 4. Find the default viewer parameters within the file. There are comments above and below the parameters that indicate their location. 5. Highlight and delete the default viewer parameters. 6. Paste the section that you copied from the Web page into results.php. 7. Save results.php OCLC Page 9 of 17

10 Check your work as before. After entering the URL of your CONTENTdm server in your Web browser address bar, perform a search. If your changes were successful, you will see all results in a bibliographic view. Section V: Default Viewing Parameters This section provides you with information about the default viewing parameters in case you wish to edit your files without using Custom Query and Results. The default viewer parameters appear in both the browse.php and results.php files. They are in the format of: define("parameter name", "variable value"); //comments The results and the browse.php files have almost identical default viewer parameters. However the parameter CISOSUPPRESS, shown below, has no effect within the browse.php file since individual pages of compound objects are automatically suppressed in browse mode. Also, three of the parameters in results.php contain sorting by relevancy. Figure 7. Default Viewer Parameters Parameter Names and Values The table below explains the default viewer parameter values. The first three parameters define results, viewer, and default viewing formats. The final five define the views. By editing the parameter options that define the views, you can change the number of items displayed per results page and the sort order. For the grid view and the bibliographic view, you can choose which fields to display, whether displayed fields are hyperlinked to the viewer, and how much content of a field is shown. When editing these views, keep in mind that the end user can change the view type, number of items per page and sort order in Preferences. The end user does not have the ability to change what fields are visible, except in the hierarchical view. For the hierarchical view, the fields displayed and the sort order are the same. CONTENTdm supports the ability to view up to 100 items per results page. Parameter Name CISORESTMP Explanation Defines which file is used to display search results. If you wish, you can create a custom results page for each collection. For information on how to customize multiple collections, read Customizing Multiple Collections at The default parameters are: 2009 OCLC Page 10 of 17

11 Parameter Name Explanation define (DEF_CISORESTMP, results.php ); CISOVIEWTMP Defines which file is used to display items. If you wish, you can create a custom item viewer for each collection. For information on how to customize multiple collections read Customizing Multiple Collections at The default parameters are: define (DEF_CISOVIEWTMP, item_viewer.php ); CISOMODE Defines the default viewing mode. Changing this value in browse.php changes the default viewing mode when browsing. Changing this value in results.php changes the default viewing mode for search results. Choose from the following values shown commented in the code: grid, title, thumb, bib; hiera. The default parameters are: define("def_cisomode", "grid"); //grid; title; thumb; bib; hiera The following parameters define what is displayed for the viewing modes. If you have changed the default viewing mode in CISOMODE, confirm that it displays as you wish. Also, check the values of the other modes, especially the fields that are visible in the grid and bibliographic views. Changing these values does not affect what the end user sees on the preferences page. Parameter Name DEF_CISOGRID Explanation The grid view shows the items separated by a rule, with information about each item (the fields) in columns. Column headings contain the field names. Up to five fields can be viewed or four fields and a thumbnail image. Parameter values are: fieldnickname1,a,b;fieldnickname2,a,b;fieldnickname3,a,b;fieldnickname4,a,b; fieldnickname5,a,b; number of items per page;c,d,e,f,g where: fieldnickname is the nickname of the field. a is how much of the metadata within the field is shown. (A = all of the metadata is shown, K = show search keywords in context. Or, indicate the number of characters to show: 20, 40, 60, 80, 100 or 200.) b determines if the field is hyperlinked to the item viewer (1 = the field will be hyperlinked to the viewer, 0 = the field will not be hyperlinked to the viewer.) number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to view or sort on all five fields, use none instead of a field name OCLC Page 11 of 17

12 Parameter Name Explanation The default parameters are: define("def_cisogrid", "thumbnail,a,1;title,a,1;subjec,a,0;descri,200,0;none,a,0;20;relevancy,none,n one,none,none"); In the default grid view, the thumbnail will be shown on the left, followed by the Title, Subject, and Description fields. The Thumbnail and the Title fields are hyperlinked to the item viewer. The Description and Title field are not. The entire Title and Subject fields are shown. Up to 200 characters of the Description field will be displayed. There will be 20 items on each page. The items will be sorted by title only. CISOBIB The biblographic view displays text from up to five fields without thumbnails. Each item is separated by a rule. Choose whether the fields describing the item are separated by new line, comma, period or space. Choose up to five fields to use to sort the items. Parameter values are: fieldnickname1,a,b,c;fieldnickname2,a,b,c;fieldnickname3,a,b,c; fieldnickname4,a,b,c;fieldnickname5,a,b,c; number of items per page; d,e,f,g,h where fieldnickname is the nickname of the field. a is how much of the metadata within the field is shown. (A = all of the metadata is shown, K = show search keywords in context. Or, indicate the number of characters to show: 20, 40, 60, 80, 100 or 200.) b determines if the field is hyperlinked to the item viewer (1 = the field will be hyperlinked to the viewer, 0 = the field will not be hyperlinked to the viewer.) c determines how the different fields are separated (N = new line, C = comma, P = period, S = space). number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). and d,e,f,g,h are field names in the desired sort order. and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to view or sort on all five fields use none instead of a field name The default parameters are: define("def_cisobib","title,a,1,n;subjec,a,0,n;descri,200,0,n;none,a,0,n;non e,a,0,n;20;relevancy,none,none,none,none") In the default bibliographic view, the entire Title and Subject fields are shown, followed by the Description field. The title is hyperlinked to the item viewer. Up to 200 characters of the Description field will be displayed. The items will be sorted by title only. CISOTHUMB In the thumbnail view, the Title field is displayed along with a Thumbnail image in columns and rows. Both the Thumbnail and Title field are automatically hyperlinked to the viewer. Parameter values are: 2009 OCLC Page 12 of 17

13 Parameter Name Explanation number of items per page (number of columns x number of rows); a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 12, 15, 16, 20 (4x5), 20 (5x4), 24, 25, 28, 30, 32, 35, 36, 40 (4x5), 40 (5x4), 50, 60 (4x5), 60 (5x4), 70, 80 (4x5), 80 (5x4), 90, 100 (4x5) or 100 (5x4)). Numbers that are divisible by both 4 and 5 require you to select whether want your items displayed 4 items across or 5 items across. and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to sort on all five fields, use none instead of a field name. The default parameters are: define ( DEF_CISOTHUMB, 20 (4x5); relevancy, none,none,none,none ); In the default thumbnail view, up to 20 items are displayed on a page. The Thumbnail and Title fields are hyperlinked to the item viewer. The items will be sorted by title only. CISOTITLE In the title view, only the titles of the images are displayed. Parameter values are: number of items per page; a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). a,b,c,d,e are field names in the desired sort order. If you do not want to sort on all five fields, use none instead of a field name. The default parameters are: define("def_cisotitle", "20;title,none,none,none,none"); In the default title view, the items will be sorted by title only. Up to 20 items are displayed on a page. CISOHIERA In the hierarchical view, the items are sorted and displayed by the fields that you select. The field titles are arranged in rows across the page. A separate entry for each field is provided on each row. Parameter values are: number of items per page; a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). a,b,c,d,e are field names in the desired view and sort order. If you do not want to view and sort on all five fields, use none instead of a field names. The default parameters are: define("def_cisohiera", "20;subjec,title,none,none,none"); In the default hierarchical view, the items are sorted by the Subject field and 2009 OCLC Page 13 of 17

14 Parameter Name CISOSUPPRESS Explanation then by the Title field. The Subject and Title fields are the only fields that will be shown. Up to 20 items are displayed on a page. This parameter suppresses pages in compound objects in search results. The two values you can choose are: 0 or 1. 0 = Do not suppress compound object pages within search results. This means that the individual pages that make up the compound object will display in search results as well as the compound object itself. 1 = Suppress compound object pages within search results. The individual pages that make up the compound object will not display in search results. Only the compound object will display. Nicknames As shown in the variable name and value table, you must know the field nickname if you edit values for some of the default viewer parameters. Enter field nicknames to specify viewing and sorting information. If you use CQR (the recommended method) to change the default viewing parameters, you won t need to determine field nicknames. If you do not use CQR and choose to alter the default viewing parameters code directly, taking care to keep quotations, semicolon, and commas intact, you must determine field nicknames. Note that CONTENTdm uses field nicknames when searching or browsing within a single collection. Dublin Core Mapping is used when searching across multiple collections. To determine field nicknames: 1. Open CONTENTdm Administration using your Acquisition Station or by navigating to: 2. Enter your user name and password if prompted. 3. Click the Collections tab. Then, click Fields to arrive at the field properties page. 4. On the Field Properties page, click Edit in the row of the field for which you wish to find the field. The Edit Field page opens. 5. Check the URL of the page. The field nickname, is after the parameter CISONICK. Figure 8. Nickname in URL 2009 OCLC Page 14 of 17

15 Note: If your status bar is active in your Web browser, you can also see the field nickname by hovering over the edit link in all field rows on the Field Properties page. Figure 9. Nickname in Status bar Section VI: Editing Default Viewing Parameters Manually Now we will make the same changes to the browse.php and results.php files without using code generated by CQR, using an unedited copy of your browse and results files. This requires that you edit, with Web editing software or a text editor, the browse.php and results.php files. Before we begin, confirm that you have a back up copy of both files. If you have edited the files, as in the previous section, ensure that you retain unedited copies of the files. This may require that you make additional copies of the unedited files. In this example, we will: Change default view to bibliographic. Add the Format field to the view, separated by a new line. Add an additional field to the sort options. We will apply these changes to both results.php and browse.php. The general steps are: 1. Determine field nickname for the field that we are adding to the bibliographic view. 2. Edit the browse.php file. 3. Check your changes. 4. Edit the results.php file. Step 1: Determining Field Nickname In order to add another field to any default viewer parameters, we must know the field nickname. We are going to go to Collection Administration to determine field nickname. 1. Open CONTENTdm Administration. Do this by navigating to: 2. Enter your user name and password if prompted. 3. Click the Collections tab. Then, click Fields to arrive at the Field Properties page. 4. In the Field Properties page, find the Format field. 5. Click Edit for that field. The Edit Field page opens. 6. Check the URL of the page. The field nickname, after the parameter CISONICK, is format OCLC Page 15 of 17

16 Figure 10. Format nickname Step 2: Editing browse.php Now that we know the nickname, we are ready to edit the browse.php file. In this step, open the browse.php file and edit the values to reflect the changes that we wish to make: 1. Navigate to \server\docs\cdm4 and make copies of browse.php and results.php. 2. Open browse.php using Web editing software or a text editor. 3. Find CISOMODE in the browse.php file. Change grid to bib. This changes the default view to bibliographic. The following shows the change to DEF_CISOMODE. Figure 11. Changing CISOMODE 4. Now find CISOBIB. Make the following changes to the fourth field in the view parameters. Find the fourth field, currently set at none, and change to format. Keep the A, as we want to show all fields. Keep the 0, as we do not want this term hyperlinked to the viewer. Keep the N, as we want this field separated with a new line. 5. Make the following changes to the sort view: Find the second value, currently set at none, and change it to subjec. This is the field nickname. 6. Save browse.php. Step 3: Checking Your Changes Before you close your file, check your changes to make sure that this new view is what you want to display. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar OCLC Page 16 of 17

17 If your changes are not visible, you may need to refresh the Web page or delete your temporary Internet files to remove cached files, as shown in the previous section. To refresh the Web page, press the F5 key. Step 4: Changing the results.php File Once you have successfully changed the browse.php file, you are now ready to change the results.php file. At this point, you ve made a copy of your results.php file. 1. Open results.php using Web editing software or a text editor. 2. Find CISOMODE in the results.php file. Change grid to bib. This changes the default view to bibliographic. Now we are ready to make the change to the CISOBIB values. 3. Find CISOBIB. Make the following changes to the fourth field in the view parameters. Find the fourth field, currently set at none, and change to format. Keep the A, as we want to show all fields. Keep the 0, as we do not want this term hyperlinked to the viewer. Keep the N, as we want this field separated with a new line. 4. Make the following changes to the sort view: Find the first value, currently set at relevancy, and change it to title. This is the field nickname. 5. Save results.php. Check your changes in this file, exactly as you did in Step 3. You have now successfully changed both the results and browse pages to bibliographic view. Follow these general steps to make other changes to these files. If you want to revert back to the default values, rename your existing edited PHP files to something other than browse.php or results.php (such as editedbrowse.php or editedbrowse.php). Then, rename the copies that you made of browse.php and results.php files back to browse.php and results.php OCLC Page 17 of 17

Creating and Viewing My Favorites

Creating and Viewing My Favorites Creating and Managing My Favorites This tutorial will guide you through the steps required to create and share My Favorites files. My Favorites allows users to select and save items while viewing collections.

More information

Changing Image Display

Changing Image Display 12-Jul-09 Changing Image Display One way to customize collections is to change the settings of the four viewers within the CONTENTdm Web templates to improve the display of your collection. You can change

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

Using PDF Files in CONTENTdm

Using PDF Files in CONTENTdm Using PDF Files in CONTENTdm CONTENTdm uses the Adobe PDF Library to provide features for efficient processing of born-digital documents in Portable Document Format (PDF). PDF files and PDF compound objects

More information

Using PDF Files in CONTENTdm

Using PDF Files in CONTENTdm Using PDF Files in CONTENTdm CONTENTdm uses the Adobe PDF Library to provide features for efficient processing of born-digital documents in Portable Document Format (PDF). PDF files and PDF compound objects

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

More information

CONTENTdm 4.3. Russ Hunt Product Specialist Barcelona October 30th 2007

CONTENTdm 4.3. Russ Hunt Product Specialist Barcelona October 30th 2007 CONTENTdm 4.3 Russ Hunt Product Specialist Barcelona October 30th 2007 CONTENTdm 4.3 Agenda 4.3 Overview PDF Enhancements Metadata additions Server changes Connexion digital import Upgrading Questions

More information

Creating and Editing Compound Objects Using the Web Interface

Creating and Editing Compound Objects Using the Web Interface Creating and Editing Compound Objects Using the Web Interface June 10, 2009 Creating and Editing Compound Objects Using the Web Interface The Web interface allows you to create and edit compound objects

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

Creating and Editing Compound Objects Using CONTENTdm Administration

Creating and Editing Compound Objects Using CONTENTdm Administration Creating and Editing Compound Objects Using CONTENTdm Administration January 22, 2017 Creating and Editing Compound Objects Using CONTENTdm Administration CONTENTdm Administration enables you to create

More information

Using the WorldCat Digital Collection Gateway

Using the WorldCat Digital Collection Gateway Using the WorldCat Digital Collection Gateway This tutorial leads you through the steps for configuring your CONTENTdm collections for use with the Digital Collection Gateway and using the Digital Collection

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

User Guide. Product: GreenFolders. Version: 3.8

User Guide. Product: GreenFolders. Version: 3.8 User Guide Product: GreenFolders Version: 3.8 Release Date: October 2014 GreenFolders 3.8 User Guide Introduction Table of Contents 1 Introduction... 6 2 General Information... 7 2.1 Login Procedure...

More information

Enterprise Portal Train the Trainer User Manual WEB PARTS

Enterprise Portal Train the Trainer User Manual WEB PARTS Enterprise Portal Train the Trainer User Manual WEB PARTS Version 1.2.1 Date: January 31, 2012 Table of Contents Table of Contents... 2 1 I Need To... 3 2 Media Web Part... 10 3 Content Editor... 15 4

More information

Image Rights Options: Using Bands, Brands and Watermarks

Image Rights Options: Using Bands, Brands and Watermarks Image Rights Options: Using Bands, Brands and Watermarks Display ownership or other copyright information within your collection by using bands, brands, and watermark options within CONTENTdm. This tutorial

More information

Versions. Overview. OU Campus Versions Page 1 of 6

Versions. Overview. OU Campus Versions Page 1 of 6 Versions Overview A unique version of a page is saved through the automatic version control system every time a page is published. A backup version of a page can also be created at will with the use of

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

Shopping Cart: Queries, Personalizations, Filters, and Settings

Shopping Cart: Queries, Personalizations, Filters, and Settings Shopping Cart: Queries, Personalizations, Filters, and Settings on the Shopping Cart Home Page Use this Job Aid to: Learn how to organize the Shopping Cart home page so that it is easier to use. BEFORE

More information

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Task Switcher. Martin Gräßlin

Task Switcher. Martin Gräßlin Martin Gräßlin 2 Contents 1 Navigating through Windows 4 1.1 Visualization......................................... 4 1.2 Shortcuts........................................... 4 1.3 Content............................................

More information

WebStore by Amazon: Quick Start Guide

WebStore by Amazon: Quick Start Guide WebStore by Amazon: Quick Start Guide Introduction to WebStore by Amazon WebStore by Amazon is a powerful tool that allows you to create a complete e- commerce site. The WebStore by Amazon setup wizard

More information

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files.

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files. Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service Batch Editing CONTENTdm Records Produced by the Digital Collections Working Group of the Content Creation & Dissemination

More information

Broken Pages. Overview

Broken Pages. Overview Broken Pages Overview Authority Level: All user levels. Level 9 and Level 10 administrators will see all broken pages in the report. User levels 0 through 8 will only see broken pages to which they have

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

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 Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Image Rights Options: Using Banding, Branding, and

Image Rights Options: Using Banding, Branding, and Image Rights Options: Using Banding, Branding, and Watermarking Display ownership or other copyright information within your collection by using banding, branding, and watermarking options within CONTENTdm.

More information

OUCampus v10. Basic Access and Editing Instructions

OUCampus v10. Basic Access and Editing Instructions OUCampus v10 Basic Access and Editing Instructions February 2017 Contents Logging on to OU Campus... 1 Check In/Check Out Concept... 1 Editing a Page... 2 Uploading Files... 3 Adding Links... 4 Editing/Removing

More information

How to Edit Your Website

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

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Bulk Provisioning Overview

Bulk Provisioning Overview CHAPTER 8 Bulk provisioning functionality in the Cisco Voice Provisioning Tool allows you to add or modify a large number of users or a large number of phones/device profiles (and the corresponding configuration

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

Content Publisher User Guide

Content Publisher User Guide Content Publisher User Guide Overview 1 Overview of the Content Management System 1 Table of Contents What's New in the Content Management System? 2 Anatomy of a Portal Page 3 Toggling Edit Controls 5

More information

Microsoft Word - Templates

Microsoft Word - Templates Microsoft Word - Templates Templates & Styles. Microsoft Word come will a large amount of predefined templates designed for you to use, it is also possible to download additional templates from web sites

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Adding EAD-Encoded Finding Aids in CONTENTdm

Adding EAD-Encoded Finding Aids in CONTENTdm Adding EAD-Encoded Finding Aids in CONTENTdm This tutorial leads you through the steps for configuring collections for use with the Add Finding Aid functionality in the CONTENTdm Project Client, tips for

More information

Learning More About NetObjects Matrix Builder 1

Learning More About NetObjects Matrix Builder 1 Learning More About NetObjects Matrix Builder 1 NetObjects Matrix Builder is a service that hosts your Web site, makes it easy to update, and helps you interact with visitors. NetObjects Matrix Builder

More information

Parish . User Manual

Parish  . User Manual Parish Email User Manual Table of Contents LOGGING IN TO PARISH EMAIL... 3 GETTING STARTED... 3 GENERAL OVERVIEW OF THE USER INTERFACE... 3 TERMINATE THE SESSION... 4 EMAIL... 4 MESSAGES LIST... 4 Open

More information

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files.

Some of the content in this documentation has been adapted from OCLC s Support & Training CONTENTdm Help files. Orbis Cascade Alliance Content Creation & Dissemination Program Digital Collections Service Batch Editing CONTENTdm Records Produced by the Digital Collections Working Group of the Content Creation & Dissemination

More information

EXERCISE 1 Download and Install the Fusion Program and Data

EXERCISE 1 Download and Install the Fusion Program and Data Last Updated: April, 2016 Version: Fusion 3.50 EXERCISE 1 Download and Install the Fusion Program and Data Objectives In this exercise you will begin creating a file structure to download the Fusion program

More information

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY

VERSION JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY VERSION 2015.1 JANUARY 19, 2015 TEST STUDIO QUICK-START GUIDE STANDALONE & VISUAL STUDIO PLUG-IN TELERIK A PROGRESS COMPANY TEST STUDIO QUICK-START GUIDE CONTENTS Create your First Test.2 Standalone Web

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Configuring Ad hoc Reporting Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2012 Intellicus Technologies This document and its

More information

Guide to Importing Data

Guide to Importing Data Guide to Importing Data CONTENTS Data Import Introduction... 3 Who should use the Gold-Vision Import Client?... 3 Prepare your data... 3 Downloading and installing the import client... 7 Step One Getting

More information

Version 3.1 Content Administrator Guide

Version 3.1 Content Administrator Guide Version 3.1 Content Administrator Guide This document is a guide to assist Content Administrators as they upload, catalog, publish, and share videos using the Ensemble Video enterprise video publishing

More information

Website Administration Manual, Part One

Website Administration Manual, Part One Website Administration Manual, Part One A Guide to the CMS & Widgets Curry School of Education Website http://curry.virginia.edu The Curry Website Administrators Manual - Part One 2 The CMS The content

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Cascade V8.4 Website Content Management for the Site Manager UMSL

Cascade V8.4 Website Content Management for the Site Manager UMSL Cascade V8.4 Website Content Management for the Site Manager UMSL Contents Purpose & How to Use This Guide... 5 Getting Started and Logging In... 5 Login... 5 Dashboard... 5 Notifications... 5 Setting

More information

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1

DRAFT. Table of Contents About this manual... ix About CuteSITE Builder... ix. Getting Started... 1 DRAFT Table of Contents About this manual... ix About CuteSITE Builder... ix Getting Started... 1 Setting up... 1 System Requirements... 1 To install CuteSITE Builder... 1 To register CuteSITE Builder...

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

Connecture Platform Manager

Connecture Platform Manager Connecture Platform Manager 1 P a g e Table of Contents Connecture Platform Manager... 1 Introduction to the Connecture Platform Manager... 3 Getting Started... 3 Login... 3 Dashboard... 3 Connecture Application

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

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

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

ACA-1095 Reporting Help Pro-Ware, LLC

ACA-1095 Reporting Help Pro-Ware, LLC ACA-1095 Reporting Help Contents 3 Table of Contents Foreword 0 Part I Introduction 6 1 Overview 6 2 Welcome Screen 6 3 What's New 6 4 Home Screen 7 Toolbar... 7 File Manager... (Multi-Client Only) 8

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

In the fourth unit you will learn how to upload and add images and PDF files.

In the fourth unit you will learn how to upload and add images and PDF files. Introduction Here at SUNY New Paltz, we use the Terminal Four (T4) web content management system (CMS). This puts the power of editing content on our college s webpage in the hands of our authorized users.

More information

User's Guide c-treeace SQL Explorer

User's Guide c-treeace SQL Explorer User's Guide c-treeace SQL Explorer Contents 1. c-treeace SQL Explorer... 4 1.1 Database Operations... 5 Add Existing Database... 6 Change Database... 7 Create User... 7 New Database... 8 Refresh... 8

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

How to Edit Your Website

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

More information

CMS Training. Web Address for Training Common Tasks in the CMS Guide

CMS Training. Web Address for Training  Common Tasks in the CMS Guide CMS Training Web Address for Training http://mirror.frostburg.edu/training Common Tasks in the CMS Guide 1 Getting Help Quick Test Script Documentation that takes you quickly through a set of common tasks.

More information

integrated translation environment How to translate in memoqwebtrans

integrated translation environment How to translate in memoqwebtrans integrated translation environment How to translate in memoqwebtrans 2004-2013 Kilgray Translation Technologies. All rights reserved. Contents Contents... 2 1 Logging in to memoqwebtrans... 3 2. Translating

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

Windows version involved: Windows 7, Windows Server 2008 R2.

Windows version involved: Windows 7, Windows Server 2008 R2. Issue: DBF file missing issue encountered by Sage UBS 2015 user in client server environment with shared data folder access. [Certain files from shared folder (main PC) are not shown up on remote PC (client

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

SoftPro 360 User Guide

SoftPro 360 User Guide SoftPro 360 User Guide SoftPro 360 is included with your ProForm license. SoftPro 360 is a revolutionary product which enables requesting services and receiving orders from third party providers directly

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

FrontPage Help Center. Topic: FrontPage Basics

FrontPage Help Center. Topic: FrontPage Basics FrontPage Help Center Topic: FrontPage Basics by Karey Cummins http://www.rtbwizards.com http://www.myartsdesire.com 2004 Getting Started... FrontPage is a "What You See Is What You Get" editor or WYSIWYG

More information

DOCUMENTUM D2. User Guide

DOCUMENTUM D2. User Guide DOCUMENTUM D2 User Guide Contents 1. Groups... 6 2. Introduction to D2... 7 Access D2... 7 Recommended browsers... 7 Login... 7 First-time login... 7 Installing the Content Transfer Extension... 8 Logout...

More information

Faculty Web. Editors Guide. University Information Technology Services. Training, Outreach, Learning Technologies, & Video Production

Faculty Web. Editors Guide. University Information Technology Services. Training, Outreach, Learning Technologies, & Video Production Faculty Web Editors Guide University Information Technology Services Training, Outreach, Learning Technologies, & Video Production Copyright 2016 University Information Technology Services Kennesaw State

More information

CMS Shado 9. Quick Start Guide

CMS Shado 9. Quick Start Guide CMS Shado 9 Quick Start Guide 1 Logging In 3 Shado Central Interface 4 Sections, Pages and Containers 7 Sections 7 Pages 7 Containers 7 The Site Tree 8 Edit Content on a Page 9 Editing Container Content

More information

Other Templates. Overview. URL Shortener & Redirect Page

Other Templates. Overview. URL Shortener & Redirect Page Other Templates Overview In addition to the standard templates for new page and section creation, the implementation for an institution may include additional templates may be available, including a URL

More information

Policy Commander Console Guide - Published February, 2012

Policy Commander Console Guide - Published February, 2012 Policy Commander Console Guide - Published February, 2012 This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes

More information

Archiving Full Resolution Images

Archiving Full Resolution Images Archiving Full Resolution Images Archival or full resolution files are very large and are either uncompressed or minimally compressed. This tutorial explains how to use CONTENTdm and the Project Client

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.4 or later Client Configuration Cookbook Rev: 2013-10-01 Sitecore CMS 6.4 or later Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of

More information

Select Objects for Use

Select Objects for Use System In TNTgis you select geospatial data for viewing and analysis using the Select objects window (which may have varying names depending on the context). The upper part of the window has several tabbed

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

Colligo Engage Outlook App 7.1. Offline Mode - User Guide

Colligo Engage Outlook App 7.1. Offline Mode - User Guide Colligo Engage Outlook App 7.1 Offline Mode - User Guide Contents Colligo Engage Outlook App 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Engage Outlook App 3 Checking

More information

How to Use Serif WebPlus 10

How to Use Serif WebPlus 10 How to Use Serif WebPlus 10 Getting started 1. Open Serif WebPlus and select Start New Site from the Startup Screen 2. WebPlus will start a blank website for you. Take a few moments to familiarise yourself

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters PageMasters have the permissions necessary to perform the following tasks with Site Tools: ACADEMIC HEALTH CENTER 2 Application Requirements...3 Access FileNET...3 Log in to FileNET...3 Navigate the Site...3

More information

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2

Quick Start Guide. ARIS Architect. Version 9.8 Service Release 2 ARIS Architect Version 9.8 Service Release 2 October 2015 This document applies to ARIS Version 9.8 and to all subsequent releases. Specifications contained herein are subject to change and these changes

More information

S-Drive Lightning User Guide v2.1

S-Drive Lightning User Guide v2.1 S-Drive Lightning User Guide v2.1 Important Note This user guide contains detailed information about S-Drive for Salesforce Lightning usage. Refer to the S-Drive User Guide for more information about S-Drive

More information

2007, 2008 FileMaker, Inc. All rights reserved.

2007, 2008 FileMaker, Inc. All rights reserved. Bento User s Guide 2007, 2008 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo are either

More information

Beyond 20/20. Browser - English. Version 7.0, SP3

Beyond 20/20. Browser - English. Version 7.0, SP3 Beyond 20/20 Browser - English Version 7.0, SP3 Notice of Copyright Beyond 20/20 Desktop Browser Version 7.0, SP3 Copyright 1992-2006 Beyond 20/20 Inc. All rights reserved. This document forms part of

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

TRAINING GUIDE. GIS Admin for Web and Mobile Maps

TRAINING GUIDE. GIS Admin for Web and Mobile Maps TRAINING GUIDE GIS Admin for Web and Mobile Maps GIS Admin for Web and Mobile Maps In this session, we ll cover the tools necessary to properly configure Lucity to work with your GIS environment. We ll

More information

PlayerLync Forms User Guide (MachForm)

PlayerLync Forms User Guide (MachForm) PlayerLync Forms User Guide (MachForm) Table of Contents FORM MANAGER... 1 FORM BUILDER... 3 ENTRY MANAGER... 4 THEME EDITOR... 6 NOTIFICATIONS... 8 FORM CODE... 9 FORM MANAGER The form manager is where

More information

page 1 OU Campus User Guide

page 1 OU Campus User Guide page 1 OU Campus User Guide Logging Into OU Campus page page 2 1. Navigate to a page on your site that you wish to edit. 2. Scroll down to the footer and click the symbol. 3. Enter your OU Campus username

More information

<input type= hidden name= CISOROOT1 value=/imlsmohai >

<input type= hidden name= CISOROOT1 value=/imlsmohai > Modifying the Generic Web Site Templates We have provided a 5-page generic web site for your use in connecting to the CONTENTdm database if you do not have your own site established. The 5 pages include

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

Quick Start Guide. ARIS Architect. Version 9.7

Quick Start Guide. ARIS Architect. Version 9.7 ARIS Architect Version 9.7 October 2014 This document applies to ARIS Version 9.7 and to all subsequent releases. Specifications contained herein are subject to change and these changes will be reported

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Using WebFOCUS Designer Release 8.2 Version 03

Using WebFOCUS Designer Release 8.2 Version 03 Using WebFOCUS Designer Release 8.2 Version 03 April 19, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software, Parlay, PC/FOCUS,

More information

Page Gentics Software GmbH Enterprise Portals and Content Management Systems

Page Gentics Software GmbH Enterprise Portals and Content Management Systems 1. 2012 Gentics Software GmbH Page 2 Table of Contents 1. Table of Contents... 3 2. Foreword Infoportal and Support... 6 3. First steps... 6 3.1 Login and logout... 6 3.2 Password change... 7 3.3 User

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

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