Skip to content

Instantly share code, notes, and snippets.

@snaka
snaka / README.txt
Created August 24, 2009 04:05 — forked from mattn/README.txt
http://
RSS 用 pubsubhubbub publish ブックマークレット *オレ仕様*
liberator.plugins.sqliteReorg = (function(){
const ss = Cc["@mozilla.org/storage/service;1"].getService(Ci.mozIStorageService);
function getSQLiteFiles(){
let profDir = services.get("directory").get("ProfD", Ci.nsIFile);
let files = profDir.directoryEntries;
let reg = new RegExp("\\.sqlite$");
while (files.hasMoreElements()){
let file = files.getNext().QueryInterface(Ci.nsIFile);
if (file.isFile() && reg.test(file.leafName)){
yield file;