0
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 17, 2023 — Jan 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Upgraded mailer to 2.3.0 More... over 10 years ago
Cross building More... over 10 years ago
Merge pull request #116 from dylex/master More... over 10 years ago
Update util and mailer to play 2.3, scala 2.11 More... over 10 years ago
Update README.md More... over 10 years ago
Bumped version of redis plugin More... almost 11 years ago
Small refactor More... almost 11 years ago
Merge pull request #108 from mbseid/master More... almost 11 years ago
Add "debug mode" parameter to CommonsMailer. More... almost 11 years ago
Added a configuration option to connect to a database other than 0. Used the configuration key: redis.database ... Defaults to 0. More... almost 11 years ago
Update mailer sample to add attachment More... almost 11 years ago
Upgrade mailer to 2.3.1 More... almost 11 years ago
Adds email attachment More... almost 11 years ago
Merge pull request #91 from ggrossman/master More... about 11 years ago
Add logging subject for MockMailer More... about 11 years ago
Merge pull request #95 from jmparsons/master More... about 11 years ago
Updated dust readme with link to newer version. More... about 11 years ago
Get rid of the defaultPrefix parameter; instead, just check for RedisResult when serializing. More... over 11 years ago
Remove support for deprecated PlainResult and AsyncResult; only wrap/unwrap SimpleResult. Map futures asynchronously instead of using await. More... over 11 years ago
Merge pull request #59 from Mortimerp9/master More... over 11 years ago
In Play 2.2, the Cached decorator causes Cache.set to be passed an instance of play.api.libs.Iteratee[Array[Byte],SimpleResult] instead of an instance of play.api.mvc.Result. To serialize the cached response into Redis, have to unwrap the iteratee by running it to get its SimpleResult. More... over 11 years ago
Merge pull request #90 from ggrossman/master More... over 11 years ago
Add SerialVersionUID to RedisResult to get consistent serialization More... over 11 years ago
Update for Play 2.2.0 More... over 11 years ago
Remove dependency on Apache Commons IO. More... over 11 years ago
Add support to the RedisPlugin for caching Play! Results. The Result class can not be passed to the Java serializer. So, convert it to a case class that is serializable and serialize that into Redis, and convert back to a SimpleResult when retrieving from the cache. More... over 11 years ago
ObjectInputStream.readObject calls Class.forName, which is incompatible with the dynamic classloader used by Play! in development mode. Use ClassLoaderObjectInputStream from Apache Commons IO to pass the Play! classloader to avoid an exception during deserialization. More... over 11 years ago
The use of "value.getClass.isInstanceOf[]" to determine the class of the object to be serialized is incorrect. It should just be "value.isInstanceOf[]" More... over 11 years ago
Upgraded redis plugin to 2.2.0 More... over 11 years ago
Upgraded mailer to Play 2.2.0 More... over 11 years ago