1. 19 Nov, 2017 6 commits
  2. 15 Nov, 2017 1 commit
  3. 13 Nov, 2017 1 commit
  4. 07 Nov, 2017 2 commits
  5. 31 Oct, 2017 1 commit
  6. 30 Oct, 2017 1 commit
  7. 28 Oct, 2017 1 commit
  8. 27 Oct, 2017 1 commit
  9. 26 Oct, 2017 2 commits
    • mlgd's avatar
      Update for MySQL timezone detection bug · 3332dbe5
      mlgd authored
      Use "DefaultTimeLoc" for "al.TZ" default value
      Don't set TZ on alias when t.Location() is empty
      
      You can set your MySQL server timezone on main.go init function.
      Example :
      orm.DefaultTimeLoc, _ = time.LoadLocation("Europe/Paris")
      3332dbe5
    • Abel's avatar
      Add host env feature. · b9c8c08c
      Abel authored
      b9c8c08c
  10. 23 Oct, 2017 3 commits
  11. 18 Oct, 2017 1 commit
  12. 17 Oct, 2017 3 commits
  13. 16 Oct, 2017 1 commit
  14. 15 Oct, 2017 1 commit
  15. 14 Oct, 2017 3 commits
  16. 11 Oct, 2017 1 commit
  17. 07 Oct, 2017 2 commits
  18. 05 Oct, 2017 1 commit
  19. 26 Sep, 2017 3 commits
    • Silviu Capota-Mera's avatar
    • Silviu Capota-Mera's avatar
      Update app.go · 51a61623
      Silviu Capota-Mera authored
      51a61623
    • Silviu Capota-Mera's avatar
      Add the ability to unregister fixed routes · 5a12b3d0
      Silviu Capota-Mera authored
      Certain web application inherit most of the routes from a base application by using the underscore import 
      (e.g. import _ "myoldapp.com/routers").
      The new application might want to only overwrite certain pages, such as "/about" or "/faq"
      
      The proposed new UnregisterFixedRoute method allows unregistering of the specified paths.
       Usage (replace "GET" with "*" for all methods):
        beego.UnregisterFixedRoute("/yourpreviouspath", "GET")
        beego.Router("/yourpreviouspath", yourControllerAddress, "get:GetNewPage")
      The children paths are left intact.
      For example, /yourpreviouspath/oldchildsubpath should still continue to function in legacy mode.
      5a12b3d0
  20. 13 Sep, 2017 5 commits