]> git.decadent.org.uk Git - maypole.git/blobdiff - doc/BuySpy.pod
There goes 1.4.
[maypole.git] / doc / BuySpy.pod
index ead5e202297bab721323fbf917911be89a03a4ad..ef3d872daf096e7c041a1a5ff38b6ba6d4571bca 100644 (file)
@@ -230,16 +230,23 @@ since we don't have the concept of a logged-in user and so we don't
 distinguish between the tabs that anyone can see and those than only an
 admin can see, but we'll come back to it later. Still, 104 lines, eh?
 
-The actual tab list is presented here:
+The actual tab list is presented here: (reformated slightly for sanity)
 
     <tr>
         <td>
-            <asp:datalist id="tabs" cssclass="OtherTabsBg" repeatdirection="horizontal" ItemStyle-Height="25" SelectedItemStyle-CssClass="TabBg" ItemStyle-BorderWidth="1" EnableViewState="false" runat="server">
+            <asp:datalist id="tabs" cssclass="OtherTabsBg" 
+ repeatdirection="horizontal" ItemStyle-Height="25" 
+ SelectedItemStyle-CssClass="TabBg" ItemStyle-BorderWidth="1" 
+ EnableViewState="false" runat="server">
                 <ItemTemplate>
-                    &nbsp;<a href='<%= Request.ApplicationPath %>/DesktopDefault.aspx?tabindex=<%# Container.ItemIndex %>&tabid=<%# ((TabStripDetails) Container.DataItem).TabId %>' class="OtherTabs"><%# ((TabStripDetails) Container.DataItem).TabName %></a>&nbsp;
+                    &nbsp;<a href='<%= Request.ApplicationPath %>/
+ DesktopDefault.aspx?tabindex=<%# Container.ItemIndex %>&tabid=
+ <%# ((TabStripDetails) Container.DataItem).TabId %>' class="OtherTabs">
+ <%# ((TabStripDetails) Container.DataItem).TabName %></a>&nbsp;
                 </ItemTemplate>
                 <SelectedItemTemplate>
-                    &nbsp;<span class="SelectedTab"><%# ((TabStripDetails) Container.DataItem).TabName %></span>&nbsp;
+                    &nbsp;<span class="SelectedTab">
+ <%# ((TabStripDetails) Container.DataItem).TabName %></span>&nbsp;
                 </SelectedItemTemplate>
             </asp:datalist>
         </td>
@@ -262,7 +269,8 @@ list directly, displaying the currently selected tab differently:
                 &nbsp;<span class="SelectedTab">[%tab.name%]</span>&nbsp;
         [% ELSE %]
             <td height="25">
-                &nbsp;<a href='[%base%]DesktopDefault.aspx?tabid=[%a_tab.id%]' class="OtherTabs">[%a_tab.name%]</a>&nbsp;
+                &nbsp;<a href='[%base%]DesktopDefault.aspx?tabid=[%a_tab.id%]' 
+                class="OtherTabs">[%a_tab.name%]</a>&nbsp;
         [% END %]
             </td>
     [% END %]