Timeline of Zaragoza

The following is a timeline of the history of the city of Zaragoza, Spain.

Prior to 20th century

20th century

21st century

gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

See also

  • Zaragoza history
  • History of Zaragoza
  • List of mayors of Zaragoza
  • List of cities in Aragon

References

  1. Britannica 1910.
  2. Smithsonian Timelines of History. DK Publishing. 2011. ISBN 978-0-7566-8945-2.
  3. Knight 1867.
  4. F. J. Norton (1966). Printing in Spain 1501-1520. Cambridge University Press. ISBN 978-0-521-13118-6.
  5. "Alterations to the municipalities in the Population Censuses since 1842: Zaragoza". Instituto Nacional de Estadística (Spain). Retrieved 30 November 2014.
  6. "Spain: Directory". Europa World Year Book. Europa Publications. 2004. ISBN 1857432533.
  7. Francisco J. Romero Salvado (2012). Spain 1914-1918: Between War and Revolution. Routledge. ISBN 978-1-134-61449-3.
  8. José M. de Ureña, ed. (2012). Territorial Implications of High Speed Rail: A Spanish Perspective. Ashgate. ISBN 978-1-4094-5651-3.
  9. "Spanish mayors". City Mayors.com. London: City Mayors Foundation. Retrieved 30 November 2014.

This article incorporates information from the Spanish Wikipedia.

Bibliography

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.