Fixed incorrect icon file name for .doc files (issue-200)
| | |
| | | - Could not reset settings with $ or { characters through Gitblit Manager because they are not properly escaped
|
| | | - Fix NPE when getting user's fork without repository list caching (issue 182)
|
| | | - Fix internal error on folder history links (issue 192)
|
| | | - Fixed incorrect icon file name for .doc files (issue 200)
|
| | |
|
| | | additions:
|
| | | - Option to force client-side basic authentication instead of form-based authentication if web.authenticateViewPages=true (issue 222)
|
| | |
| | | contributors:
|
| | | - Christian Aistleitner
|
| | | - Jay Meyer
|
| | | - Slawomir Bochenski
|
| | | - github/furinzen
|
| | | - github/mschaefers
|
| | | - github/thefake
|
| | |
| | | || filename.endsWith(".xlsx")) {
|
| | | return newImage(wicketId, "file_excel_16x16.png");
|
| | | } else if (filename.endsWith(".doc") || filename.endsWith(".docx")) {
|
| | | return newImage(wicketId, "file_word_16x16.png");
|
| | | return newImage(wicketId, "file_doc_16x16.png");
|
| | | } else if (filename.endsWith(".ppt")) {
|
| | | return newImage(wicketId, "file_ppt_16x16.png");
|
| | | } else if (filename.endsWith(".zip")) {
|