[PR #17] [MERGED] MG-206 Gui to edit local DNS entries #221

Closed
opened 2026-02-26 04:34:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/17
Author: @mageddo
Created: 3/7/2017
Status: Merged
Merged: 3/25/2017
Merged by: @mageddo

Base: v2-golangHead: feature/MG-206


📝 Commits (10+)

  • bfddf01 MG-206 adding web controller
  • 84093cb Merge remote-tracking branch 'origin/v2-golang' into feature/MG-206
  • 91b822c MG-206 adding table
  • 1651203 MG-206 fixing hostname
  • 6cb72eb MG-206 montando handler
  • c2e6b3a MG-206 fixing requests
  • 7b377a4 MG-206 separate requests by file
  • aa0ef62 MG-206 setup ng table in project
  • 171ca29 MG-206 implementing list api
  • 0b6fa3d MG-206 creating save action

📊 Changes

27 files changed (+1814 additions, -59 deletions)

View changed files

📝 README.md (+33 -6)
📝 src/dns.go (+20 -2)
src/github.com/mageddo/dns-proxy-server/controller/env.go (+74 -0)
src/github.com/mageddo/dns-proxy-server/controller/hostname.go (+85 -0)
src/github.com/mageddo/dns-proxy-server/controller/index.go (+20 -0)
src/github.com/mageddo/dns-proxy-server/controller/main.go (+89 -0)
src/github.com/mageddo/dns-proxy-server/controller/statics.go (+19 -0)
📝 src/github.com/mageddo/dns-proxy-server/events/local/LocalEvents.go (+258 -48)
📝 src/github.com/mageddo/dns-proxy-server/proxy/LocalDnsSolver.go (+3 -3)
src/github.com/mageddo/dns-proxy-server/test/maintest.go (+58 -0)
📝 src/github.com/mageddo/dns-proxy-server/utils/utils.go (+36 -0)
static/css/bootstrap-theme.min.css (+6 -0)
static/css/bootstrap.min.css (+6 -0)
static/css/ng-table.min.css (+2 -0)
static/css/style.css (+40 -0)
static/fonts/glyphicons-halflings-regular.eot (+0 -0)
static/fonts/glyphicons-halflings-regular.svg (+288 -0)
static/fonts/glyphicons-halflings-regular.ttf (+0 -0)
static/fonts/glyphicons-halflings-regular.woff (+0 -0)
static/fonts/glyphicons-halflings-regular.woff2 (+0 -0)

...and 7 more files

📄 Description

No description provided


🔄 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/mageddo/dns-proxy-server/pull/17 **Author:** [@mageddo](https://github.com/mageddo) **Created:** 3/7/2017 **Status:** ✅ Merged **Merged:** 3/25/2017 **Merged by:** [@mageddo](https://github.com/mageddo) **Base:** `v2-golang` ← **Head:** `feature/MG-206` --- ### 📝 Commits (10+) - [`bfddf01`](https://github.com/mageddo/dns-proxy-server/commit/bfddf01b5b38914b2091012574efac4a4885f9f2) MG-206 adding web controller - [`84093cb`](https://github.com/mageddo/dns-proxy-server/commit/84093cb6ad2fa5eab4fabfdd21cfa716cae932cc) Merge remote-tracking branch 'origin/v2-golang' into feature/MG-206 - [`91b822c`](https://github.com/mageddo/dns-proxy-server/commit/91b822c1497156115c6ce4041f275e7cef985b47) MG-206 adding table - [`1651203`](https://github.com/mageddo/dns-proxy-server/commit/1651203a7faa912e9df1bd1775b2c9dcbfc5c77c) MG-206 fixing hostname - [`6cb72eb`](https://github.com/mageddo/dns-proxy-server/commit/6cb72ebb7a2f286de5e1dfee49252a8bdff9bbf1) MG-206 montando handler - [`c2e6b3a`](https://github.com/mageddo/dns-proxy-server/commit/c2e6b3a9cbeddf01aa18608bf5e0a4e35d33612f) MG-206 fixing requests - [`7b377a4`](https://github.com/mageddo/dns-proxy-server/commit/7b377a4eb054dd85079d3456845dd76addeebe95) MG-206 separate requests by file - [`aa0ef62`](https://github.com/mageddo/dns-proxy-server/commit/aa0ef62c93f9cc89f57b931c0331e8979b118992) MG-206 setup ng table in project - [`171ca29`](https://github.com/mageddo/dns-proxy-server/commit/171ca298db34154e6089f1fd1cc8e29b55b85a3e) MG-206 implementing list api - [`0b6fa3d`](https://github.com/mageddo/dns-proxy-server/commit/0b6fa3dd97b7e9cdf1e849b4ddbec4ea5f0b77dd) MG-206 creating save action ### 📊 Changes **27 files changed** (+1814 additions, -59 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+33 -6) 📝 `src/dns.go` (+20 -2) ➕ `src/github.com/mageddo/dns-proxy-server/controller/env.go` (+74 -0) ➕ `src/github.com/mageddo/dns-proxy-server/controller/hostname.go` (+85 -0) ➕ `src/github.com/mageddo/dns-proxy-server/controller/index.go` (+20 -0) ➕ `src/github.com/mageddo/dns-proxy-server/controller/main.go` (+89 -0) ➕ `src/github.com/mageddo/dns-proxy-server/controller/statics.go` (+19 -0) 📝 `src/github.com/mageddo/dns-proxy-server/events/local/LocalEvents.go` (+258 -48) 📝 `src/github.com/mageddo/dns-proxy-server/proxy/LocalDnsSolver.go` (+3 -3) ➕ `src/github.com/mageddo/dns-proxy-server/test/maintest.go` (+58 -0) 📝 `src/github.com/mageddo/dns-proxy-server/utils/utils.go` (+36 -0) ➕ `static/css/bootstrap-theme.min.css` (+6 -0) ➕ `static/css/bootstrap.min.css` (+6 -0) ➕ `static/css/ng-table.min.css` (+2 -0) ➕ `static/css/style.css` (+40 -0) ➕ `static/fonts/glyphicons-halflings-regular.eot` (+0 -0) ➕ `static/fonts/glyphicons-halflings-regular.svg` (+288 -0) ➕ `static/fonts/glyphicons-halflings-regular.ttf` (+0 -0) ➕ `static/fonts/glyphicons-halflings-regular.woff` (+0 -0) ➕ `static/fonts/glyphicons-halflings-regular.woff2` (+0 -0) _...and 7 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:34:31 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dns-proxy-server-mageddo#221
No description provided.