######################################################################### # Retrospectiva general configuration ######################################################################### # Override rails' default AUTO_LINK_RE to fix a bug AUTO_LINK_RE = %r{ ( # leading text <\w+.*?>| # leading HTML tag, or [^=!:'"/]| # leading punctuation, or ^ # beginning of line ) ( (?:https?://)| # protocol spec, or (?:www\.) # www.* ) ( [-\w]+ # subdomain or domain (?:\.[-\w]+)* # remaining subdomains or domain (?::\d+)? # port (?:/(?:(?:[~\w\+@%-]|(?:[,.;:][^\s<$]))+)?)* # path (?:\?[\w\+@%&=.;-]+)? # query string (?:\#[\w\-]*)? # trailing anchor ) ([[:punct:]]|\s|<|$) # trailing text }x # Where do we store our attachments? ATTACHMENTS_DIR = 'attachments' # Where do we store our extensions? EXTENSIONS_DIR = 'extensions' # Default route for a project in a mult-project installation PROJECT_ROUTE = 'projects/:project_name/' # This secret key is used to encrypt session information when cookie session # store is used (not recommended). If you decide (for whatever reason) to switch # from Retrospectiva's default AR store to the cookie store, please generate a # strong secret key (by executing `rake secret`) and set the key here. COOKIE_STORE_SESSION_SECRET = ''