summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/pages/UserPage.java
Commit message (Collapse)AuthorAgeFilesLines
* Adding Russian Translate Добавлен русский языкVladimir A2021-11-031-0/+1
|
* Fix user preferences selecting the wrong preferred locale.Florian Zschocke2019-11-111-24/+25
| | | | | | | | | | | Due to a wrong comparison, when loading the preferred locale in the user preferences page, in cases like `zh_CN` or `de_DE` the wrong locale would be chosen. As with too many things, the code is duplicated on the `UserPage` and the `EditUserPage`. And they differ. So extract the choosing of the preferred language for display into a method in the (more up-to-date) `UserPage` and call that from the `EditUserPage`.
* Add Czech localeJan Breuer2017-02-151-0/+1
|
* New Setting "Default Language" when creating user.william2017-02-081-24/+10
|
* Add traditional Chinese language choiceJames Moger2015-08-071-1/+2
|
* Allow finer-grained determination of available transport preferencesJames Moger2014-10-311-1/+3
|
* Extract services manager into a top-level injectable managerJames Moger2014-07-031-4/+4
|
* Expose an Italiano language option in user preferencesJames Moger2014-06-161-0/+1
|
* Add Deutsch (de) language preference choiceJames Moger2014-06-131-0/+1
|
* Add clone transport user preferenceJames Moger2014-06-051-0/+21
|
* Use AJAX to manage the SSH keys panelJames Moger2014-06-051-1/+1
|
* Add "email me on my ticket changes" preferenceJames Moger2014-06-051-0/+9
|
* Revise language/locale preference handlingJames Moger2014-06-051-9/+17
|
* Add a basic SSH public key management UIJames Moger2014-06-051-0/+22
|
* Revise the user profile page and add a preferences formJames Moger2014-06-041-15/+138
|
* Simplified repository creation with a NewRepositoryPageJames Moger2014-06-031-2/+2
|
* Allow plugins to extend the top navbar and repository navbarJames Moger2014-05-051-5/+5
| | | | | This change also ties the plugin manager into the Wicket framework and allows plugins to contribute and mount new pages which are linked by the top navbar and repository navbar extensions.
* Overhaul menu item classes and add AdminMenuExtension pointJames Moger2014-05-051-2/+2
|
* [findbugs] Remove dead code in UserPageJames Moger2014-04-171-7/+0
|
* Eliminate nearly all direct GitBlit singleton references in WicketJames Moger2013-11-261-5/+4
| | | | | | | | | | This is the first step towards modularization and injection. All direct references to the GitBlit singleton within the Wicket pages and panels have been replaced to proxy methods in the GitBlitWebApp singleton. There are still two Wicket classes which rely on the GitBlit singleton; those require manual instantiation (servlet 3). Change-Id: I0cdbbcf87959d590c446c99abb09c07c87c737bc
* Trim trailing whitespace and organize importsJames Moger2013-09-301-10/+11
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Refactor logic for user repository path into one class.Florian Zschocke2013-08-261-1/+1
| | | | Gather logic for building the path/name of a personal user repository into one class.
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+155
This is a massive commit which reorganizes the entire project structure (although it is still monolithic), removes the Build classes, and switches to Moxie, a smarter Ant build tookit based on the original Gitblit Build classes. The Ant build script will likely require additional fine-tuning, but this is big step forward.