...
Several reference librarians have started creating Course Guides in their personal Confluence spaces (see /wiki/spaces/library/pages/28054236 for more information). It is strongly suggested that you include links to these Course Guides in the appropriate Subject Guide.
Editing contact information & adding Course Guides links
- open the contactinfo.txt file
- edit name, email and phone number
- edit feedback information by changing the value of the subject (if necessary)
Code Block html html <input type='hidden' name='subject' value='New Subject' />
- add or edit Course Guides links
- if you want to include links to course guides, make sure the following code is included immediately after the feedback form:
Code Block html html <hr/> <strong>Course Guides</strong> <ul style='margin-top:5px; margin-bottom:0; margin-left:10px; padding-left:10px;'> <li><a href='URL OF COURSE GUIDE'>NAME OF COURSE GUIDE</a></li> </ul>
- add more list items to include more course guides
- if you want to include links to course guides, make sure the following code is included immediately after the feedback form:
Add/Delete/Edit a menu with ID numbers:
Add a new menu:
- Make sure 'PHP' is selected from the row at the bottom of the screen.
- In the left column, select Add Menued Resource.
- Databases/Web Resources and their corresponding ID's can be found here: http://aok.lib.umbc.edu/reference/DBIDs.php
- Go to the webpage above and find the database and its corresponding ID.
- Enter list of DBIDs.
- Enter Menu Header (heading to display before list of resources).
- Enter Description (optional).
...
Code Block | ||||
---|---|---|---|---|
| ||||
$menu = new menu; $menu->define("7 40 257 301 307 309 1121"); $menu->show("Article Databases","Use the following databases to find scholarly articles for biological sciences topics"); |
Add/Edit/Delete a shortcite/longcite list:
Add:
- Make sure 'PHP' is selected from the row at the bottom of the screen.
- Then, in the left column, select 'Add Print/ebook (short)'
- Alternatively, if you want a longcite with more information, select the option just above 'Add Print/ebook (long)'
- Enter as much information as you wish to provide in the pop-up window, the select OK. You do not have to fill in all of the information.
...
Code Block | ||||
---|---|---|---|---|
| ||||
startList("Handbooks",""); shortcite("REF RA1215.C73 1995","","CRC handbook of toxicology","1995","",""); shortcite("REF QH447 S23 2003","","Handbook of comparative genomics : principles and methodology","2003","",""); shortcite("REF QH583.2 C45 2006","","Cell biology: a laboratory handbook. 3rd ed.","2006","",""); endList(); |
Add/Edit/Delete a linked resource:
Add:
- Make sure 'PHP' is selected from the row at the bottom of the screen.
- In the left column, select 'Add a Web Resource'
- Enter as much information as you wish to provide in the pop-up window, the select OK. You do not have to fill in all of the information.
...
Code Block | ||||
---|---|---|---|---|
| ||||
startList("Background Information","Start your research by reviewing general background infomation on broad topics of interest in the biological sciences"); makeLink("http://www.actionbioscience.org/","Action Bioscience","Articles by scientists, science educators, and science students on issues related to seven bioscience challenges: environment, biodiversity, genomics, biotechnology, evolution, new frontiers in science, and bioscience education."); makeLink("http://vlib.org/Biosciences","WWW Virtual Library: Biosciences","Extensive list of on-line bioscience resources arranged by specific subject area."); endList(); |
Adding a new tab:
So, you're subject guide doesn't have enough tabs?
...
- To add a "passive tag" that appears in blacks with yellow text (like Websites in the picture above), add a new list item similar to the code above for Websites.
- If you are adding the new tab to the new page and need it to appear as the "active tab" (in yellow with black text like Article Databases) add a line of code similar to the code for Article Databases.
- If you were to copy and paste the list from another page within the same subject guide, you would need to change the list item with the <span> tag to a "passive tab". To do this, remove the 'span' element and replace it with a 'a href' element. The span element is what allows the tab to be displayed as yellow with black text.
Creating a new subject guide
- in the subjectguides directory, create a new folder for your subject guide (name the folder with the academic subject area abbreviation)
- copy the contents from an existing guide and paste into the new folder
- edit the content of the pages - if you change the name of a tab be sure that you make the same change on all pages.
- delete any pages that you don't need - if you delete a page make sure to delete the corresponding tab from all other pages.