Reworking of the resource system.

Resource indices (.ls2) now refer to string identifiers which are mapped 
to files by a global resource map (uqm.rmp).

This meets Milestone 3 of the Resource System Phase 2 plan.



git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2868 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2007-11-28 08:09:57 +00:00
parent 73f89d6bfc
commit 25b4267902
59 changed files with 1951 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ def process (res):
if mapline is None:
toadd = "# NO MATCH FOR %s" % line
else:
toadd = "%s: %s" % (mapline, line)
toadd = "%s = %s" % (mapline, line)
if toadd not in result:
result.append(toadd)
result.sort()