| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
| |
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.
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The dump cmd did not check the return value of the z.AddFile or
z.AddDir when building the final archive.
It caused the dump command to succeed even if an error occurred.
The resulted dump archive could be corrupted/empty.
(errors could be various: removal by a concurrent process, disk full,
bugs in the dump cmd itself)
|
| | | | | |
|
|/ / / / |
|
|/ / / |
|
|\ \ \ |
|
| | | | |
|
|/ / / |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|