Volatile:ListMolByReference: Difference between revisions

No edit summary
mNo edit summary
Line 12: Line 12:
     else table.insert(S[sp], ref) end
     else table.insert(S[sp], ref) end
   end
   end
   print("Showing below ".. getn(idS) .. " structures.")
   print("Showing below ".. table.getn(idS) .. " structures.")
   for k,v in pairs(idS) do
   for k,v in pairs(idS) do
     print("* [[Image:" ..k.. ".png]] ")
     print("* [[Image:" ..k.. ".png]] ")

Revision as of 05:06, 10 March 2013

Searching IDs with {{{1}}} in the reference namespace.


{{#lua:

 idS = {}
 for ref, sp, id in stdin:gmatch("|?|?([^|]+)||([%w\., ]+)||([^\n]+)") do
   local S = idS[id]
   if (S == nil) then idS[id]={} S = idS[id] end
   if (S[sp] == nil) then S[sp] = {ref}
   else table.insert(S[sp], ref) end
 end
 print("Showing below ".. table.getn(idS) .. " structures.")
 for k,v in pairs(idS) do
   print("* File:" ..k.. ".png ")
   for i,w in pairs(v) do
     print(i)
     for j,x in ipairs(w) do
       print("(ref)")
     end
   end
 end

| {{{1}}} }}