Next Generation Rpad

Dojo port incompatibilities

The Dojo port has introduced some incompatibilities at the *.Rpad level. Basically, here's what is different:

OLD:
<script type="text/javascript" src="editor/rpad_loader.js"></script>

NEW:
<script type="text/javascript" src="gui/Rpad.js"></script>

OLD:
<pre class="Rpad_input" rpad_type="R">
ls()
</pre>

NEW:
<pre dojoType="Rpad" rpadType="R">
ls()
</pre>

OLD:
<span class="wrapperForHidden" contenteditable="false">
    <pre class="Rpad_input" rpad_type="R" style="DISPLAY: none">
ls()
    </pre>
</span>

NEW:
<pre dojoType="Rpad" rpadType="R" rpadHideSource="true">
ls()
</pre>