| Commit message (Collapse) | Author | Age |
| |
|
|\
| |
| | |
Repo file list layout & misc fixes
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| | |
This is more inline with way GitHub looks like and feels much more natural and
in style with rest of the interface.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| |
| | |
This is because SHA1 label is used in many other places, not only inside
.repository container.
|
| | |
|
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
|\ \
| |/
|/| |
Translation: Add missing entry for new "code" tab
|
|/
|
|
|
|
|
|
| |
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".
|
| |
|
| |
|
|\
| |
| | |
Update English translations
|
| | |
|
| |
| |
| |
| | |
Just some phrasing changes to make the English translations sound more natural.
|
| | |
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
LDAP: Optional user name attribute specification
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|\
| |
| | |
Makefile improvements
|
| |
| |
| |
| | |
We no longer need to manually build CSS files as Makefile keeps track of it.
|
| |
| |
| |
| | |
This is pure cleanup commit.
|
| |
| |
| |
| |
| | |
This will ensure that running `make` we will get all necessary files built and
we do not need manually remember to rebuild them.
|
| |
| |
| |
| |
| | |
This speeds up single build/rebuild rather than install & build which compiles
everything twice, we just copy installed binary back to the project root.
|
| | |
|
|\ \
| |/
|/| |
add new mirror button to dashboard
|
| |
| |
| |
| |
| | |
This adds the button to create a new mirror on the dashboard at the same
place where "new repository" and "new organization" already exist.
|
|\ \
| | |
| | | |
Dockerfile for RaspberryPi is added.
|
| |\ \
| | | |
| | | |
| | | | |
Merge branch 'develop' of https://github.com/gogits/gogs into develop
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Admin should be able to see all organizations
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is follow-up for 56c66ee486b4b8d544201662de62a23f36e6a069 allowing admin
to see private repositories, even when not being member of them.
|
| | | | | |
|
|\ \ \ \ \ |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
various fixes in gogs dump command
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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 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.
|