vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Ui xmlns="http://www.blizzard.com/wow/ui/"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
4 <!--
5 Enchantrix v3.4.1 (Platypus)
6 $Id: Enchantrix.xml 632 2005-12-18 14:36:34Z norganna $
7  
8 License:
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License
11 as published by the Free Software Foundation; either version 2
12 of the License, or (at your option) any later version.
13  
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18  
19 You should have received a copy of the GNU General Public License
20 along with this program(see GLP.txt); if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 -->
23 <Script file="Babylonian.lua"/>
24 <Script file="EnxStrings.lua"/>
25 <Script file="EnxLocale.lua"/>
26  
27 <Script file="DisenchantList.lua"/>
28 <Script file="EnxUtil.lua"/>
29 <Script file="EnxCommand.lua"/>
30 <Script file="Enchantrix.lua"/>
31 <Frame name="Enchantrix" parent="UIParent" hidden="true">
32 <Scripts>
33 <OnLoad>
34 Enchantrix_OnLoad();
35 this:RegisterEvent("ADDON_LOADED")
36 </OnLoad>
37 <OnEvent>
38 if (event == "ADDON_LOADED" and string.lower(arg1) == "enchantrix") then
39 Enchantrix_AddonLoaded()
40 this:UnregisterEvent("ADDON_LOADED")
41 end
42 </OnEvent>
43 </Scripts>
44 </Frame>
45 <Frame name="EnchantrixScheduler" parent="UIParent" hidden="false">
46 <Scripts>
47 <OnUpdate>
48 Enchantrix_OnUpdate(arg1);
49 </OnUpdate>
50 </Scripts>
51 </Frame>
52 </Ui>
53