mirror of
https://github.com/fadden/6502bench.git
synced 2025-08-15 14:27:39 +00:00
Minor fixes
HTML output should have had double quotes around internal anchors. (Chrome and Edge didn't complain, but the w3c validator wasn't happy.) Made the text areas in the load-time problem report dialogs scrollable. Updated the manual.
This commit is contained in:
@@ -699,7 +699,7 @@ namespace SourceGen {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
string linkified = "<a href=#" + LABEL_LINK_PREFIX + sym.Label + ">" +
|
string linkified = "<a href=\"#" + LABEL_LINK_PREFIX + sym.Label + "\">" +
|
||||||
sym.Label + "</a>";
|
sym.Label + "</a>";
|
||||||
return TextUtil.EscapeHTML(operand).Replace(sym.Label, linkified);
|
return TextUtil.EscapeHTML(operand).Replace(sym.Label, linkified);
|
||||||
}
|
}
|
||||||
@@ -720,7 +720,7 @@ namespace SourceGen {
|
|||||||
sb.Append("<table>\r\n");
|
sb.Append("<table>\r\n");
|
||||||
}
|
}
|
||||||
sb.Append(" <tr>");
|
sb.Append(" <tr>");
|
||||||
sb.Append("<td><a href=#" + LABEL_LINK_PREFIX + sym.Label + ">" +
|
sb.Append("<td><a href=\"#" + LABEL_LINK_PREFIX + sym.Label + "\">" +
|
||||||
sym.Label + "</a></td>");
|
sym.Label + "</a></td>");
|
||||||
sb.Append("<td><code>" + mFormatter.FormatHexValue(sym.Value, 2) + "</code></td>");
|
sb.Append("<td><code>" + mFormatter.FormatHexValue(sym.Value, 2) + "</code></td>");
|
||||||
sb.Append("</tr>\r\n");
|
sb.Append("</tr>\r\n");
|
||||||
|
@@ -109,9 +109,12 @@ executable.</p>
|
|||||||
with all configuration files and libraries
|
with all configuration files and libraries
|
||||||
<li>Merlin 32: <code>Merlin32.exe</code>
|
<li>Merlin 32: <code>Merlin32.exe</code>
|
||||||
</ul>
|
</ul>
|
||||||
<p>The "column widths" section allows you to specify the width of the
|
<p>The "column widths" section allows you to specify the minimum
|
||||||
label, opcode, operand, and comment fields. If the width is less than 1,
|
width of the label, opcode, operand, and comment fields. If the width
|
||||||
or isn't a valid number, 1 will be used.</p>
|
is less than 1, or isn't a valid number, 1 will be used. These are
|
||||||
|
not hard stops: if the contents of a field are too wide, the contents
|
||||||
|
of the next column will be pushed over. (The comment field width is
|
||||||
|
not currently being used, but may be used to fold lines in the future.)</p>
|
||||||
|
|
||||||
<p>When "show cycle counts" is checked, every instruction line will have
|
<p>When "show cycle counts" is checked, every instruction line will have
|
||||||
an end-of-line comment that indicates the number of cycles required for
|
an end-of-line comment that indicates the number of cycles required for
|
||||||
|
@@ -29,7 +29,8 @@ limitations under the License.
|
|||||||
<TextBox Margin="0,8,0,0" IsReadOnly="True"
|
<TextBox Margin="0,8,0,0" IsReadOnly="True"
|
||||||
Width="540" MaxLines="1" Text="{Binding PathName}"/>
|
Width="540" MaxLines="1" Text="{Binding PathName}"/>
|
||||||
<TextBlock Margin="0,8,0,0" Text="There was a problem:"/>
|
<TextBlock Margin="0,8,0,0" Text="There was a problem:"/>
|
||||||
<TextBox Margin="0,8,0,0" IsReadOnly="True" Text="{Binding Message}"/>
|
<TextBox Margin="0,8,0,0" IsReadOnly="True" Text="{Binding Message}"
|
||||||
|
ScrollViewer.CanContentScroll="True"/>
|
||||||
<DockPanel Margin="0,8,0,0" LastChildFill="False">
|
<DockPanel Margin="0,8,0,0" LastChildFill="False">
|
||||||
<TextBlock DockPanel.Dock="Left" Text="Do you want to locate the data file?"/>
|
<TextBlock DockPanel.Dock="Left" Text="Do you want to locate the data file?"/>
|
||||||
<Button DockPanel.Dock="Right" Content="Cancel" Width="70" Margin="8,0,0,0" IsCancel="True"/>
|
<Button DockPanel.Dock="Right" Content="Cancel" Width="70" Margin="8,0,0,0" IsCancel="True"/>
|
||||||
|
@@ -28,7 +28,8 @@ limitations under the License.
|
|||||||
<DockPanel LastChildFill="False" Margin="8">
|
<DockPanel LastChildFill="False" Margin="8">
|
||||||
<TextBlock DockPanel.Dock="Top">Problems were detected while loading the project file:</TextBlock>
|
<TextBlock DockPanel.Dock="Top">Problems were detected while loading the project file:</TextBlock>
|
||||||
<TextBox Name="messageTextBox" DockPanel.Dock="Top" Margin="0,8,0,0"
|
<TextBox Name="messageTextBox" DockPanel.Dock="Top" Margin="0,8,0,0"
|
||||||
Width="540" Height="110" IsReadOnly="True" TextWrapping="Wrap" Text=""/>
|
Width="540" Height="110" IsReadOnly="True" TextWrapping="Wrap" Text=""
|
||||||
|
VerticalScrollBarVisibility="Auto"/>
|
||||||
<TextBlock Name="invalidDiscardLabel" DockPanel.Dock="Top" Margin="0,8,0,0" Foreground="Red">
|
<TextBlock Name="invalidDiscardLabel" DockPanel.Dock="Top" Margin="0,8,0,0" Foreground="Red">
|
||||||
Invalid data items will be discarded when you save the project.
|
Invalid data items will be discarded when you save the project.
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
|
Reference in New Issue
Block a user