Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix grammar + typo. (#3453) | Justin Ray Vrooman | 2016-08-12 | 1 | -2/+2 |
| | |||||
* | Use SecurityProtocol to replace UseSSL in LDAP config | Unknwon | 2016-07-08 | 2 | -6/+32 |
| | | | | Initially proposed by #2376 and fixes #3068 as well. | ||||
* | Minor fix for #2634 | Unknwon | 2016-02-20 | 1 | -0/+6 |
| | | | | Add AttributesInBind option in new auth source form. | ||||
* | LDAP: Fetch attributes in Bind DN context option | Adam Strzelecki | 2016-02-20 | 1 | -0/+8 |
| | | | | | | | | | This is feature is workaround for #2628 (JumpCloud) and some other services that allow LDAP search only under BindDN user account, but not allow any LDAP search query in logged user DN context. Such approach is an alternative to minimal permissions security pattern for BindDN user. | ||||
* | LDAP parameters UI: bind_dn and bind_password are not required | SlavikZ | 2015-12-09 | 2 | -6/+6 |
| | |||||
* | Indent all templates with tabs | Adam Strzelecki | 2015-12-08 | 3 | -341/+341 |
| | | | | | | | | | | | | This commit improves templates readability, since all of them use consistent indent with all template command blocks indented too. 1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks such as {{if}} {{with}} 2. Cleans all trailing white-space 3. Adds trailing last line-break to each file | ||||
* | LDAP: Optional user name attribute specification | Adam Strzelecki | 2015-12-02 | 2 | -0/+8 |
| | | | | | | | | | | | | | | | Consider following LDAP search query example: (&(objectClass=Person)(|(uid=%s)(mail=%s))) Right now on first login attempt Gogs will use the text supplied on login form as the newly created user name. In example query above the text matches against both e-mail or user name. So if user puts the e-mail then the new Gogs user name will be e-mail which may be undesired. Using optional user name attribute setting we can explicitly say we want Gogs user name to be certain LDAP attribute eg. `uid`, so even user will use e-mail to login 1st time, the new account will receive correct user name. | ||||
* | revert simple LDAP userDN and update example | Unknwon | 2015-09-16 | 2 | -2/+2 |
| | |||||
* | #1637 able to skip verify for LDAP | Unknwon | 2015-09-14 | 2 | -5/+3 |
| | |||||
* | #1625 remove auto_register and makes it default | Unknwon | 2015-09-12 | 2 | -12/+0 |
| | |||||
* | #1620 add allowed domains for SMTP auth | Unknwon | 2015-09-11 | 2 | -0/+10 |
| | |||||
* | finish new edit auth UI | Unknwon | 2015-09-11 | 2 | -174/+182 |
| | |||||
* | finish new add auth UI | Unknwon | 2015-09-10 | 2 | -136/+152 |
| | |||||
* | more minor fix on 1581 | Unknwon | 2015-09-10 | 2 | -62/+49 |
| | |||||
* | Added LDAP simple auth support. | Sergio Benitez | 2015-09-04 | 2 | -16/+29 |
| | |||||
* | #1542 A way to skip TLS verify for SMTP authentication | Unknwon | 2015-08-29 | 3 | -5/+13 |
| | |||||
* | able edit issue title | Unknwon | 2015-08-19 | 2 | -2/+2 |
| | |||||
* | Set IsAdmin using LDAP | Girish Ramakrishnan | 2015-08-18 | 2 | -0/+8 |
| | | | | | | | | | The IsAdmin flag is set based on whether the admin filter returned any result. The admin filter is applied with the user dn as the search root. In the future, we should update IsAdmin as well on each login. Alternately, we can have a periodic sync operation. | ||||
* | Change input field to type=password for the authentication templates. | Lydia Sevelt | 2015-08-18 | 2 | -2/+2 |
| | |||||
* | Significantly enhanced LDAP support in Gogs. | Sergio Benitez | 2015-08-12 | 2 | -32/+32 |
| | |||||
* | Add PAM authentication | Paolo Borelli | 2015-04-24 | 2 | -0/+12 |
| | |||||
* | #1124 LDAP add and edit form are misleading | Unknwon | 2015-03-24 | 2 | -14/+26 |
| | |||||
* | Fix for deleting user when gogs instalation is on http://hostname/gogs | Sternik | 2015-03-13 | 1 | -1/+1 |
| | |||||
* | Merge pull request #915 from Lafriks/dev | 无闻 | 2015-02-23 | 1 | -2/+14 |
|\ | | | | | Get username, name, surname and e-mail from LDAP server | ||||
| * | Get username, name, surname and e-mail from LDAP server | Lauris BH | 2015-02-08 | 1 | -2/+14 |
| | | |||||
* | | Remove the "PHP" style formatting function | Peter Smit | 2015-02-16 | 1 | -2/+2 |
|/ | | | | | | The "PHP" formatting function doesn't add anything, except an undocumented date format. All usages in the templates have been replaced with DateFmtShort and DateFmtLong for convenience. | ||||
* | Fix #799 by adding a tooltip for all dates in all settings/panels | Peter Smit | 2015-01-02 | 1 | -2/+2 |
| | |||||
* | UI: Confirmation box | Unknwon | 2014-09-28 | 1 | -1/+8 |
| | |||||
* | Add suburl support | Unknwon | 2014-09-19 | 3 | -7/+7 |
| | |||||
* | Allow Gogs to run from a suburl behind a reverse proxy. e.g. ↵ | Martin van Beurden | 2014-09-18 | 3 | -7/+7 |
| | | | | | | | | | | | | | | http://mydomain.com/gogs/ Conflicts: modules/setting/setting.go Conflicts: templates/repo/release/list.tmpl templates/user/dashboard/dashboard.tmpl Conflicts: routers/repo/setting.go | ||||
* | Removed trailing white spaces | Tristan Storch | 2014-08-30 | 1 | -1/+1 |
| | | | | | | | | | | Removed trailing whitespaces with ```sh for file in `grep -r " $" * | cut -d : -f 1 | sort | uniq | grep -v " "`; do sed -i 's/[ \t]*$//' $file; done ``` and some handwork. | ||||
* | Continue working on new admin pages | Unknwon | 2014-08-29 | 3 | -323/+262 |
| | |||||
* | In progress of name template name constant | Unknown | 2014-06-22 | 2 | -0/+343 |