152c9bf9e7
- Implemented loadDocument API, for loading and parsing the DOMs of HTML documents in the background - Added scraper code to SVN repository (now includes 12 scrapers, see Writeboard for details) To update to the latest versions of all scrapers, ensure you have an up-to-date version of sqlite3, then run: sqlite3 ~/Library/Application\ Support/Firefox/Profiles/profileName/scholar.sqlite < scrapers.sql
25 lines
839 B
XML
Executable file
25 lines
839 B
XML
Executable file
<?xml version="1.0"?>
|
|
|
|
|
|
<!-- Note: Contains Firefox-specific overlay -->
|
|
|
|
<overlay id="scholar-ingester-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script src="../include.js"/>
|
|
|
|
<script src="browser.js"/>
|
|
|
|
<script type="application/x-javascript">
|
|
Scholar.Ingester.Interface.init();
|
|
</script>
|
|
|
|
<statusbar id="status-bar">
|
|
<statusbarpanel id="schlar-status" insertafter="livemark-button">
|
|
<label id="scholar-status-label" collapsed="true" crop="end" style="width:0px" />
|
|
<image id="scholar-status-image" width="16" height="16" onclick="Scholar.Ingester.Interface.scrapeThisPage()" />
|
|
</statusbarpanel>
|
|
</statusbar>
|
|
<box style="visibility: collapse">
|
|
<browser id="scholar-hidden-browser" />
|
|
</box>
|
|
</overlay>
|