[PR #4106] [CLOSED] Add simple xlsx file render support #17246

Closed
opened 2025-11-02 12:30:44 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/4106
Author: @lunny
Created: 6/3/2018
Status: Closed

Base: masterHead: lunny/render_xlsx


📝 Commits (2)

  • 5cebd55 add simple xlsx file render support
  • e37414d add new dependency

📊 Changes

34 files changed (+11663 additions, -25 deletions)

View changed files

📝 Gopkg.lock (+6 -1)
📝 main.go (+1 -0)
📝 modules/markup/sanitizer.go (+2 -0)
modules/markup/xlsx/xlsx.go (+84 -0)
📝 routers/repo/view.go (+24 -24)
vendor/github.com/360EntSecGroup-Skylar/excelize/LICENSE (+29 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/cell.go (+589 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/chart.go (+1165 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/col.go (+366 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/comment.go (+222 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/date.go (+119 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/excelize.go (+401 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/file.go (+90 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/lib.go (+178 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/picture.go (+481 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/rows.go (+461 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/shape.go (+419 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/sheet.go (+663 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/sheetpr.go (+139 -0)
vendor/github.com/360EntSecGroup-Skylar/excelize/sheetview.go (+152 -0)

...and 14 more files

📄 Description

partial fix #4104

image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/4106 **Author:** [@lunny](https://github.com/lunny) **Created:** 6/3/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `lunny/render_xlsx` --- ### 📝 Commits (2) - [`5cebd55`](https://github.com/go-gitea/gitea/commit/5cebd55a82f51c05e870dd41c4ff2d8510c92e4a) add simple xlsx file render support - [`e37414d`](https://github.com/go-gitea/gitea/commit/e37414dfd3a4b00f819ce281d170f8acf187ecb4) add new dependency ### 📊 Changes **34 files changed** (+11663 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+6 -1) 📝 `main.go` (+1 -0) 📝 `modules/markup/sanitizer.go` (+2 -0) ➕ `modules/markup/xlsx/xlsx.go` (+84 -0) 📝 `routers/repo/view.go` (+24 -24) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/LICENSE` (+29 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/cell.go` (+589 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/chart.go` (+1165 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/col.go` (+366 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/comment.go` (+222 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/date.go` (+119 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/excelize.go` (+401 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/file.go` (+90 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/lib.go` (+178 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/picture.go` (+481 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/rows.go` (+461 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/shape.go` (+419 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/sheet.go` (+663 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/sheetpr.go` (+139 -0) ➕ `vendor/github.com/360EntSecGroup-Skylar/excelize/sheetview.go` (+152 -0) _...and 14 more files_ </details> ### 📄 Description partial fix #4104 ![image](https://user-images.githubusercontent.com/81045/40883613-fcad803c-6733-11e8-97ea-1dcbfcb15f90.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 12:30:44 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#17246