aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* minor fix for #2086Unknwon2015-12-02
|
* Merge pull request #2068 from nanoant/patch/repo-file-list-layoutUnknwon2015-12-02
|\ | | | | Repo file list layout & misc fixes
| * UI: Display last-commit header without 2nd columnAdam Strzelecki2015-12-03
| | | | | | | | | | | | | | | | This uses a CSS trick making first th to be relative block with width equal to first two columns, effectively working around inability to use colspan="2" on first row that was breaking "fixed-layout" for tables. Also use grey header for last-commit SHA1 tag.
| * UI: Keep repo URL action right of ref combo & pathAdam Strzelecki2015-12-02
| | | | | | | | | | | | | | Just use secondary menu instead custom ".head.meta", which simplifies code. Also do not display repo URL action when we are in subdirectory or viewing a file.
| * UI: Make repository menu divide header and contentAdam Strzelecki2015-12-02
| | | | | | | | | | This is more inline with way GitHub looks like and feels much more natural and in style with rest of the interface.
| * UI: Keep repository settings menu button rightAdam Strzelecki2015-12-02
| |
| * Commits & files UI: SUI fixed single line tableAdam Strzelecki2015-12-02
| | | | | | | | | | | | | | | | Instead using own ellipsis, uses Semantic UI fixed single line table which effectively applies ellipsis to all overflowing table cells. NOTE: File list cannot use colspan="2" for 1st "Last commit" elements, otherwise layout breaks with fixed table.
| * CSS: Reduce .sha.label font size to 13pxAdam Strzelecki2015-12-02
| |
| * CSS: .repository .sha.label -> .ui .sha.labelAdam Strzelecki2015-12-02
| | | | | | | | | | This is because SHA1 label is used in many other places, not only inside .repository container.
| * UI: Mark top menu icons blue only when non-zeroAdam Strzelecki2015-12-02
| |
| * CSS: Ensure Octicons are used with 16px font sizeAdam Strzelecki2015-12-02
| | | | | | | | | | | | Semantic UI .icon 1em font-size has priority over .octicon 16px, resulting octicons rendered at 14px font-size, which is not okay since Octicons are meant to be shown sizes that are multiples of 16px.
* | fix #2085Unknwon2015-12-02
| |
* | Merge pull request #2086 from nanoant/patch/translation-add-code-entryUnknwon2015-12-02
|\ \ | |/ |/| Translation: Add missing entry for new "code" tab
| * Translation: Add missing entry for new "code" tabAdam Strzelecki2015-12-02
|/ | | | | | | | We have new tab, but we had no entry. That's why it was showing "code" (lowercase) as this is text id, where we were expecting properly title cased "Code" to be shown in English version. Also add Polish translation "code=Kod".
* fix #2083Unknwon2015-12-02
|
* #2071 Diff is not showing full content when has super long one lineUnknwon2015-12-02
|
* Merge pull request #2081 from angus-g/en-transUnknwon2015-12-01
|\ | | | | Update English translations
| * Fix casing in English translationAngus Gibson2015-12-02
| |
| * Update English translationsAngus Gibson2015-12-02
| | | | | | | | Just some phrasing changes to make the English translations sound more natural.
* | #2052 Ability to batch delete system noticesUnknwon2015-12-01
| |
* | #2045 add short version as fallback to Slack payloadUnknwon2015-12-01
| |
* | fix #2057Unknwon2015-12-01
|/
* update REMADE and localeUnknwon2015-12-01
|
* Merge pull request #2079 from nanoant/patch/ldap-custom-username-attrUnknwon2015-12-01
|\ | | | | LDAP: Optional user name attribute specification
| * LDAP: Optional user name attribute specificationAdam Strzelecki2015-12-02
|/ | | | | | | | | | | | | | | 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.
* Merge pull request #2078 from nanoant/patch/makefile-improvementsUnknwon2015-12-01
|\ | | | | Makefile improvements
| * scripts: Remove less.sh superseded by MakefileAdam Strzelecki2015-12-01
| | | | | | | | We no longer need to manually build CSS files as Makefile keeps track of it.
| * Makefile: Remove trailing whitespace & add last LFAdam Strzelecki2015-12-01
| | | | | | | | This is pure cleanup commit.
| * Makefile: Auto-build CSS & bin-data when necessaryAdam Strzelecki2015-12-01
| | | | | | | | | | This will ensure that running `make` we will get all necessary files built and we do not need manually remember to rebuild them.
| * Makefile: Copy installed binary instead 2nd buildAdam Strzelecki2015-12-01
| | | | | | | | | | This speeds up single build/rebuild rather than install & build which compiles everything twice, we just copy installed binary back to the project root.
* | fix APIUnknwon2015-12-01
| |
* | Merge pull request #2076 from Gibheer/new_mirrorUnknwon2015-12-01
|\ \ | |/ |/| add new mirror button to dashboard
| * add new mirror button to dashboardGibheer2015-12-01
| | | | | | | | | | This adds the button to create a new mirror on the dashboard at the same place where "new repository" and "new organization" already exist.
* | Merge pull request #2016 from raxetul/developUnknwon2015-12-01
|\ \ | | | | | | Dockerfile for RaspberryPi is added.
| * \ Latest develop updates is merged with my RaspberryPi Dockerfile version.Emrah URHAN2015-11-22
| |\ \ | | | | | | | | | | | | Merge branch 'develop' of https://github.com/gogits/gogs into develop
| * | | Dockerfile for RaspberryPi is added.Emrah URHAN2015-11-22
| | | |
* | | | Merge pull request #2069 from nanoant/patch/admin-see-all-organizationsUnknwon2015-11-30
|\ \ \ \ | | | | | | | | | | Admin should be able to see all organizations
| * | | | Admin should be able to see all organizationsAdam Strzelecki2015-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | This is follow-up for 56c66ee486b4b8d544201662de62a23f36e6a069 allowing admin to see private repositories, even when not being member of them.
* | | | | fix #2042Unknwon2015-11-30
| | | | |
* | | | | Merge branch 'feature/wiki' into developUnknwon2015-11-30
|\ \ \ \ \
| * | | | | finish wikiUnknwon2015-11-30
| | | | | |
| * | | | | wiki: finish pagesUnknwon2015-11-27
| | | | | |
| * | | | | wiki: finish editUnknwon2015-11-27
| | | | | |
| * | | | | wiki: finish newUnknwon2015-11-27
| | | | | |
| * | | | | introduce git-shellUnknwon2015-11-26
| | | | | |
| * | | | | Wiki: UI for page newUnknwon2015-11-25
| | | | | |
* | | | | | Merge pull request #2053 from kakwa/developUnknwon2015-11-30
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | various fixes in gogs dump command
| * | | | | add name of the dump file in last log messagekakwa2015-11-28
| | | | | |
| * | | | | Fix dump of log and custom directory in dump cmdkakwa2015-11-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now, the dump cmd uses setting.CustomPath and setting.LogRootPath instead of setting.WorkDir which was kind of broken if the gogs binary was in a different directory than gogs data. Additionally, the backup of setting.CustomPath directory is only done if it exists.
| * | | | | Using a tmp dir to generate db and repo dumpskakwa2015-11-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using a tmp dir makes gogs dump more robust to concurrent runs. It also permits an easier cleaning of the tmp files (gogs-db.sql and gog-repo.zip) by just removing the tmp dir. As a side effect, it partially fix bugs on workdir. Previously, 'gogs dump' created the archives in the current directory, and tried to include these archives from the directory where the gogs binary lies. ex: if gogs binary is in /usr/bin/gogs, and gogs dump is run from /tmp/, /tmp/gog-repo.zip is created, but gogs dump tried to include /usr/bin/gogs-repo.zip.