Gerasimos (Makis) Maropoulos
619a54a9f2
Fix an old issue https://github.com/kataras/iris/issues/355
2016-11-22 16:46:07 +02:00
Gerasimos Maropoulos
8b88aabc05
Update to 5.0.2 - Cache(only) improvements
...
Cache - only improvements
2016-11-15 20:20:29 +02:00
Gerasimos Maropoulos
7b2bcc19cd
Fix url typo as reported here: https://github.com/kataras/iris/issues/531
2016-11-13 11:12:59 +02:00
Gerasimos Maropoulos
5e4db0e56b
Update DONATIONS.md
2016-11-07 15:15:22 +02:00
Gerasimos Maropoulos
504006a7bb
Add a link to the stable version on the Installation section
2016-10-31 21:21:11 +02:00
Gerasimos Maropoulos
32e3cbede1
Prepare for 4.0.0 gopkg.in for-ever package (All 20+ other repositories refactored) including gitbook and examples
2016-10-31 08:19:00 +02:00
Gerasimos Maropoulos
6f22da7622
Nothing special here, remote cache is not ready yet
...
Remote Cache is not inside docs or history because it's not ready for
production yet, however it seems to works fine, but until I test it on
more than 2kk requests I will not add this on history or docs. The
upcoming 24 hours I will upload a relative package which will combine
all cache features to one
2016-10-28 21:55:00 +03:00
Gerasimos Maropoulos
3243432d48
A small improvement to LETSENCRYPT and LETSENCRYPTPROD
...
just an improvement to the `LETSENCRYPT` in order to meet your needs,
it lets you configure the cache file to any directory or to disable it
by passing "" as the second argument.
**OUTLINE**
```
// ListenLETSENCRYPT starts a server listening at the specific nat
address
// using key & certification taken from the letsencrypt.org 's servers
// it's also starts a second 'http' server to redirect all
'http://$ADDR_HOSTNAME:80 ' to the' https://$ADDR '
// it creates a cache file to store the certifications, for performance
reasons, this file by-default is "./letsencrypt.cache"
// if you skip the second parameter then the cache file is
"./letsencrypt.cache"
// if you want to disable cache then simple pass as second argument an
empty emtpy string ""
//
// example:
https://github.com/iris-contrib/examples/blob/master/letsencyrpt/main.go
//
// supports localhost domains for testing,
// NOTE: if you are ready for production then use
`$app.Serve(iris.LETSENCRYPTPROD("mydomain.com"))` instead
ListenLETSENCRYPT(addr string, cacheFileOptional ...string)
```
**OVERVIEW**
```
package main
import "github.com/kataras/iris"
func main() {
iris.Get("/", func(ctx *iris.Context) {
ctx.Write("Hello from SECURE SERVER!")
})
iris.ListenLETSENCRYPT("mydomain.com", "./mycachefile.cache)
}
```
2016-10-28 21:21:57 +03:00
Gerasimos Maropoulos
7eb520fc6b
[2] Continue working on #513
2016-10-28 11:13:12 +03:00
Gerasimos Maropoulos
d32ae1377c
Implement Cache as https://github.com/kataras/iris/issues/513
...
I love coding unique Iris staff!!!
2016-10-27 03:17:09 +03:00
Gerasimos Maropoulos
ee9b153f6d
gofmted -s
2016-10-25 16:49:57 +03:00
Gerasimos Maropoulos
78d145c207
Introduce version 5.0.1
2016-10-25 15:58:18 +03:00
Gerasimos Maropoulos
5c896b39a5
V4 LTS, check the HISTORY.md
2016-10-21 03:06:50 +03:00
Gerasimos Maropoulos
9bbbbf6769
StaticEmbedded: Do the actual work if cache duration passed
...
For StaticEmbedded example take a look at the HISTORY.md file
2016-10-17 04:43:31 +03:00
Gerasimos Maropoulos
1a913d45d4
Implement feature request for embedded assets
...
Example:
https://github.com/iris-contrib/examples/tree/master/static_files_embedded
Read HISTORY.md
2016-10-17 03:37:57 +03:00
Gerasimos Maropoulos
ee5dff96e3
For v4.6.0 - Remove unused testFramework from the previous commit
...
Read HISTORY.md for changes:
https://github.com/kataras/iris/blob/master/HISTORY.md
2016-10-13 17:28:23 +03:00
Gerasimos Maropoulos
157e3cf054
Push version 4.6.0, read HISTORY.md
...
Real commit is the parent, as usual
2016-10-13 17:25:50 +03:00
Gerasimos Maropoulos
122aab4083
Update to 4.6.0, read HISTORY.md
...
https://github.com/kataras/iris/blob/master/HISTORY.md
2016-10-13 17:25:01 +03:00
Gerasimos Maropoulos
f2a7b4e43a
Update to 5.4.3, zero user changes.
2016-10-13 04:02:04 +03:00
Gerasimos Maropoulos
9bce4e846a
Update to 4.5.2
2016-10-11 22:35:12 +03:00
Gerasimos Maropoulos
40b000c20f
Update to 4.5.1
2016-10-11 14:10:19 +03:00
Gerasimos Maropoulos
f66b7e2eab
Update to 4.5.0
2016-10-09 21:09:53 +03:00
Gerasimos Maropoulos
14982891c5
Update to 4.4.9
2016-10-09 07:47:27 +03:00
Gerasimos Maropoulos
a000da35c3
Update to 4.4.8 - Custom decoders for ReadJSON/ReadXML, read HISTORY.md
...
Read: https://github.com/kataras/iris/blob/master/HISTORY.md
2016-10-06 23:19:55 +03:00
Gerasimos Maropoulos
bffd2074eb
Update to 4.4.7
2016-10-05 13:21:40 +03:00
Gerasimos Maropoulos
2090eb4d83
Update to 4.4.6
2016-10-04 01:18:17 +03:00
Gerasimos Maropoulos
f39b6c4bfb
DONATIONS update summary
2016-10-03 17:23:53 +03:00
Gerasimos Maropoulos
fe4b8bd7d2
Fix https://github.com/kataras/iris/issues/455 occurs from last changes
2016-10-02 07:28:36 +03:00
Gerasimos Maropoulos
3970804a37
Update to 4.4.4
2016-10-02 07:21:44 +03:00
Gerasimos Maropoulos
78f3323ce4
Update to 4.4.3
2016-10-02 03:30:37 +03:00
Gerasimos Maropoulos
716b5001da
Fix https://github.com/iris-contrib/middleware/issues/13
2016-09-30 18:48:48 +03:00
Gerasimos Maropoulos
5e7975d97f
Able to change logger's prefix and output after configuration
2016-09-30 14:02:03 +03:00
Gerasimos Maropoulos
c2144a83c6
Update DONATIONS.md summary
2016-09-29 20:17:42 +03:00
Gerasimos Maropoulos
f4b4dd0275
Implementation of https://github.com/kataras/iris/issues/412 , as requested. Read HISTORY for a code snippet
2016-09-29 17:05:22 +03:00
Gerasimos Maropoulos
5c98c5a493
Update to v4.4.0 Implementation of https://github.com/kataras/iris/issues/438
...
Read HISTORY.md
2016-09-27 16:28:38 +03:00
Gerasimos Maropoulos
60947d4f21
Update to 4.3.0, align with latest kataras/go-websocket
2016-09-20 10:15:45 +03:00
Gerasimos Maropoulos
f33053675c
Update to 4.2.9
2016-09-19 01:48:37 +03:00
Gerasimos Maropoulos
7882d736b5
Update to 4.2.8
2016-09-19 01:42:37 +03:00
Gerasimos Maropoulos
d00bd8e595
nothing special here
2016-09-18 21:57:15 +03:00
Gerasimos Maropoulos
4eee3e5f53
Export the funcs: AcquireCtx and ReleaseCtx, see previous commit for more
2016-09-18 07:21:35 +03:00
Gerasimos Maropoulos
131eddb701
Ability to change the whole default router
2016-09-18 06:55:44 +03:00
Gerasimos Maropoulos
27f2ba7be9
Update DONATIONS.md summary & iris updater runs async unless CheckForUpdatesSync is true
2016-09-18 00:50:10 +03:00
Gerasimos Maropoulos
e24d45f66a
Update to 4.2.5
2016-09-16 21:16:48 +03:00
Gerasimos Maropoulos
3915aa4361
cover the default station's upate( https://github.com/kataras/iris/issues/401 ) action
2016-09-16 10:25:56 +03:00
Gerasimos Maropoulos
c818b9d4bf
Implement a version checker, as requested here: https://github.com/kataras/iris/issues/401
...
Read the README.md
2016-09-16 10:02:18 +03:00
Gerasimos Maropoulos
741ecbf2fb
https://github.com/kataras/iris/issues/423
2016-09-15 18:59:27 +03:00
Gerasimos Maropoulos
7ea334812f
Align with the latest go-sessions
2016-09-13 07:54:44 +03:00
Gerasimos Maropoulos
787425e5c5
Donations Summary Update and a small fix
2016-09-12 23:25:17 +03:00
Gerasimos Maropoulos
97431f2650
Replace response engines with serializers, same job but organized better, read README.md , no front-end changes if you used default engines.
2016-09-10 07:23:02 +03:00
Gerasimos Maropoulos
f561b7a90d
Update to 4.2.0 - Configuration changes (big but old way still works, naming changes) & Implement https://github.com/kataras/iris/issues/409
2016-09-09 08:09:03 +03:00
Gerasimos Maropoulos
1a7c79db66
Update to 4.1.7. Logger changes, read HISTORY.md
2016-09-07 07:36:23 +03:00
Gerasimos Maropoulos
a073e442fc
Align sessions with the latest kataras/go-sessions. Now you should update :)
2016-09-05 13:08:32 +03:00
Gerasimos Maropoulos
1537a657c0
Nothing really special, but tests seems to match better with old-style .New() on contextPool although I though that was the same thing...
2016-09-05 12:10:45 +03:00
Gerasimos Maropoulos
482c108839
Remove unused Plugin's custom callbacks.
2016-09-05 03:56:28 +03:00
Gerasimos Maropoulos
27e21d2685
(from previous commit) fix sessions init when UseDatabaseDB before session manager
2016-09-04 22:09:54 +03:00
Gerasimos Maropoulos
b8b52ad46e
Update to 4.1.4. Users & Devs can ignore this update. Read HISTORY.md for more
2016-09-04 22:02:31 +03:00
Gerasimos Maropoulos
c38a9b2459
Developers can ignore this update. Replace the template engines with a new cross-framework package (kataras/go-template)
2016-09-02 06:05:44 +03:00
Gerasimos Maropoulos
6163726bc5
Replace utils/file with go-fs and go-installer, fix previous tests
2016-09-01 06:34:55 +03:00
Gerasimos Maropoulos
1d49188da9
Developers can ignore this update. Use of go-websocket and go-errors. Zero front-end changes. No real improvements.
2016-09-01 06:01:53 +03:00
Gerasimos Maropoulos
2d067ac081
Update to 4.1.1 - Able to set Sessions.CookieLength. Read HISTORY.md
...
https://github.com/kataras/iris/blob/master/HISTORY.md
2016-08-18 03:20:59 +03:00
Gerasimos Maropoulos
bef334868b
Update to 4.1.0, New: SSH Remote control, READ HISTORY.md
...
https://github.com/kataras/iris/blob/master/HISTORY.md
2016-08-17 12:57:54 +03:00
Gerasimos Maropoulos
ca2e46f1c3
Fix multi websocket servers https://github.com/kataras/iris/issues/365
2016-08-16 13:17:26 +03:00
Gerasimos Maropoulos
c6f5406c3b
Better gzip managment, align with https://github.com/kataras/iris/issues/361 . OnError on Parties: https://github.com/kataras/iris/issues/35
2016-08-14 05:44:36 +03:00
Gerasimos Maropoulos
56bd511427
Stable v4.0.0.
...
All releases happens one-per-month, with new features at each stable
release, you had complains so that stops, the next release will may not
be available on next month, but it will take longers, this release
should be the most iris stable version you can get now.
2016-08-09 22:48:09 +03:00
Gerasimos Maropoulos
a4fbf4db4e
Fix https://github.com/kataras/iris/issues/350
2016-08-09 22:12:03 +03:00
Gerasimos Maropoulos
2b364817c3
Nothing special here
...
On websocket:
https://github.com/kataras/iris/issues/340#issuecomment-237612680
2016-08-04 19:49:12 +03:00
Gerasimos Maropoulos
6f83c48a10
Update to v4.0.0-alpha.5 - Letsencrypt integration https://github.com/kataras/iris/issues/220 . 4 Fixes. Read HISTORY.md
...
## 4.0.0-alpha.4 -> 4.0.0-alpha.5
- **NEW FEATURE**: Letsencrypt.org
integration[*](https://github.com/kataras/iris/issues/220 )
- example
[here](https://github.com/iris-contrib/examples/blob/master/letsencrypt/main.go )
- **FIX**: (ListenUNIX adds :80 to
filename)[https://github.com/kataras/iris/issues/321 ]
- **FIX**: (Go-Bindata +
ctx.Render)[https://github.com/kataras/iris/issues/315 ]
- **FIX** (auto-gzip doesn't really compress data in latest
code)[https://github.com/kataras/iris/issues/312 ]
2016-07-29 01:33:20 +03:00
Gerasimos Maropoulos
5f76942b52
no need to duplicate ourselves
2016-07-26 21:53:52 +03:00
Gerasimos Maropoulos
81019aa90d
Nothing special here - set the ability to set a virtual scheme for the server, used inside global tmpl helper funcs
2016-07-26 21:50:14 +03:00
Gerasimos Maropoulos
6f5c83272b
prepend the slash on party.API if the developer forgotten that https://github.com/kataras/iris/issues/293#issuecomment-234966015
2016-07-25 17:18:50 +03:00
Gerasimos Maropoulos
952caa493e
Done/DoneFunc are kept to use for the child route parties also
2016-07-25 16:02:51 +03:00
Gerasimos Maropoulos
f3e216c738
.Done/.DoneFunc as requested, examples: https://github.com/iris-contrib/examples/tree/master/middleware_2
...
https://github.com/iris-contrib/examples/tree/master/middleware_2 &&
https://github.com/iris-contrib/examples/tree/master/middleware_3
2016-07-25 15:53:12 +03:00
Gerasimos Maropoulos
d10273391a
Fix https://github.com/kataras/iris/issues/312
2016-07-25 14:45:12 +03:00
Gerasimos Maropoulos
aa26a89533
Fix https://github.com/kataras/iris/issues/293
2016-07-21 23:08:42 +03:00
Gerasimos Maropoulos
85a2e98ba4
Try # https://github.com/kataras/iris/issues/275
2016-07-21 20:33:00 +03:00
Gerasimos Maropoulos
352b297977
Fix https://github.com/iris-contrib/sessiondb/issues/1
2016-07-20 20:23:54 +03:00
Gerasimos Maropoulos
7ed5ed4519
Iris 4.0.0-alpha.4. Book is finally updated https://kataras.gitbooks.io/iris/content/ also
2016-07-20 06:33:24 +03:00
Gerasimos Maropoulos
69a4f11718
Fix https://github.com/kataras/iris/issues/303
2016-07-19 08:48:57 +03:00
Gerasimos Maropoulos
b93ac27034
Set the session's configuration to a pointer
2016-07-19 06:19:37 +03:00
Gerasimos Maropoulos
d04edb96bb
Add Response Engines on the README, examples updated. book is the next step
2016-07-19 05:43:34 +03:00
Gerasimos Maropoulos
d90cfaea81
Nothing special here, read the HISTORY.md for 4.0.0-alpha.3 release
...
https://github.com/kataras/iris/blob/master/HISTORY.md
2016-07-18 18:16:58 +03:00
Gerasimos Maropoulos
675c0d510c
Update to 4.0.0-alpha.3 - Response Engines, 'inject' the context.JSON/JSONP/Text/Data/Markdown/Render, Read HISTORY.md
...
## 4.0.0-alpha.2 -> 4.0.0-alpha.3
**New**
A **Response Engine** gives you the freedom to create/change the
render/response writer for
- `context.JSON`
- `context.JSONP`
- `context.XML`
- `context.Text`
- `context.Markdown`
- `context.Data`
- `context.Render("my_custom_type",mystructOrData{},
iris.RenderOptions{"gzip":false,"charset":"UTF-8"})`
- `context.MarkdownString`
- `iris.ResponseString(...)`
**Fix**
- https://github.com/kataras/iris/issues/294
**Small changes**
- `iris.Config.Charset`, before alpha.3 was `iris.Config.Rest.Charset` &
`iris.Config.Render.Template.Charset`, but you can override it at
runtime by passinth a map `iris.RenderOptions` on the `context.Render`
call .
- `iris.Config.IsDevelopment` , before alpha.1 was
`iris.Config.Render.Template.IsDevelopment`
**Websockets changes**
No need to import the `github.com/kataras/iris/websocket` to use the
`Connection` iteral, the websocket moved inside `kataras/iris` , now all
exported variables' names have the prefix of `Websocket`, so the old
`websocket.Connection` is now `iris.WebsocketConnection`.
Generally, no other changes on the 'frontend API', for response engines
examples and how you can register your own to add more features on
existing response engines or replace them, look
[here](https://github.com/iris-contrib/response ).
**BAD SIDE**: E-Book is still pointing on the v3 release, but will be
updated soon.
2016-07-18 17:40:42 +03:00
Makis Maropoulos
077984bd60
🌈 sessions were re-written, update to 4.0.0-alpha.2, read HISTORY.md
...
**Sessions were re-written **
- Developers can use more than one 'session database', at the same time,
to store the sessions
- Easy to develop a custom session database (only two functions are
required (Load & Update)), [learn
more](https://github.com/iris-contrib/sessiondb/blob/master/redis/database.go )
- Session databases are located
[here](https://github.com/iris-contrib/sessiondb ), contributions are
welcome
- The only frontend deleted 'thing' is the: **config.Sessions.Provider**
- No need to register a database, the sessions works out-of-the-box
- No frontend/API changes except the
`context.Session().Set/Delete/Clear`, they doesn't return errors
anymore, btw they (errors) were always nil :)
- Examples (master branch) were updated.
```sh
$ go get github.com/iris-contrib/sessiondb/$DATABASE
```
```go
db := $DATABASE.New(configurationHere{})
iris.UseSessionDB(db)
```
> Note: Book is not updated yet, examples are up-to-date as always.
2016-07-15 20:50:36 +03:00
Makis Maropoulos
74aeb081ee
move the template engines manager to the iris-contrib/template
2016-07-13 14:54:56 +03:00
Makis Maropoulos
f7a782b692
Remove deprecated functions
2016-07-13 14:05:32 +03:00
Makis Maropoulos
b99afb2875
Update to v4.0.0-alpha.1
2016-07-13 06:28:09 +03:00
Makis Maropoulos
0995331f78
Fix broken configs from last commit
2016-07-12 19:21:26 +02:00
Makis Maropoulos
e61d1f8c3c
Extend Read & Write BufferSize header and max request body size is 8mb now
2016-07-12 15:40:06 +02:00
Makis Maropoulos
6761d58e53
Final v3
2016-07-08 19:41:50 +02:00
Makis Maropoulos
52099314e6
Prepare for custom child router(s) via plugin(s) for tomorrow
2016-07-07 23:59:00 +02:00
Makis Maropoulos
e3b2c68085
Parse server's addr before use it
2016-07-07 17:17:34 +02:00
Makis Maropoulos
0b8cb29e0c
Update to 3.0.0-pre.release, Read HISTORY.md for new features and changes
...
Yes new features, with Iris you always get them on each version or
revision or non-semantic version
2016-07-07 02:36:48 +02:00
Makis Maropoulos
01914b6c37
Fasthttp seems have little bug with headers, so make a VisitAllCookies function and GetFlashes completed- tests added also
2016-07-07 00:25:50 +02:00
Makis Maropoulos
2cc75817b7
Add support for more than one listening server to one station, virtual and no virtual
2016-07-06 20:24:34 +02:00
Makis Maropoulos
d76b73427b
New: ListenVirtual and ListenTo specific configs - server_test fixed
2016-07-05 15:26:47 +02:00
Makis Maropoulos
afa5b57dc7
Add virtual listen same as NoListen- some changes in order the server_test no need any system modification
2016-07-05 14:29:32 +02:00
Makis Maropoulos
93dc7c7e48
Add some tests
2016-07-05 13:37:10 +02:00
Makis Maropoulos
126e170371
Add a Test framework to make it easier to test Iris app
...
I will commit the tests , mostly to see how this is working, when I
finish with the front-end tests
2016-07-03 16:26:53 +02:00
Makis Maropoulos
c443dc9808
Fix semantic typo for Redirection via Route name
2016-07-03 10:38:03 +02:00
Makis Maropoulos
04cffe5750
Add an Available channel for special usage like testing different Listen methods
2016-07-01 19:06:11 +03:00
Makis Maropoulos
386201f73a
Make iris easier for glide users
...
I am not pushing the /vendor package to this repository because of
possibility to break the framework. See here:
https://github.com/mattfarina/golang-broken-vendor
2016-06-30 17:33:08 +03:00
Makis Maropoulos
66a66fdfa0
Fix https://github.com/kataras/iris/issues/231
2016-06-30 05:58:04 +03:00
Makis Maropoulos
f57d457d39
Finish the feature request https://github.com/kataras/iris/issues/235#issuecomment-229383650
2016-06-29 18:49:09 +03:00
Makis Maropoulos
65184ddaca
Second try for https://github.com/kataras/iris/issues/235#issuecomment-229350945
...
change the ListenToServer
to SecondaryListen which comes before the main listen, they are
non-blocking funcs now
2016-06-29 16:48:44 +03:00
Makis Maropoulos
20cd75139a
Remove debug println
2016-06-29 16:27:48 +03:00
Makis Maropoulos
5b8f4dc1b0
Multiserver listening - Try first for https://github.com/kataras/iris/issues/235 - example added
2016-06-29 16:25:17 +03:00
Makis Maropoulos
aa319fd8e4
Handlebars support - Embrace the feature request https://github.com/kataras/iris/issues/239
2016-06-28 12:50:26 +03:00
Makis Maropoulos
f83b532835
Embrace the weekend- Update to rc.3 | Read the HISTORY.md
2016-06-24 01:34:49 +03:00
Makis Maropoulos
4a446ac1e2
Complete the OAuth/OAuth2 'high level' support
2016-06-22 16:01:31 +03:00
Makis Maropoulos
56f78567a2
New: OAuth2 support via gothic. Example: https://github.com/iris-contrib/gothic/blob/master/example/main.go
...
https://github.com/iris-contrib/gothic/blob/master/example/main.go
2016-06-22 12:45:57 +03:00
Makis Maropoulos
70b5e3d090
New feature: Auth support for social networks, dropbox, amazon and so on. Untested
...
https://github.com/iris-contrib/goth/ is the main package which has been
converted to work with Iris from the ...
https://github.com/markbates/goth/ . Not yet tested on real application.
2016-06-22 04:22:12 +03:00
Makis Maropoulos
e9a4746000
Update to rc.2 | NEW: iris run main.go https://github.com/kataras/iris/issues/192
...
Not tested on linux yet,(I do not have a linux station now). Post an
issue if iris run main.go doesnt works as expected
2016-06-20 11:59:36 +03:00
Makis Maropoulos
5060cf4f5e
linting
2016-06-18 01:11:03 +03:00
Makis Maropoulos
f21faa7cfd
MustUse and MustUseFunc - registers middleware for all parties and subdomains - Subdomains don't care about registering order now
...
1st:
MustUse and MustUseFunc - registers middleware for all parties and
subdomains
2nd:
Subdomains don't care about registering order now
3rd:
iris control plugin realtime logger
2016-06-17 07:18:09 +03:00
Makis Maropoulos
0d482508fc
Add ReadBufferSize and WriteBufferSize to the iris-ws, disable header copy also
2016-06-16 20:08:59 +03:00
Makis Maropoulos
647f0d704c
Thanks goes to all of you you help building this (nice) framework - Update README and add errors on mux entry register
2016-06-16 05:24:01 +03:00
Makis Maropoulos
6a77c2ed22
Embrace the feature request for per-party layout https://github.com/kataras/iris/issues/180
2016-06-14 20:29:01 +03:00
Makis Maropoulos
d837381b16
Update to 3.0.0-rc.1 - Read the HISTORY.md. Relative: #183 #184 #166 #176 #181
...
Read https://github.com/kataras/iris/tree/master/HISTORY.md
2016-06-14 08:45:40 +03:00
Makis Maropoulos
721e9ef66f
add {{ urlpath }} - returns the path without scheme & domain , near to the {{ url }}
2016-06-07 20:29:12 +03:00
Makis Maropoulos
c88f73acbe
Update to v3.0.0-beta.4 - Logger changes book, examples updated
2016-06-06 21:04:38 +03:00
Makis Maropoulos
86694df84e
Add FromAlias to the Mail service and some iriscontrol fixes
2016-06-06 13:25:09 +03:00
Makis Maropoulos
48aaca5bc0
Fix mail send, complete jade support, fix iriscontrol index , replace iriscontrol session to basicauth
2016-06-06 01:37:32 +03:00
Makis Maropoulos
91b45ebfdb
FIx https://github.com/kataras/iris/issues/170
2016-06-05 13:39:45 +03:00
Makis Maropoulos
e40fe0a9f3
Implement the custom {{ url }} to the PongoEngine also
2016-06-05 02:17:17 +03:00
Makis Maropoulos
26ef396959
Add history for v3.0.0.-beta.2. Some fixes to subdomains listening on local 127.0.0.1. Change GetURI to ParseURI
...
Examples and e-book updated also.
2016-06-04 23:07:19 +03:00
Makis Maropoulos
1a433e34d5
Wildcard subdomain full support | v3.0.0-beta.2
...
Update to v3.0.0-beta.2.
Wildcard subdomain e-book section:
https://kataras.gitbooks.io/iris/content/subdomains.html
2016-06-04 16:20:32 +03:00
Makis Maropoulos
a337b4768d
Nothing special: Linting
2016-06-03 05:11:50 +03:00
Makis Maropoulos
679b707751
E-mail through linux command with UseCommand configuration field
2016-06-02 23:29:29 +03:00
Makis Maropoulos
c2e4949b5f
Banner at routine and faster animation
2016-06-02 19:45:13 +03:00
Makis Maropoulos
e5efa6c5d8
Print the banner at PreListen state with a smaller animation
2016-06-02 19:39:32 +03:00
Makis Maropoulos
05b6723b19
Implement a GetURI to get the full uri of a (named) route
2016-06-02 19:22:36 +03:00
Makis Maropoulos
79e984146e
make Route's parse public
2016-06-02 18:32:20 +03:00
Makis Maropoulos
56a9fba34d
https://github.com/kataras/iris/issues/167
2016-06-02 18:27:35 +03:00
Makis Maropoulos
bd13342149
continue at any case on print banner
2016-06-02 05:11:51 +03:00
Makis Maropoulos
28fff6cea9
Fix banner sometimes error because conc
2016-06-02 04:51:17 +03:00
Makis Maropoulos
9e03a529d6
One of the best requests https://github.com/kataras/iris/issues/165
2016-06-02 04:45:03 +03:00
Makis Maropoulos
7f56cdea8c
E-mail sender
2016-06-01 15:29:38 +03:00
Makis Maropoulos
31cbd50fb0
Linting
2016-05-31 11:05:42 +03:00
Makis Maropoulos
c26668a489
Version 3.0.0-beta cleaned
2016-05-30 17:08:09 +03:00