1
1
mirror of https://github.com/go-gitea/gitea synced 2025-01-04 23:14:31 +00:00
Commit Graph

117 Commits

Author SHA1 Message Date
Lauris BH
a7f90905df
Fix drone git@next plugin Gitea version display when building tag () 2018-07-12 06:32:01 +03:00
techknowlogick
f1d6a1fffc
Add the ability to have built in themes in Gitea ()
This makes it easier for user who want to theme but
don't have the ability to know how to customize templates
all that is required is a change in a config option

The reason why I chose the DEFAULT_THEME as variable,
as perhaps in the future we will allow users to chose their
theme whon logged in just like we do with languages
2018-07-05 17:25:04 -04:00
Fluf
28fb255d91 Add make command to validate swagger file ()
Partial fix for 
2018-06-02 14:29:12 +03:00
Antoine GIRARD
08c9617caa Provide compressed releases ()
* Add release-compress to provide compressed releases

* check after compress
2018-05-21 14:50:39 -04:00
Antoine GIRARD
3f3383dc0a Migrate to dep ()
* Update makefile to use dep

* Migrate to dep

* Fix some deps

* Try to find a better version for golang.org/x/net

* Try to find a better version for golang.org/x/oauth2
2018-05-21 15:34:20 +03:00
Lauris BH
abff697f31 Update less.js to latest version () 2018-05-10 13:36:47 +08:00
Antoine GIRARD
3506717e9c Add swagger check () 2018-04-20 17:13:50 +08:00
Antoine GIRARD
cc7b8e3379 Add more bench ()
* Improve makefile + Add benchs

* Apply recommendations of @ethantkoenig
2017-12-24 02:33:34 +02:00
Ethan Koenig
c082c3bce3 Restore make test target ()
* Restore make test target

* make build -> go build
2017-12-11 10:31:07 +08:00
Lunny Xiao
41d6afe0e7 Fix compile failed without gcc ()
* fix comile failed without gcc

* add sqlite tag for unit test
2017-12-10 16:08:19 +02:00
Ethan Koenig
f148a4a1ed Fix coverage reports () 2017-11-26 20:07:40 +02:00
Antoine GIRARD
d23a3e96f1 Fix bench deps since () 2017-11-26 10:00:57 +08:00
Ethan Koenig
061f65ff29 Restore build as the default make rule () 2017-11-19 09:50:23 +02:00
Ethan Koenig
6ee65757c7 Combine identical Makefile rules () 2017-11-17 18:17:39 +08:00
Antoine GIRARD
dac0f14f34 Docker multi-arch base ()
* Create docker/manifest/base.yml

serve as base for build docker image for most platform (386,amd64,arm,arm64)

* Add make task docker-multi-arch-push-manifest

To update references of a multi-arch image on docker registry.

* Use SED_INPLACE generic sed command

* Delete Dockerfile.aarch64

Delete Dockerfile.rpi

* Use gitea/gitea-base as base

and replace deprecated MAINTAINER by LABEL (https://docs.docker.com/engine/reference/builder/#maintainer-deprecated)

* Fix rebase

* Use sapk/gitea-base as base

* Split makefile for docker

* Fix version to v3.6

Could use in later version edge of alpine official library that support multi-arch for armhf.

* Remove sapk/gitea-base and use directly new official alpine multi-arch
2017-11-16 15:16:40 +02:00
Ethan Koenig
f26f4a7e01 Update swagger documentation ()
* Update swagger documentation

Add docs for missing endpoints
Add documentation for request parameters
Make parameter naming consistent
Fix response documentation

* Restore delete comments
2017-11-13 09:02:25 +02:00
Antoine GIRARD
619b9b5547 Move swagger-ui under /api/v1 ()
* Move swagger interface under /api/v1

* Update swagger-ui

* Add /api/swagger and prepare for multiple api version

* Update test links

* Fix footer link
2017-10-21 22:05:50 +08:00
Morlinest
086eb62691 Compress css with nodejs () 2017-09-24 22:47:10 +03:00
silverwind
1fbfccb4fc Use standard lessc and minify CSS using Node.js ()
* Use standard lessc and minify CSS using Node.js

This changes the previous nonstandard `lessc` to the official one and
enables CSS minification via the clean-css module.

To build CSS, Node.js is required along with a `npm install` to get the
tools installed locally in node_modules so there is no dependency on
binaries in PATH. Benefits include:

- Allows one to have a standard lessc in PATH.
- Can now use command line switches on lessc.
- Minified CSS brings faster page load times and also has the benefit
  of discouraging contributors from editing CSS directly.

To build CSS, Node.js is required along with a `npm install` to get the
tools installed locally based on the information in `package.json`.

The 'make stylesheet' task was modified to run without condition. This
makes it easier to work on the make task itself without having to delete
files.

Also fixes: https://github.com/go-gitea/gitea/issues/2198

* install node, npm and modules on drone

* .PHONY

* use 'minify' to minify CSS
2017-09-21 11:35:11 +08:00
Ethan Koenig
fa1cbc2896 Always run fmt check in CI () 2017-09-21 09:34:32 +08:00
Lauris BH
6f380a22a4 Remove go version check for make fmt () 2017-09-20 08:58:29 -03:00
Ethan Koenig
b0f7457d9e Improve issue search ()
* Improve issue indexer

* Fix new issue sqlite bug

* Different test indexer paths for each db

* Add integration indexer paths to make clean
2017-09-16 23:16:21 +03:00
Bo-Yi Wu
3e89e89670 add codecov.io service. ()
* add codecov.io service.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>

* update

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>

* only PR or master branch (for coverage badge)

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>

* update

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>

* update init

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2017-09-13 20:57:55 +08:00
Lauris BH
377cd1ae38 Allow changing integration test database connection using env variables () 2017-09-13 14:03:20 +08:00
Antoine GIRARD
69dfe43ffc Fix some tests : make coverage -> test ()
* Fix test : make coverage -> test

* Refactor integration tests to be able to run them in parallel

* Add custom local repository temp path
2017-09-12 13:51:12 +08:00
Thomas Boerger
4b8fef143e Changes for latest DroneCI () 2017-09-07 19:22:15 +02:00
Michael Lustfield
a915a09e4f Moved vendored js/css into public/vendor and documented sources () ()
* Cleaning up public/ and documenting js/css libs.

This commit mostly addresses  by moving vendor'ed plugins into a
vendor/ directory and documenting their upstream source and license in
vendor/librejs.html.

This also proves gitea is using only open source js/css libraries which
helps toward reaching .

* Removing unused css file.

The version of this file in use is located at:
  vendor/plugins/highlight/github.css

* Cleaned up librejs.html and added javascript header

A SafeJS function was added to templates/helper.go to allow keeping
comments inside of javascript.

A javascript comment was added in the header of templates/base/head.tmpl
to mark all non-inline source as free.

The librejs.html file was updated to meet the current librejs spec. I
have now verified that the librejs plugin detects most of the scripts
included in gitea and suspect the non-free detections are the result of
a bug in the plugin. I believe this commit is enough to meet the C0.0
requirement of .

* Updating SafeJS function per lint suggestion

* Added VERSIONS file, per request
2017-08-23 16:58:05 +02:00
Bo-Yi Wu
be4f6a754c Revert "Changes for latest DroneCI ()" ()
This reverts commit faf4b503b2.
2017-08-22 20:56:57 -05:00
Thomas Boerger
faf4b503b2 Changes for latest DroneCI () 2017-08-22 20:08:30 -05:00
Sandro Santilli
100ec93a65 Remove integration test executables on make clean () 2017-08-20 11:09:24 +08:00
Bo-Yi Wu
722bcefbbf refactor(Makefile): allow overriding default go program () 2017-08-16 08:46:41 +08:00
Antoine GIRARD
a804f0e052 go get github.com/wadey/gocovmerge when needed () 2017-07-31 09:29:50 +08:00
silverwind
d74d8ecc2e Generate small and large logos at 4x resolution ()
To support High-DPI displays, generate images at 4 times their displayed
resolution, which should be enough to support all current devices
according to https://material.io/devices/.
2017-07-30 23:04:01 +03:00
Lunny Xiao
a9cc538ab5 remove unused variable on makefile () 2017-07-29 12:22:10 +03:00
Lauris BH
60d7e56c69 Add task to generate images from SVG and change to new logo ()
* Add makefile task to generate images from SVG and change to new logo

* use absolute path on generate-images
2017-07-28 13:51:20 +08:00
Bo-Yi Wu
f011d6d4d7 fix: replace tmp with TMPDIR. () 2017-07-13 14:09:29 +03:00
Bo-Yi Wu
2c3efd72ce fix typo ()
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2017-07-12 16:52:00 +08:00
Bo-Yi Wu
2b05b104ef Add verify changed less-file step to Makefile () 2017-07-12 04:28:57 +02:00
Roy Marples
c016d48735 Use POSIX complaint ! operator in find ()
* Use POSIX complaint ! operator in find

-not is a GNU extension and not all find(8) implementations
support it. It's just an alias for ! which is POSIX compliant.

Now gitea compiles on NetBSD at least.

* Revert change in vendor directory as requested
2017-07-10 09:48:46 +08:00
Lunny Xiao
dde9a8648e Add make command update-translations for update translations from crodwin ()
* add make command update-translations for update translations from crowdin to options/locale

* use curl & resolve double quote on make file
2017-07-03 16:37:00 +03:00
Mura Li
754482bf5d Add integration test for repository migration () 2017-06-20 19:23:16 +08:00
Antoine GIRARD
2bcd9471c9 Separate generate swagger + fix sed os specific ()
* Separate generate-swagger

* Remove go generate rules

* Add missing definition replacement + remove use of -i sed flag

for compatibility with mac os default sed version.
This is a little hacky a better solution could be use.

* Use custom SED_INPLACE

depending of platform detection

* Use SED_INPLACE for swagger-ui also
2017-06-15 08:51:23 -05:00
Ethan Koenig
792cde7081 Coverage reports for integration tests () 2017-06-15 17:38:33 +08:00
Sandro Santilli
f6b58964d7 Include formatting check to the make test (and thus also check) rule ()
* Include formatting check to the `make check` rule

... and give it its own standalone target too (make fmt-check)

Show diff on fmt-check failure
Do not allow running "fmt-check" with incompatible go version
Also simplify the `fmt` rule

* Forbid running "make fmt" with Go version != 1.7 or 1.8

* Ignore bindata.go for spelling and formatting checks

also remove duplicated variable assignment for GOFILES

* Run `make fmt`
2017-06-06 08:53:16 -05:00
Bo-Yi Wu
703d18e50d feat: add check misspelling () 2017-06-05 02:49:46 -05:00
Bo-Yi Wu
e7ae13deef fix: error from mktemp command in MacOS. ()
* fix: error from mktemp command in MacOS.

* [ci skip] udpate temp name.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2017-06-04 03:48:18 -05:00
himaaaatti
0f5b399e35 Add variable for docker tag ()
Signed-off-by: Shunsuke Mie <sux2mfgj@gmail.com>
2017-05-31 09:16:51 +08:00
Ethan Koenig
cb74f1b84d Remove stale rule from Makefile () 2017-05-25 08:53:03 +08:00
Ethan Koenig
ff96bda138 Only run coverage on merges/pushes to master () 2017-05-25 00:13:18 +08:00
Lunny Xiao
d98a86d2a2 remove sqlite tag when integration test with mysql/postgres AND recreate database when init integration test () 2017-05-09 15:42:55 +02:00