Sergei Gnezdov
f4a78e5cfb
chore: update version of mermaid to 10.9.1 ( #7760 )
2024-06-08 12:57:00 -04:00
Joe Chen
ce25881c88
refactor(db): move some methods off `user.go` ( #7199 )
2022-10-22 20:01:38 +08:00
shuyue
7c893a58da
markdown: support rendering Mermaid diagrams ( #6776 )
...
Co-authored-by: Joe Chen <jc@unknwon.io>
2022-03-05 19:23:08 +08:00
Kevin
ba8be9489e
public/js: upgrade jQuery to 3.6.0 ( #6550 )
...
Co-authored-by: ᴜɴᴋɴᴡᴏɴ <u@gogs.io>
2021-05-19 15:12:34 +08:00
ᴜɴᴋɴᴡᴏɴ
a43fc9ad17
ipynb: sanitize rendered HTML ( #5996 )
...
* ipynb: sanitize rendered HTML
Fixes #5170
* Remove hardcode URL
* Add tests
2020-03-21 00:12:38 +08:00
ᴜɴᴋɴᴡᴏɴ
328c23c5d4
public: make lessc compile minimize CSS ( #5987 )
2020-03-15 03:47:07 +08:00
ᴜɴᴋɴᴡᴏɴ
6437d0180b
git: migrate to github.com/gogs/git-module@v1.0.0 ( #5958 )
...
* WIP
* Finish `internal/db/git_diff.go`
* FInish internal/db/mirror.go
* Finish internal/db/pull.go
* Finish internal/db/release.go
* Finish internal/db/repo.go
* Finish internal/db/repo_branch.go
* Finish internal/db/repo_editor.go
* Finish internal/db/update.go
* Save my work
* Add license header
* Compile!
* Merge master
* Finish internal/cmd/hook.go
* Finish internal/conf/static.go
* Finish internal/context/repo.go
* Finish internal/db/action.go
* Finish internal/db/git_diff.go
* Fix submodule URL inferring
* Finish internal/db/mirror.go
* Updat to beta.4
* css: update fonts
* Finish internal/db/pull.go
* Finish internal/db/release.go
* Finish internal/db/repo_branch.go
* Finish internal/db/wiki.go
* gitutil: enhance infer submodule UR
* Finish internal/route/api/v1/repo/commits.go
* mirror: only collect branch commits after sync
* mirror: fix tag support
* Finish internal/db/repo.go
* Finish internal/db/repo_editor.go
* Finish internal/db/update.go
* Finish internal/gitutil/pull_request.go
* Make it compile
* Finish internal/route/repo/setting.go
* Finish internal/route/repo/branch.go
* Finish internal/route/api/v1/repo/file.go
* Finish internal/route/repo/download.go
* Finish internal/route/repo/editor.go
* Use helper
* Finish internal/route/repo/issue.go
* Finish internal/route/repo/pull.go
* Finish internal/route/repo/release.go
* Finish internal/route/repo/repo.go
* Finish internal/route/repo/wiki.go
* Finish internal/route/repo/commit.go
* Finish internal/route/repo/view.go
* Finish internal/gitutil/tag.go
* go.sum
2020-03-08 19:09:31 +08:00
ᴜɴᴋɴᴡᴏɴ
bf373f9da1
templates: show brand name in the footer ( #5974 )
2020-03-07 13:15:20 +08:00
ᴜɴᴋɴᴡᴏɴ
177806068d
public: update to new logo
2020-02-27 20:21:41 +08:00
ᴜɴᴋɴᴡᴏɴ
ea75f01ba2
admin: show all version in dashboard
...
And removed version info from footer.
2020-02-19 17:32:56 +08:00
ᴜɴᴋɴᴡᴏɴ
317bca1008
Add CHANGELOG and adopt new release workflow
...
In development, the version now has +dev suffix indicates it is not a binary release.
2020-02-18 12:31:08 +08:00
Unknwon
19ae04da66
public/plugins: upgrade highlight.js 9.16.2 to 9.18.0
2020-01-31 23:33:47 +08:00
Unknwon
2e00f00ab0
public/plugins: upgrade Dropzone 4.2.0 to 5.5.0
2020-01-31 23:27:56 +08:00
Unknwon
e99f43f59c
public/js: upgrade jQuery 1.12.4 to 3.4.1
2020-01-31 23:26:44 +08:00
Unknwon
2637931102
public: upgrade Semantic UI 2.3.1 to 2.4.2
2020-01-31 21:37:30 +08:00
Unknwon
54067d105b
public/js: upgrade clipboard 1.5.9 to 2.0.4
2020-01-31 21:21:30 +08:00
Unknwon
4c415aefed
public/js: upgrade jQuery 1.11.3 to 1.12.4
2020-01-31 21:20:47 +08:00
johannes69ki
7d9f408d3a
public: update highlights.js to 9.16.2 ( #5856 )
...
* updated the highlight.js plugin
* added some explicit mappings for syntax highlighting
2019-11-07 10:43:01 -08:00
unknwon
35e2cee5c5
pkg/template: use template function Year to get number of year
...
To avoid update in each year
2019-07-28 15:10:44 -07:00
Achilleas Koutsou
dc13eb6df0
pkg/context: Render live notice banner from file ( #5750 )
...
* pkg/context: Render live notice banner from file
- Contexter checks if there is a file called 'notice' under the
GOGS_CUSTOM directory and loads it.
- The first line is treated as a header/title and everything else as the
message body.
- Message body is rendered as HTML (tags allowed).
- File size is limited to 1024 bytes.
- File mime type must be text.
- Notice is rendered in head.tmpl for all pages.
* pkg/context: Rename maxlen to maxSize
Rename maxlen to maxSize for the maximum size (in bytes) of the notice
file to render.
Define the variable when needed to avoid instantiating it when the file
doesn't exist.
Co-Authored-By: ᴊ. ᴄʜᴇɴ <u@gogs.io>
* pkg/context: Package name after license header
Co-Authored-By: ᴊ. ᴄʜᴇɴ <u@gogs.io>
* pkg/context: Don't print 'Found notice file'
Becomes too verbose as it prints on every page load when the file
exists.
* pkg/context: Match project conventions
Import order and grouping
Variable names:
fileloc -> fpath
fp -> f
finfo -> fi
* pkg/context: Remove empty line
Co-Authored-By: ᴊ. ᴄʜᴇɴ <u@gogs.io>
* pkg/context: Render notice as markdown
Server notice file should be named 'notice.md'. The contents of the
file are treated as markdown and rendered as a warning message at the
top of every page.
* Update notice.go
Co-authored-by: ᴊ. ᴄʜᴇɴ <u@gogs.io>
2019-07-27 23:47:35 -07:00
Unknwon
db3f0048d8
templates: rename template function Str2html -> Str2HTML
2018-12-10 22:23:56 -05:00
Unknwon
f545faa06d
templates: make state changing routes to POST method ( #5541 )
...
- pkg/context: add ParamsUser to unify the injection process
2018-12-06 22:58:02 -05:00
cezar97
87b229d280
templates: add 'rel=noopener noreferrer' to <a> tags ( #5319 )
...
Signed-off-by: cezar97 <cezar97@protonmail.com>
2018-07-02 19:33:14 +08:00
Unknwon
dfd494c113
repo: minor improve for PR #5219 and support UTF-8 byte count
2018-06-11 21:06:24 +08:00
Sergey Dryabzhinsky
57897cc8c2
repo: update repository description field to contain more than 256 symbols ( #5219 )
...
* Update repository description field to contain more than 256 symbols
- update repository model - description field now is `TEXT` and limited by 4000 symbols
- new migration
- add description to html forms - repo creation and repo settings
- add translation for description
* Update for description field, new features
- add autosize (height) for description textarea, new plugin
- set max description length to 512 symbols
- update locales
* Fix migration - typo in var
* Update repo description behaviour
- add textarea autosize for /repo/create
- add symbols counter under description testarea (create/edit)
* Fix function definition - it a var
* Revert ru-RU locale
* Update by review
- Use type `varchar(512)` in migration
- Remove unused files from autosize plugin
* Fix migration - new project paths
* Fixes after review 2
- copyright year
- format includes
- use switch instead of multi-if
* Remove unused `default:` option.
2018-06-11 20:34:26 +08:00
Unknwon
c59704a24b
public: update Semantic UI 2.2.13 -> 2.3.1
2018-04-12 09:57:27 -04:00
Jorge Maldonado Ventura
2818ce4632
templates: make dropdowns menus work when JavaScript is disabled ( #4780 )
...
* Make dropdowns menus work when JavaScript is disabled
* Update head.tmpl
* Update head.tmpl
2018-03-20 20:04:34 -04:00
Ruben Vermeersch
f4e4ea1374
public: update notebookjs to 0.3.0 ( #5084 )
...
Fixes #5077
2018-03-08 02:06:57 -05:00
Sanxing Chen
68d22e78bf
templates: update year in footer ( #4966 )
...
Happy new year!
2018-03-06 16:47:35 -05:00
Unknwon
dbe6de313e
public: update Semantic UI 2.2.10 -> 2.2.13
2017-11-15 21:59:47 -05:00
Unknwon
239dd978ff
repo: support go get subpkg ( #1878 )
2017-06-03 06:50:09 -04:00
Unknwon
6ebdf91b32
templates/repo: fix README.ipynb not rendered ( #4367 )
2017-04-07 22:33:19 -04:00
Unknwon
ac43eab51f
Refactoring: rename Signed -> Logged
2017-04-06 23:48:49 -04:00
Unknwon
90b9f7e08c
pkg/setting: rename {AppUrl, AppSubUrl} -> {AppURL, AppSubURL}
2017-04-06 17:27:57 -04:00
Unknwon
2c404daca6
pkg/context: rename {CsrfToken, CsrfTokenHtml} -> {CSRFToken, CSRFTokenHTML}
2017-04-06 17:20:38 -04:00
Unknwon
1bc805bb4b
public: update Semantic UI 2.2.7 -> 2.2.10
...
[CI SKIP]
2017-04-03 22:20:17 -04:00
Unknwon
ab42671c63
repo: handle git.ErrUnsupportedVersion error type
2017-04-01 17:56:55 -04:00
Unknwon
60ee79363d
templates: use owner's avatar as image of repository
2017-03-10 17:00:10 -05:00
Unknwon
971a96a962
Revert "public: update Semantic UI from 2.2.7 -> 2.2.9"
...
This reverts commit eaab01fa49
.
2017-03-05 16:35:35 -05:00
Unknwon
eaab01fa49
public: update Semantic UI from 2.2.7 -> 2.2.9
2017-02-27 22:45:35 -05:00
Unknwon
c64b842df9
templates: able to inject content to head and footer ( #1286 )
2017-02-24 18:26:41 -05:00
Unknwon
1083c0cd9a
admin/config: display repository related settings ( #3816 )
2017-02-18 13:29:43 -05:00
Unknwon
36f448f47f
footer: update Twitter handle [CI SKIP]
2017-02-18 11:55:59 -05:00
Unknwon
57cb23ac81
Security: fix XSS attack on alert
2017-02-17 08:16:27 -05:00
Unknwon
3137665e6e
Simplify description
2017-02-15 22:29:31 -05:00
Unknwon
0958fe5a4e
Improve Open Graph Meta tags ( #3664 )
2017-02-11 00:03:10 -05:00
Simeon Radivoev
4a1dc29e23
Added Open Graph Meta tags to head template ( #3664 )
2017-02-10 23:37:23 -05:00
Unknwon
b67ec01d41
Able to disable non-admin to create new organization ( #1556 )
...
Add new config option '[admin] DISABLE_REGULAR_ORG_CREATION', by
default it's 'false'.
2017-02-10 16:41:51 -05:00
Unknwon
8a19f8a63c
Update locales
...
This patch also fixes #4073
2017-02-09 16:04:35 -05:00
Jorge Maldonado Ventura
6971143dc5
Make Gogs compatible with LibreJS ( #4092 )
2017-02-07 18:47:08 -05:00