From 53868978ed5233cfd67d5134c409e9226e9898eb Mon Sep 17 00:00:00 2001 From: onukura Date: Thu, 9 Jul 2020 00:54:29 +0900 Subject: [PATCH 1/3] introduce plugins.yml to render index by template engine. #42 --- _data/plugins.yml | 185 +++++++++++++++++++++++++++++++++++++++++++ index.html | 197 ++-------------------------------------------- 2 files changed, 191 insertions(+), 191 deletions(-) create mode 100644 _data/plugins.yml diff --git a/_data/plugins.yml b/_data/plugins.yml new file mode 100644 index 0000000..4a8db75 --- /dev/null +++ b/_data/plugins.yml @@ -0,0 +1,185 @@ +- name: Announce plugin + description: Send announcements via email to groups of users, e.g. for maintenance. + url: https://github.com/gitbucket-plugins/gitbucket-announce-plugin + icon: fa fa-bullhorn + distributed: false + +- name: H2 Backup plugin + description: Backup functionality of the H2 Database used by GitBucket. + url: https://github.com/gitbucket-plugins/gitbucket-h2-backup-plugin + icon: fa fa-database + distributed: false + +- name: Desktop Notification plugin + description: Notify GitBucket activity directly on the desktop. + url: https://github.com/yoshiyoshifujii/gitbucket-desktopnotify-plugin + icon: fa fa-bell + distributed: false + +- name: Gist plugin + description: Add code snippet Gist-like functionality to GitBucket. + url: https://github.com/gitbucket/gitbucket-gist-plugin + icon: fa fa-file-code-o + distributed: true + +- name: Commits Graph plugin + description: Add commit graph views to GitBucket. + url: https://github.com/yoshiyoshifujii/gitbucket-commitgraphs-plugin + icon: fa fa-line-chart + distributed: false + +- name: AsciiDoc plugin + description: Add AsciiDoc rendering capabilities to GitBucket. + url: https://github.com/lefou/gitbucket-asciidoctor-plugin + icon: fa fa-file-text + distributed: false + +- name: Bugspots plugin + description: Add Google bugspots functionality to GitBucket. + url: https://github.com/yoshiyoshifujii/gitbucket-bugspots-plugin + icon: fa fa-bug + distributed: false + +- name: Pages plugin + description: Project Pages for GitBucket. + url: https://github.com/yaroot/gitbucket-pages-plugin + icon: fa fa-book + distributed: true + +- name: Network plugin + description: Network graph for GitBucket. + url: https://github.com/mrkm4ntr/gitbucket-network-plugin + icon: fa fa-code-fork + distributed: false + +- name: Emoji plugin + description: Emoji support for GitBucket. + url: https://github.com/gitbucket/gitbucket-emoji-plugin + icon: fa fa-smile-o + distributed: true + +- name: RST plugin + description: ReSTructured text renderer for GitBucket. + url: https://github.com/amuramatsu/gitbucket-rst-plugin + icon: fa fa-file-text + distributed: false + +- name: Explorer plugin + description: Explorer like navigation side panel for your projects. + url: https://github.com/gitbucket-plugins/gitbucket-explorer-plugin + icon: fa fa-list-alt + distributed: false + +- name: FESS plugin + description: Fast enterprise search for GitBucket using a FESS server. + url: https://github.com/codelibs/gitbucket-fess-plugin + icon: fa fa-search + distributed: false + +- name: PlantUML plugin + description: Render PlantUML files in GitBucket. + url: https://github.com/nus/gitbucket-plantuml-plugin + icon: fa fa-object-group + distributed: false + +- name: Monitoring plugin + description: Monitors and displays statistics about the running GitBucket instance. + url: https://github.com/YoshinoriN/gitbucket-monitoring-plugin + icon: fa fa-server + distributed: false + +- name: HTML5 Media plugin + description: Renders HTML5 Media (Audio/Video/PDF) inline in GitBucket. + url: https://github.com/kounoike/gitbucket-html5media-plugin + icon: fa fa-html5 + distributed: false + +- name: Jupyter plugin + description: GitBucket plugin for rendering Jupyter or IPython files. + url: https://github.com/kounoike/gitbucket-ipynb-plugin + icon: fa fa-ravelry + distributed: false + +- name: Email Notifications plugin + description: GitBucket plugin to send Email notifications. + url: https://github.com/gitbucket/gitbucket-notifications-plugin + icon: fa fa-envelope + distributed: true + +- name: CI plugin + description: GitBucket plug-in that adds simple CI ability to GitBucket. + url: https://github.com/takezoe/gitbucket-ci-plugin + icon: fa fa-cog + distributed: false + +- name: Maven Repository plugin + description: GitBucket plugin that provides Maven repository hosting on GitBucket. + url: https://github.com/takezoe/gitbucket-maven-repository-plugin + icon: fa fa-cubes + distributed: false + +- name: Mirror plugin + description: This plugin adds repository mirroring to GitBucket. + url: https://github.com/alexandremenif/gitbucket-mirror-plugin + icon: fa fa-copy + distributed: false + +- name: H2Console plugin + description: A GitBucket plugin that adds H2 console to the administration console. + url: https://github.com/takezoe/gitbucket-h2console-plugin + icon: fa fa-table + distributed: false + +- name: Backup plugin + description: Plugin providing backup functionality for GitBucket. + url: https://github.com/jyuch/gitbucket-backup-plugin + icon: fa fa-floppy-o + distributed: false + +- name: Logs Viewer plugin + description: A plugin allowing to view and control GitBucket logs. + url: https://github.com/YoshinoriN/gitbucket-application-logs-plugin + icon: fa fa-file-text-o + distributed: false + +- name: Kanban Board plugin + description: A plugin for Kanban style issue management in GitBucket. + url: https://github.com/kasancode/gitbucket-label-kanban-plugin + icon: fa fa-check + distributed: false + +- name: Gantt Chart plugin + description: A plugin for rendering a Gantt Chart view of the GitBucket issues. + url: https://github.com/kasancode/gitbucket-gantt-plugin + icon: fa fa-sliders + distributed: false + +- name: Swagger plugin + description: A plugin for rendering a Swagger (OpenAPI) files. + url: https://github.com/onukura/gitbucket-swagger-plugin + icon: fa fa-ellipsis-h + distributed: false + +- name: R Markdown plugin + description: A plugin for rendering a R Markdown files. + url: https://github.com/onukura/gitbucket-rmarkdown-plugin + icon: fa fa-registered + distributed: false + +- name: MathJax plugin + description: A plugin for rendering a markdown files with MathJax. + url: https://github.com/onukura/gitbucket-mathjax-plugin + icon: fa fa-superscript + distributed: false + +- name: 3D file plugin + description: A plugin for rendering 3D files. + url: https://github.com/onukura/gitbucket-3dfile-plugin + icon: fa fa-cube + distributed: false + +- name: GeoJSON plugin + description: A plugin for rendering GeoJSON files. + url: https://github.com/onukura/gitbucket-geojson-plugin + icon: fa fa-map-marker + distributed: false diff --git a/index.html b/index.html index 5c0d5c3..86050b8 100644 --- a/index.html +++ b/index.html @@ -5,204 +5,19 @@

This is the community site for all the public GitBucket plugins.

- + +

Available Plugins:

Your plugin is not listed here? You want to move your plugin under the organization? Please open a ticket/issue to reference your demand.

From 11aeb2670bd2e3ff1a86c55925691c56c297835e Mon Sep 17 00:00:00 2001 From: onukura Date: Thu, 9 Jul 2020 01:02:57 +0900 Subject: [PATCH 2/3] update ignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 10d5e10..3366ef4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ _site /.project *.iml *.ipr -*.iws \ No newline at end of file +*.iws +/.jekyll-cache \ No newline at end of file From 316ae9fee73f88cc8778cee55b14b77e887e35bc Mon Sep 17 00:00:00 2001 From: onukura Date: Thu, 9 Jul 2020 01:53:40 +0900 Subject: [PATCH 3/3] fix indent --- _includes/header.html | 2 +- index.html | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/_includes/header.html b/_includes/header.html index 8301d2d..431bf13 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -21,7 +21,7 @@ {% endfor %} -->
- + diff --git a/index.html b/index.html index 86050b8..d93044c 100644 --- a/index.html +++ b/index.html @@ -5,8 +5,6 @@

This is the community site for all the public GitBucket plugins.

- -

Available Plugins: