type icon (/br/icons/lua.png) Configurations

Este código Lua está correto quanto à linguagem.
1 -----------------------------------------------------------------------------
2 ----------- THINGS YOU SHOULD PROBABLY CHANGE -------------------------------
3 -----------------------------------------------------------------------------
4
5 SITE_TITLE     = "CPC Gargarullo"     -- change the title of the site
6 DOMAIN         = "www.gargarullo.com" -- set for RSS feeds to work properly
7 NICE_URL       = "/br/"               -- set if you want "nicer" URLs
8 MAIN_COLOR     = 200                  -- pick a number from 0 to 360
9 --BODY_BG_COLOR  = "white"
10
11 HOME_PAGE      = "index"
12 HOME_PAGE_URL  = NICE_URL             -- BASE_URL or NICE_URL.."?p="..HOME_PAGE or ...
13 COOKIE_NAME    = "CPCGargarullo"      -- change if you run several
14 SEARCH_PAGE    = "search"             -- comment out remove the search box
15
16 --SEARCH_CONTENT = "Installation"
17
18 TIME_ZONE      = "-0300"
19 TIME_ZONE_NAME = "<abbr title='Brazil Standard Time'>BRA</abbr>"
20
21 LOGO_URL       = "/img/logo.png"
22 FAVICON_URL    = "/img/favicon-cabeca.png" -- NICE_URL.."icons/sputnik.png"
23
24 -----------------------------------------------------------------------------
25 --------- other things you might want to change -----------------------------
26 -----------------------------------------------------------------------------
27
28 --- Configure the acceptable mime types for file uploads
29
30 MIME_TYPES = {
31    ["image/png"] = "png",
32    ["image/jpeg"] = "jpg",
33    ["image/gif"] = "gif",
34    ["application/pdf"] = "pdf",
35    ["text/plain"] = "txt",
36 }
37
38 --- changes the language of the wiki interface
39 INTERFACE_LANGUAGE = "pt_BR"
40
41
42 --- set the number of honey pots to entertain the spammers
43 NUM_HONEYPOTS_IN_FORMS = 5
44
45 -----------------------------------------------------------------------------
46 ----------- NOW WAIT A SECOND -----------------------------------------------
47 -----------------------------------------------------------------------------
48 --- PLEASE READ THE DOCUMENTATION BEFORE EDITING ANY OF THE PARAMETERS BELOW 
49 --- CHANGING THEM CAN MAKE THE SITE UNACCESSIBLE ----------------------------
50 -----------------------------------------------------------------------------
51
52 STYLESHEETS = { 
53   --NICE_URL.."sputnik/css/yui_reset.css",
54   NICE_URL.."sputnik/css/layout.css",
55   --NICE_URL.."sputnik/css/colors.css",
56 }
57 DEFAULT_NAVIGATION_BAR    = "sputnik/navigation"
58 HISTORY_PAGE              = "history"
59 -- the versions of those rocks will be displayed under "sputnik/version"
60 ROCK_LIST_FOR_VERSION     = { "sputnik", "versium", "saci",
61                               "colors", "diff", "xssfilter", "recaptcha",
62                               "cosmo", "wsapi", "markdown" }
63