1. 25 Nov, 2017 1 commit
  2. 19 Nov, 2017 10 commits
  3. 15 Nov, 2017 1 commit
  4. 13 Nov, 2017 1 commit
  5. 07 Nov, 2017 2 commits
  6. 31 Oct, 2017 1 commit
  7. 30 Oct, 2017 1 commit
  8. 28 Oct, 2017 1 commit
  9. 27 Oct, 2017 1 commit
  10. 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
  11. 23 Oct, 2017 3 commits
  12. 18 Oct, 2017 1 commit
  13. 17 Oct, 2017 3 commits
  14. 16 Oct, 2017 1 commit
  15. 15 Oct, 2017 1 commit
  16. 14 Oct, 2017 3 commits
  17. 11 Oct, 2017 1 commit
  18. 07 Oct, 2017 2 commits
  19. 05 Oct, 2017 1 commit
  20. 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