home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 September / APC0409D1.iso / f_looks / files / adblock-0.5-dev.xpi / chrome / adblock.jar / content / about / gettingstarted.xul < prev   
Encoding:
Extensible Markup Language  |  2004-06-26  |  4.0 KB  |  93 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <window class="dialog"
  4.     title="About Adblock"
  5.     orient="vertical"
  6.     autostretch="always"
  7.     onload="sizeToContent()"
  8.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9. <!-- Adopted from Jed's QuickNote extension-->
  10.  
  11. <!-- Needed for enableRevert(), fillList()., loadHelpPage() -->
  12. <script type="application/x-javascript" src="settings.js"/>
  13.  
  14. <groupbox align="center" orient="horizontal">
  15. <vbox>
  16.   <text value="Getting Started" style="font-weight: bold; font-size: large;"/>
  17.   
  18.   <separator class="thin"/>
  19.   <separator class="thin"/>
  20.   <separator class="thin"/>
  21.   
  22.   <text value="So.   You've installed Adblock.  Now what?"/>
  23.   <text value="START ADDING FILTERS- THAT'S WHAT. It's totally easy: "/>
  24.   
  25.   <separator class="thin"/>
  26.   <separator class="thin"/>
  27.     
  28.   <text value="When you see an ad, just right-click + choose Adblock. For plugins, an Adblock-tab " />
  29.   <text value="will appear below or atop the media; just click the "Adblock" text." />
  30.   <separator class="thin"/>
  31.   <separator class="thin"/>
  32.   <text value="[ Note: if if you encounter a plugin, but don't see the Adblock-tab, don't worry -- the plugin "/>
  33.   <text value="is just cropped. Adblock has this covered. Choose 'Overlay Flash' from the tools-menu, or "/>
  34.   <text value="type its shortcut. Now, you can directly click the overlay. }"/>
  35.   <separator class="thin"/>
  36.   <separator class="thin"/>
  37.   <separator class="thin"/>
  38.   <text value="Adblock supports two types of filters: simple, and Regular Expression."/>
  39.   <separator class="thin"/>
  40.   <separator class="thin"/>
  41.   <text value="A simple-filter is just a string of text with one or more wildcards (*). Regular expressions are "/>
  42.   <text value="much more complex, allowing precise control over filtering. In Adblock, as in all javascript, "/>
  43.   <text value="regular expressions must begin and end with the forward-slash: '/'. This page doesn't have "/>
  44.   <text value="enough space to include a RegExp tutorial, so for more info, head here:"/>
  45.   <separator class="thin"/>
  46.   <separator class="thin"/>
  47.    <text value="Guide to Regular Expressions"
  48.         class="url"
  49.         style="font-decoration: underline; cursor: pointer !important; font-weight:bold; color:blue;"
  50.         onclick="loadHelpPage('regexp'); window.close();"/>
  51.   
  52.   <separator class="thin"/>
  53.   <separator class="thin"/>
  54.   
  55.   <text value="Clicking the Adblock status-text on the bottom of your browser opens the ultimate weapon " />
  56.   <text value="in Adblock's arsenal: 'List Adblock-able'.  This window shows all blockable elements in the " />
  57.   <text value="page. When you select an element in the list, its source is shown in the entry-box and the "/>
  58.   <text value="corresponding element blinks in the page. From the source, you can create a filter -- to block "/>
  59.   <text value="this and future elements like it. "/>
  60.   <separator class="thin"/>
  61.   <separator class="thin"/>  
  62.   <separator class="thin"/>
  63.   <separator class="thin"/>
  64.   <separator class="thin"/>
  65.   
  66.   <text value="Where to go from here?" style="font-weight:bold;"/>
  67.   
  68.   <separator class="thin"/>
  69.   
  70.   <text value="For more information about Adblock, head to " />
  71.    <text value="Adblock's homepage."
  72.         class="url"
  73.         style="font-decoration: underline; cursor: pointer !important; font-weight:bold; color:blue;"
  74.         onclick="loadHelpPage('about'); window.close();"/>
  75.         
  76.   <separator class="thin"/>
  77.   <separator class="thin"/>
  78.   <separator class="thin"/>
  79.   
  80.   <text value="For more information about building regular expressions, go here: " />
  81.   <text value="JavaScript Core Guide: Regular Expressions."
  82.         class="url"
  83.         style="font-decoration: underline; cursor: pointer !important; font-weight:bold; color:blue;"
  84.         onclick="loadHelpPage('regexp'); window.close();"/>
  85.         
  86.   <separator class="thin"/>
  87.   <separator class="thin"/>
  88.  
  89. </vbox>
  90. </groupbox>
  91.  
  92. </window>
  93.