<!-- #BeginTemplate.+? -->Leave the Replace With box blank (you want to replace the Begin Template tag with a blank).
<!-- #BeginEditable.+? -->
<!-- #EndEditable -->and then
<!-- #EndTemplate -->That's it - your files are now clean of template tags!
A drupal blog site I set up for a friend has an RSS link in the footer. Clicking it brought up a 404 page. I checked the Drupal.org forums, but the typical reason given for an RSS feed not working was that the atom feed module was conflicting with it, which isn't the case here. So I looked a little closer at the feed URL.
The site URL looks like:
http://mainsite.com/blog
The URL that clicking the RSS link brought up was:
http://mainsite.com/node/feed/
which is a directory up from where it should be.
Looking in the theme template (siteroot/blog/themes/chosenTheme/page.tpl.php), the link was coded as:
<a href="/node/feed/">RSS</a>
which means "relative to the site ROOT" not "relative to the current document".
Changing it to
<a href="node/feed/">RSS</a>
fixed the problem. The link now comes out
http://mainsite.com/blog/node/feed/
After upgrading to 10.4.7 I started noticing frequent slowdowns in Safari. The "Spinning Rainbow Cursor of Death" was becoming a constant occurence.
There are plenty of recommendations about how to fix this common issue.
with a copy from a Mac OS X system that does not have problems
(subscription required)
I've found that things improved after installing unlockupd, but am not certain the problem is gone yet.
Our SumTotal (Docent) 6.5 learning management system uses SCORM to launch learning activities and quizzes. We had a case where several Perception Quizzes would not launch using Safari, but any other browser did launch them.
On carefully examining the launch URL's we found that for some reason they had been HTML encoded in the database. In other words, the & symbol was translated to &. When it was converted back to a "&", the quizzes launched fine in Safari.
If you use HTML in your assessment questions, be careful when setting up your Enterprise Reporter reports. If you check "show question wording", HTML within the body of the question will not be escaped. This means the browser tries to render it, and this can corrupt the table layout of the report.
The workaround is to display only the question descriptions, which contain no HTML, and make sure they match the actual question as closely as possible.
Shown below is part of the settings screen for a survey report showing the correct settings to use when you have included HTML within a question, particularly table-generating HTML. Note that "question description" is checked, but not question wording.
The out-of the-box Likert Scale question created by Perception is really just a slightly modified multiple choice question. The choices are arranged vertically, as shown in the example screen shot below.
I prefer Likert Scale choices to be displayed horizontally as shown in the image below.
The horizontal format looks better, takes up less space and it makes it easier to answer all the questions quickly. Follow the steps shown to recreate the horizontal layout in your own quizzes.
# settings added to format or template file to create new horizontal likert scale question type [DOCUMENT] # ############################################################################# # settings added to create new horizontal likert scale question type START_mc_LK=<!--START_mc_LK--><td valign="top" class="likertInput"> END_mc_LK=</td><!--END_mc_LK--> START_QUESTION_mc_LK=<!--START_QUESTION_mc_LK--> END_QUESTION_mc_LK=</td><td> </td></tr><!--END_QUESTION_mc_LK--> #START_mc_LK=<!--START_mc_LK--><td valign="top" class="likertInput%CHOICE.NUMBER%"> #END_mc_LK=</td> #START_QUESTION_mc_LK=<!--START_QUESTION_mc--><tr><td class="LikertQuestion">= #END_QUESTION_mc_LK=</td><td> </td> # ################################## # map question type codes to text [QUESTION TYPE] MC_LK=Likert Scale Horizontal # ########################################### # define answer format [ANSWER] MC_LK=%START_QUESTION_mc_LK%%ANSWER.CONTENT% %END_QUESTION_mc_LK%%ANSWER.COMMENT% # ########################################### # define format of individual choices within a question # these will be repeated for all choices in a question [CHOICE] MC_LK= <!--MC_LK=--> %START_mc_LK% <INPUT TYPE=RADIO NAME="%QUESTION.ID%" VALUE="%CHOICE.ID%" %DO_MC% %CHOICE.CHECKED%> </td> <td class="LikertChoice"> %CHOICE.CONTENT% %END_mc_LK%
.likertTable {
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
margin-left:12px;
border-top:1px solid #0033CC;
}
.LikertHeaderRow {
color:#989898;
font:bold 6px "Arial Black" "Helvetica Black" "Franklin Gothic Heavy";
height:42px;
}
.LikertHeading {
font-weight: bold;
text-align:center;
}
.LikertChoice {
visibility:hidden;
display:none;
width:1px;
}
.LikertSeparator {
background:#CCD1DB;
height:1px;
line-height:1px;
font-size:1px;
}
.LikertSubhead {
border-top:1px solid #cecfd4;
background-color:#f1f2ec;
}
.LikertQuestion{
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
}
.LikertInput1 {
background-color:f1f1e8;
}
.LikertInput2 {
background-color:ecece0;
}
.LikertInput3 {
background-color:e9e7d9;
}
.LikertInput4 {
background-color:e1e0cc;
}
.LikertInput5{
background-color:B1C4E2;
}
<QUESTION DESCRIPTION="00. Likert_Table beginning" TOPIC="Surveys\Likert Scale header and footer" ID="1222225382874045" TYPE="text/plain" >
<CONTENT TYPE="text/html" >
<![CDATA[<div >
<!--the following is necessary to get rid of some mysterious br tags that are being inserted, probably having to do with "tags" or "question header" values, but I was unable to find it. Simply moving the table up using relative positioning blocks the form fields above the table -->
<style>br{line-height:0px;}</style>
<table class="LikertTable" border="0" cellspacing="0" cellpadding="0" >
<tr class="LikertHeaderRow" valign="middle">
<td width="323" class="LikertHeading">
<div align="right"><img src="%SERVER.GRAPHICS%disagree.gif" width="127" height="26" alt="Strongly Disagree"></div></td>
<td width="12" class="LikertHeading"><img src="%SERVER.GRAPHICS%left_arrow.gif" width="21" height="26" alt="left arrow"></td>
<td width="12" class="LikertHeading LikertInput1" ><img src="%SERVER.GRAPHICS%_1.gif" width="22" height="26" alt="1"></td>
<td width="12" class="LikertHeading LikertInput2"><img src="%SERVER.GRAPHICS%_2.gif" width="21" height="26" alt="2"></td>
<td width="12" class="LikertHeading LikertInput3"><img src="%SERVER.GRAPHICS%_3.gif" width="20" height="26" alt="3"></td>
<td width="12" class="LikertHeading LikertInput4"><img src="%SERVER.GRAPHICS%_4.gif" width="22" height="26" alt="4"></td>
<td width="12" class="LikertHeading LikertInput5"><img src="%SERVER.GRAPHICS%_5.gif" width="24" height="26" alt="5"></td>
<td width="1" ><img src="%SERVER.GRAPHICS%right_arrow.gif" width="24" height="26" alt="right arrow"></td>
<td width="1" class="mcchoice"></td>
<td width="194" class="LikertHeading"><div align="left"><img src="%SERVER.GRAPHICS%agree.gif" width="107" height="26" alt="Strongly agree"></div></td>
</tr>]]></CONTENT>
</QUESTION>
<QUESTION STATUS="Normal" DESCRIPTION="01. The course content was presented clearly." TOPIC="Surveys\Instructor-led survey questions" ID="0641471410182539" TYPE="text/html" > <CONTENT TYPE="text/html" > <![CDATA[<tr class="LikertSeparator"><td colspan="14" > </td></tr> <tr> <td class="LikertQuestion" colspan=2>]]></CONTENT> <CONTENT TYPE="text/html" > <![CDATA[The course content was presented clearly. ]]></CONTENT> <CONTENT TYPE="text/html" > <![CDATA[</td>]]></CONTENT> <ANSWER QTYPE="MC_LK" SHUFFLE="N"> <CHOICE ID="1"> <CONTENT TYPE="text/plain">1</CONTENT> </CHOICE> <CHOICE ID="2"> <CONTENT TYPE="text/plain">2</CONTENT> </CHOICE> <CHOICE ID="3"> <CONTENT TYPE="text/plain">3</CONTENT> </CHOICE> <CHOICE ID="4"> <CONTENT TYPE="text/plain">4</CONTENT> </CHOICE> <CHOICE ID="5"> <CONTENT TYPE="text/plain">5</CONTENT> </CHOICE> </ANSWER> <OUTCOME ID="1" SCORE="1"> <CONDITION >"1"</CONDITION> <CONTENT TYPE="text/plain"></CONTENT> </OUTCOME> <OUTCOME ID="2" SCORE="2"> <CONDITION >"2"</CONDITION> <CONTENT TYPE="text/plain"></CONTENT> </OUTCOME> <OUTCOME ID="3" SCORE="3"> <CONDITION >"3"</CONDITION> <CONTENT TYPE="text/plain"></CONTENT> </OUTCOME> <OUTCOME ID="4" SCORE="4"> <CONDITION >"4"</CONDITION> <CONTENT TYPE="text/plain"></CONTENT> </OUTCOME> <OUTCOME ID="5" SCORE="5"> <CONDITION >"5"</CONDITION> <CONTENT TYPE="text/plain"></CONTENT> </OUTCOME> </QUESTION>
<QUESTION STATUS="Normal" DESCRIPTION="00.5.Instructor Evaluation" TOPIC="Surveys\Instructor-led survey questions" ID="7936541180429931" TYPE="text/plain" > <CONTENT TYPE="text/html" > <![CDATA[<tr class="LikertSeparator"><td colspan="14" > </td></tr><tr class="LikertSubhead"><td colspan=14 class="LikertSubhead"><B>Instructor Evaluation</B></td></tr>]]></CONTENT> </QUESTION>
<QUESTION DESCRIPTION="20.ending" TOPIC="Surveys\Likert Scale header and footer" ID="1504895870161078" TYPE="text/plain" > <CONTENT TYPE="text/html" > <![CDATA[<!--<td id="lastLikertCell"> </td>--> <tr class="LikertSeparator"><td colspan="14" ></td></tr> </tr></table> </div>]]></CONTENT> </QUESTION>
Target disk mode is a handy way to quickly transfer big files between a laptop and desktop Mac. You simply connect the 2 firewire ports, and restart the laptop while holding down the "T" key.
If the laptop disk does not appear on the desktop of the host Mac, there are a couple of things to check.
Apple recommends not having any other firewire devices connected to the host at the same time, but I've found that even if you forget, it still works.
However, the chief reason this has not worked for me is ill-fitting FireWire plugs that aren't plugged all the way in on the laptop. Another thing to try is unplugging and replugging the firewire cable: Mac OS X 10.2: FireWire Target Disk Mode Requires Hot Plugging for Some Computers
The new piano sounds available for the Nord Electro B3 clone keyboard only work with Nord operating system v. 3.0 or greater. So you may find that even if you haven't updated before, you will want to do so now.
The updater is pretty easy to use: simply download it from Update Nord Electro OS v3.00 (OS X) or
Update Nord Electro OS v3.00 (Windows)
You will need a midi interface, the Nord, and your computer. You may also need drivers for the midi interface, possibly even if you are using a Mac.
Connect the Nord midi Out and midi In to the midi interface, and the USB cable of the interface to your computer.
Nord's instructions for using the updater are at http://clavia.com/products/nordelectro/ne30.htm
The Nord Electro Tool allows you to load and rearrange piano samples on the keyboard. A small but tricky point is: this tool works THROUGH USB, NOT MIDI. You do NOT use the midi interface for this process. The Nord has a USB jack, which allows you to connect it directly to the computer. If you are using a PC, you will probably need the Nord USB drivers, available Here to enable the computer to recognize the Nord. If you are using a Mac, you won't need it. So, if you are trying to use a midi interface to load piano samples into your Nord, and are getting the error "Unable to detect Nord Electro. Check USB connections and try again," simply connect the Nord USB to the computer's USB, and it will probably work.