From: <gem...@li...> - 2011-11-03 10:59:45
|
Revision: 167 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=167&view=rev Author: matijsdejong Date: 2011-11-03 10:59:34 +0000 (Thu, 03 Nov 2011) Log Message: ----------- Update project.ini for required salt setting Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-03 10:55:39 UTC (rev 166) +++ trunk/new_project/application/configs/project.ini 2011-11-03 10:59:34 UTC (rev 167) @@ -2,6 +2,16 @@ name = "New" description = "New" +;--------------------------------------------------- +; Hash encryption salt. REQUIRED! +; +; Use e.g. http://www.random.org/strings/ to create. +; +; Put %s somewhere within the salt to mix the value +; in the salt. +;--------------------------------------------------- +salt = + css.gems = gems/css/gems-fixed.css css.print.url = gems/css/gems_print.css css.print.media = print This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-21 09:54:43
|
Revision: 246 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=246&view=rev Author: michieltcs Date: 2011-11-21 09:54:34 +0000 (Mon, 21 Nov 2011) Log Message: ----------- Refs #453 - add idleTimeout parameter Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-21 09:53:10 UTC (rev 245) +++ trunk/new_project/application/configs/project.ini 2011-11-21 09:54:34 UTC (rev 246) @@ -40,6 +40,19 @@ account.delayFactor = 4 ;------------------------------------------------------- +; SESSION SECTION +; +; idleTimeout +; +; Lifetime of the session (determines the expiration of +; the session namespace(s)). +; If not set, defaults to 1800 seconds = 30 minutes. +; +;------------------------------------------------------- + +session.idleTimeout = 1800 + +;------------------------------------------------------- ; ASK DELAY SECTION ; ; askDelay This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-21 11:30:42
|
Revision: 252 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=252&view=rev Author: michieltcs Date: 2011-11-21 11:30:36 +0000 (Mon, 21 Nov 2011) Log Message: ----------- Add askThrottle section Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-21 11:22:10 UTC (rev 251) +++ trunk/new_project/application/configs/project.ini 2011-11-21 11:30:36 UTC (rev 252) @@ -53,6 +53,33 @@ session.idleTimeout = 1800 ;------------------------------------------------------- +; ASK THROTTLE SECTION +; +; Sets values that control the throttling (slowdowns to +; combat brute-force attacks) of the ask / token +; controller. +; +; askThrottle.period +; +; Look for failed token attempts in from now to +; X seconds ago. +; +; askThrottle.threshold +; +; If the number of failed token attempts exceeds this +; number, starting throttling. +; +; askThrottle.delay +; +; Throttle by delaying each request by X seconds. +; +;------------------------------------------------------- + +askThrottle.period = 900 +askThrottle.threshold = 300 +askThrottle.delay = 10 + +;------------------------------------------------------- ; ASK DELAY SECTION ; ; askDelay This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-22 14:29:14
|
Revision: 262 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=262&view=rev Author: matijsdejong Date: 2011-11-22 14:29:03 +0000 (Tue, 22 Nov 2011) Log Message: ----------- Added password section documentation and settings Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-22 13:32:52 UTC (rev 261) +++ trunk/new_project/application/configs/project.ini 2011-11-22 14:29:03 UTC (rev 262) @@ -10,7 +10,7 @@ ; Put %s somewhere within the salt to mix the value ; in the salt. ;--------------------------------------------------- -salt = +salt = css.gems = gems/css/gems-fixed.css css.print.url = gems/css/gems_print.css @@ -56,7 +56,7 @@ ; ASK THROTTLE SECTION ; ; Sets values that control the throttling (slowdowns to -; combat brute-force attacks) of the ask / token +; combat brute-force attacks) of the ask / token ; controller. ; ; askThrottle.period @@ -193,11 +193,34 @@ locales.en = "en" locales.nl = "nl" -;-------------------- +;---------------------------------------------------------------------- ; PASSWORDS SECTION -;-------------------- +; +; The last key must be a function name in your PasswordChecker class. +; That function must accept as parameters the array value and the +; password. +; +; In between keys can contain case insensitive organization codes, user +; roles and user definition names in any order and can overrule previous +; defined values. +; BEWARE keep keys in fixed array order: +; passwords.staff.mgz.capsCount = 1 +; passwords.mgz.staff.lowerCount = 1 +; passwords.staff.mgz.lowerCount = 2 +; will be processed as: +; passwords.staff.mgz.capsCount = 1 +; passwords.staff.mgz.lowerCount = 2 +; passwords.mgz.staff.lowerCount = 1 +;---------------------------------------------------------------------- -passwords.MinimumLength = 5 +passwords.notTheName = 1 +passwords.guest.minLength = 6 +passwords.staff.capsCount = 1 +passwords.staff.lowerCount = 1 +passwords.staff.minLength = 8 +passwords.staff.numCount = 0 +passwords.staff.notAlphaCount = 1 +passwords.staff.notAlphaNumCount = 0 ;------------------------------------------------------- ; TOKEN SECTION @@ -234,3 +257,10 @@ admin.pwd = superadmin email.bounce = 1 + +passwords.staff.capsCount = 0 +passwords.staff.lowerCount = 0 +passwords.staff.minLength = 6 +passwords.staff.numCount = 0 +passwords.staff.notAlphaCount = 0 +passwords.staff.notAlphaNumCount = 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-22 14:31:43
|
Revision: 264 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=264&view=rev Author: matijsdejong Date: 2011-11-22 14:31:33 +0000 (Tue, 22 Nov 2011) Log Message: ----------- Added admin part Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-22 14:29:43 UTC (rev 263) +++ trunk/new_project/application/configs/project.ini 2011-11-22 14:31:33 UTC (rev 264) @@ -12,6 +12,14 @@ ;--------------------------------------------------- salt = +;---------------------------------------------------------- +; The non database super user +; +; On production pwd should be empty or langer than 10 chars +;---------------------------------------------------------- +admin.user = super +admin.pwd = + css.gems = gems/css/gems-fixed.css css.print.url = gems/css/gems_print.css css.print.media = print This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-22 14:32:20
|
Revision: 265 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=265&view=rev Author: matijsdejong Date: 2011-11-22 14:32:11 +0000 (Tue, 22 Nov 2011) Log Message: ----------- One more character Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-22 14:31:33 UTC (rev 264) +++ trunk/new_project/application/configs/project.ini 2011-11-22 14:32:11 UTC (rev 265) @@ -18,7 +18,7 @@ ; On production pwd should be empty or langer than 10 chars ;---------------------------------------------------------- admin.user = super -admin.pwd = +;admin.pwd = css.gems = gems/css/gems-fixed.css css.print.url = gems/css/gems_print.css This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-11-22 15:09:43
|
Revision: 269 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=269&view=rev Author: michieltcs Date: 2011-11-22 15:09:32 +0000 (Tue, 22 Nov 2011) Log Message: ----------- Refs #307 - add admin.ipRanges to sample config Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-22 15:08:39 UTC (rev 268) +++ trunk/new_project/application/configs/project.ini 2011-11-22 15:09:32 UTC (rev 269) @@ -19,6 +19,7 @@ ;---------------------------------------------------------- admin.user = super ;admin.pwd = +;admin.ipRanges = css.gems = gems/css/gems-fixed.css css.print.url = gems/css/gems_print.css This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2011-12-22 15:41:46
|
Revision: 387 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=387&view=rev Author: matijsdejong Date: 2011-12-22 15:41:40 +0000 (Thu, 22 Dec 2011) Log Message: ----------- Whoops Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-12-22 15:31:37 UTC (rev 386) +++ trunk/new_project/application/configs/project.ini 2011-12-22 15:41:40 UTC (rev 387) @@ -18,7 +18,7 @@ ; On production pwd should be empty or langer than 10 chars ;---------------------------------------------------------- admin.user = superadmin -admin.pwd = superadmi +admin.pwd = ;admin.ipRanges = css.gems = gems/css/gems-fixed.css This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-01-31 15:41:34
|
Revision: 442 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=442&view=rev Author: matijsdejong Date: 2012-01-31 15:41:22 +0000 (Tue, 31 Jan 2012) Log Message: ----------- Added 'default organization' for login to single organization projects Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-01-31 15:35:59 UTC (rev 441) +++ trunk/new_project/application/configs/project.ini 2012-01-31 15:41:22 UTC (rev 442) @@ -202,6 +202,15 @@ locales.en = "en" locales.nl = "nl" +;------------------------------------------------------- +; ORGANIZATION SECTION +; +; Specify a default organization for a project. Allows +; all user to login when this organization is choosen. +;------------------------------------------------------- + +; organization.default = 70 + ;---------------------------------------------------------------------- ; PASSWORDS SECTION ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-02-02 15:02:35
|
Revision: 447 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=447&view=rev Author: roelfaber Date: 2012-02-02 15:02:24 +0000 (Thu, 02 Feb 2012) Log Message: ----------- remark added about using quotes in setting Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-02-02 14:48:27 UTC (rev 446) +++ trunk/new_project/application/configs/project.ini 2012-02-02 15:02:24 UTC (rev 447) @@ -15,7 +15,8 @@ ;---------------------------------------------------------- ; The non database super user ; -; On production pwd should be empty or langer than 10 chars +; On production pwd should be empty or longer than 10 chars +; and quoted if it contains special characters. ;---------------------------------------------------------- admin.user = superadmin admin.pwd = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-02-23 12:27:11
|
Revision: 513 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=513&view=rev Author: matijsdejong Date: 2012-02-23 12:27:01 +0000 (Thu, 23 Feb 2012) Log Message: ----------- Added respondent creation and initial password to core Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-02-23 12:26:49 UTC (rev 512) +++ trunk/new_project/application/configs/project.ini 2012-02-23 12:27:01 UTC (rev 513) @@ -10,7 +10,7 @@ ; Put %s somewhere within the salt to mix the value ; in the salt. ;--------------------------------------------------- -salt = +salt = ;---------------------------------------------------------- ; The non database super user @@ -19,7 +19,7 @@ ; and quoted if it contains special characters. ;---------------------------------------------------------- admin.user = superadmin -admin.pwd = +admin.pwd = ;admin.ipRanges = css.gems = gems/css/gems-fixed.css @@ -215,6 +215,15 @@ ; organization.default = 70 ;---------------------------------------------------------------------- +; PASSWORD SECTION +; +; Allows default setting of initial password for new users: +; password.firstPassword = sesame +;---------------------------------------------------------------------- + +;password.initialPassword = sesame + +;---------------------------------------------------------------------- ; PASSWORDS SECTION ; ; The last key must be a function name in your PasswordChecker class. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-03-23 18:30:42
|
Revision: 565 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=565&view=rev Author: matijsdejong Date: 2012-03-23 18:30:36 +0000 (Fri, 23 Mar 2012) Log Message: ----------- Authentication easier to extend / adapt Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-03-23 18:23:04 UTC (rev 564) +++ trunk/new_project/application/configs/project.ini 2012-03-23 18:30:36 UTC (rev 565) @@ -35,21 +35,6 @@ databaseFileEncoding = ISO-8859-1 ;------------------------------------------------------- -; ACCOUNT SECTION -; -; delayFactor -; -; When a user enters a wrong password, each subsequent -; login attempt will be delayed by an exponentially -; increasing number of seconds. -; -; This delay is calculated as follows: -; delay = (number_failed_attempts ^ delayFactor) -; -;------------------------------------------------------- -account.delayFactor = 4 - -;------------------------------------------------------- ; SESSION SECTION ; ; idleTimeout This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-04-23 10:42:05
|
Revision: 629 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=629&view=rev Author: mennodekker Date: 2012-04-23 10:41:59 +0000 (Mon, 23 Apr 2012) Log Message: ----------- Added logLevel section to project.ini Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-04-23 10:33:33 UTC (rev 628) +++ trunk/new_project/application/configs/project.ini 2012-04-23 10:41:59 UTC (rev 629) @@ -268,6 +268,24 @@ consentTypes = 'do not use|consent given' consentDefault = 'Unknown' ;Default setup makes this 'do not use' +;--------------------------------------------------------- +; LOGLEVEL SECTION +;--------------------------------------------------------- +; Use the loglevels as defined in Zend_Log to define the highest level of errors to log +; +; 0 Emergency: system is unusable +; 1 Alert: action must be taken immediately +; 2 Critical: critical conditions +; 3 Error: error conditions +; 4 Warning: warning conditions +; 5 Notice: normal but significant condition +; 6 Informational: informational messages +; 7 Debug: debug messages +; +; Defaults for production are 3 (error) and 7 (debug) for testing and development, uncomment the +; line below to use a custom setting +;logLevel = 6; + [testing : production] admin.user = superadmin admin.pwd = superadmin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-05-30 14:16:18
|
Revision: 711 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=711&view=rev Author: michieltcs Date: 2012-05-30 14:16:07 +0000 (Wed, 30 May 2012) Log Message: ----------- Add (empty) entry for export.wkhtmltopdf Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-05-30 14:15:42 UTC (rev 710) +++ trunk/new_project/application/configs/project.ini 2012-05-30 14:16:07 UTC (rev 711) @@ -286,6 +286,13 @@ ; line below to use a custom setting ;logLevel = 6; +;--------------------------------------------------------- +; EXPORT SECTION +;--------------------------------------------------------- +; Location of the 'wkhtmltopdf' binary, be sure to use the latest +; binary from http://code.google.com/p/wkhtmltopdf/ +export.wkhtmltopdf = + [testing : production] admin.user = superadmin admin.pwd = superadmin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-06-13 15:25:36
|
Revision: 760 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=760&view=rev Author: matijsdejong Date: 2012-06-13 15:25:27 +0000 (Wed, 13 Jun 2012) Log Message: ----------- New projects now use the new menu html->render() method, which allows labels to be more complex Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-06-13 15:23:29 UTC (rev 759) +++ trunk/new_project/application/configs/project.ini 2012-06-13 15:25:27 UTC (rev 760) @@ -164,7 +164,8 @@ layoutPrepare.version = footer layoutPrepare.user = footer layoutPrepare.time = 0 -layoutPrepare.navigation = 1 +layoutPrepare.menuHtml = 1 +layoutPrepare.navigation = 0 layoutPrepare.crumbs = main layoutPrepare.messages = main layoutPrepare.css = 1 @@ -291,7 +292,7 @@ ;--------------------------------------------------------- ; Location of the 'wkhtmltopdf' binary, be sure to use the latest ; binary from http://code.google.com/p/wkhtmltopdf/ -export.wkhtmltopdf = +export.wkhtmltopdf = [testing : production] admin.user = superadmin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-07-10 10:44:38
|
Revision: 827 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=827&view=rev Author: mennodekker Date: 2012-07-10 10:44:32 +0000 (Tue, 10 Jul 2012) Log Message: ----------- Fixed incorrect css name Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-07-09 13:44:35 UTC (rev 826) +++ trunk/new_project/application/configs/project.ini 2012-07-10 10:44:32 UTC (rev 827) @@ -29,7 +29,7 @@ imagedir = gems/images css.local = basic/basic.css favicon = basic/basic.ico -jquerycss = basic/basic.jquery-basic.css +jquerycss = basic/jquery-basic.css contact.bugsUrl = https://sourceforge.net/apps/trac/gemstracker/wiki contact.supportUrl = https://sourceforge.net/projects/gemstracker/support This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gem...@li...> - 2012-07-12 12:50:33
|
Revision: 833 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=833&view=rev Author: michieltcs Date: 2012-07-12 12:50:23 +0000 (Thu, 12 Jul 2012) Log Message: ----------- Rename to export.pdfExportCommand (see r832) Revision Links: -------------- http://gemstracker.svn.sourceforge.net/gemstracker/?rev=832&view=rev Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-07-12 12:46:26 UTC (rev 832) +++ trunk/new_project/application/configs/project.ini 2012-07-12 12:50:23 UTC (rev 833) @@ -291,9 +291,9 @@ ;--------------------------------------------------------- ; EXPORT SECTION ;--------------------------------------------------------- -; Location of the 'wkhtmltopdf' binary, be sure to use the latest -; binary from http://code.google.com/p/wkhtmltopdf/ -export.wkhtmltopdf = +; Command line to the pdf export binary (such as +; wkhtmltopdf, Phantom.js or similar) +export.pdfExportCommand = [testing : production] admin.user = superadmin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |