Cleanup the new lib path
This commit is contained in:
parent
c24f75eae3
commit
61a3abe1fb
|
@ -15,7 +15,7 @@
|
|||
|
||||
tekFunks\gsc.lua
|
||||
tekKonfig\tekKonfig.xml
|
||||
libs\LibItemSearch-1.0\LibItemSearch-1.0.lua
|
||||
LibItemSearch-1.0.lua
|
||||
|
||||
KnownScanner.lua
|
||||
GnomishVendorShrinker.lua
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
<Ui xmlns="http://www.blizzard.com/wow/ui/">
|
||||
<Script file="libs\LibItemSearch-1.0\LibStub.lua"/>
|
||||
<Script file="libs\LibItemSearch-1.0\LibItemSearch-1.0.lua"/>
|
||||
</Ui>
|
|
@ -1,7 +0,0 @@
|
|||
## Interface: 40000
|
||||
## Title: LibItemSearch
|
||||
## Notes: An item search library
|
||||
## Author: Tuller
|
||||
## LoadOnDemand: 1
|
||||
LibStub.lua
|
||||
LibItemSearch-1.0.lua
|
|
@ -1,7 +0,0 @@
|
|||
## Interface: 40000
|
||||
## Title: LibItemSearch
|
||||
## Notes: An item search library
|
||||
## Author: Tuller
|
||||
## LoadOnDemand: 1
|
||||
LibStub.lua
|
||||
LibItemSearch-1.0.lua
|
|
@ -1,30 +0,0 @@
|
|||
-- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
|
||||
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
|
||||
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
|
||||
local LibStub = _G[LIBSTUB_MAJOR]
|
||||
|
||||
if not LibStub or LibStub.minor < LIBSTUB_MINOR then
|
||||
LibStub = LibStub or {libs = {}, minors = {} }
|
||||
_G[LIBSTUB_MAJOR] = LibStub
|
||||
LibStub.minor = LIBSTUB_MINOR
|
||||
|
||||
function LibStub:NewLibrary(major, minor)
|
||||
assert(type(major) == "string", "Bad argument #2 to `NewLibrary' (string expected)")
|
||||
minor = assert(tonumber(strmatch(minor, "%d+")), "Minor version must either be a number or contain a number.")
|
||||
|
||||
local oldminor = self.minors[major]
|
||||
if oldminor and oldminor >= minor then return nil end
|
||||
self.minors[major], self.libs[major] = minor, self.libs[major] or {}
|
||||
return self.libs[major], oldminor
|
||||
end
|
||||
|
||||
function LibStub:GetLibrary(major, silent)
|
||||
if not self.libs[major] and not silent then
|
||||
error(("Cannot find a library instance of %q."):format(tostring(major)), 2)
|
||||
end
|
||||
return self.libs[major], self.minors[major]
|
||||
end
|
||||
|
||||
function LibStub:IterateLibraries() return pairs(self.libs) end
|
||||
setmetatable(LibStub, { __call = LibStub.GetLibrary })
|
||||
end
|
|
@ -1,15 +0,0 @@
|
|||
LibItemSearch
|
||||
An item text search engine of some sort
|
||||
|
||||
Grammar:
|
||||
<search> := <intersect search>
|
||||
<intersect search> := <union search> & <union search> ; <union search>
|
||||
<union search> := <negatable search> | <negatable search> ; <negatable search>
|
||||
<negatable search> := !<primitive search> ; <primitive search>
|
||||
<primitive search> := <tooltip search> ; <quality search> ; <type search> ; <text search>
|
||||
<tooltip search> := bop ; boa ; bou ; boe ; quest
|
||||
<quality search> := q<op><text> ; q<op><digit>
|
||||
<ilvl search> := ilvl<op><number>
|
||||
<type search> := t:<text>
|
||||
<text search> := <text>
|
||||
<op> := : | = | == | != | ~= | < | > | <= | >=
|
Loading…
Reference in New Issue