aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/viewer_manifest.py
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:59 -0500
committerJacek Antonelli2008-08-15 23:45:59 -0500
commit6e91a9cc3d5a610198cf526a76e2ab642f10ecd7 (patch)
treeb023869f9daa7f61ea3ab27112d37524bdd88de4 /linden/indra/newview/viewer_manifest.py
parentSecond Life viewer sources 1.20.12 (diff)
downloadmeta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.zip
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.gz
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.bz2
meta-impy-6e91a9cc3d5a610198cf526a76e2ab642f10ecd7.tar.xz
Second Life viewer sources 1.20.13
Diffstat (limited to '')
-rwxr-xr-xlinden/indra/newview/viewer_manifest.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py
index 1286c68..27c12dd 100755
--- a/linden/indra/newview/viewer_manifest.py
+++ b/linden/indra/newview/viewer_manifest.py
@@ -73,22 +73,27 @@ class ViewerManifest(LLManifest):
73 self.path("*.txt") 73 self.path("*.txt")
74 self.end_prefix("fonts") 74 self.end_prefix("fonts")
75 75
76 # XUI 76 # skins
77 if self.prefix(src="skins"): 77 if self.prefix(src="skins"):
78 # include the entire textures directory recursively
79 self.path("textures")
80 self.path("paths.xml") 78 self.path("paths.xml")
81 self.path("xui/*/*.xml") 79 # include the entire textures directory recursively
82 self.path('words.*.txt') 80 if self.prefix(src="*/textures"):
83 81 self.path("*.tga")
82 self.path("*.j2c")
83 self.path("*.jpg")
84 self.path("*.png")
85 self.path("textures.xml")
86 self.end_prefix("*/textures")
87 self.path("*/xui/*/*.xml")
88 self.path("*/*.xml")
89
84 # Local HTML files (e.g. loading screen) 90 # Local HTML files (e.g. loading screen)
85 if self.prefix(src="html"): 91 if self.prefix(src="*/html"):
86 self.path("*.png") 92 self.path("*.png")
87 self.path("*/*/*.html") 93 self.path("*/*/*.html")
88 self.path("*/*/*.gif") 94 self.path("*/*/*.gif")
89 self.end_prefix("html") 95 self.end_prefix("*/html")
90 self.end_prefix("skins") 96 self.end_prefix("skins")
91
92 self.path("releasenotes.txt") 97 self.path("releasenotes.txt")
93 self.path("lsl_guide.html") 98 self.path("lsl_guide.html")
94 self.path("gpu_table.txt") 99 self.path("gpu_table.txt")