[nodejs] Re: Started MVC Project simular to cakePHP but more like Vork

2013-01-02 Thread AndDM
Hi, some days ago i've just commit a new version Regards On Sunday, August 19, 2012 8:41:42 PM UTC+2, jmartins wrote: > > > Bradley, > > Please talk with Andrea his have a CMS project see > https://github.com/anddimario/mucontent > > Regards > Joao > > Em quinta-feira, 16 de agosto de 2012 18h16

[nodejs] [ANN] MuContent - CMS (restyling)

2013-01-08 Thread AndDM
Hi, i rewrite my CMS project, maybe someone could have interest on it: https://github.com/anddimario/mucontent Best regards. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are s

[nodejs] Re: [ANN] MuContent - CMS (restyling)

2013-02-12 Thread AndDM
Hi, i wrote multisite implementation. Regards. On Tuesday, January 8, 2013 5:53:16 PM UTC+1, AndDM wrote: > > Hi, i rewrite my CMS project, maybe someone could have interest on it: > https://github.com/anddimario/mucontent > > Best regards. > -- -- Job Board: http://jobs.n

[nodejs] [ANN] BetterAS - Manage your autoscaling on AWS by yourself.

2013-03-08 Thread AndDM
Hi, yesterday, i started a little project to manage AWS autoscaling, maybe someone could have interest on it. Here's some goals: - checks for actual load and free memory on master instance - allow multiple az for instance - check on system, run instance and add to balancer - check the

[nodejs] Flatironjs - Director routing from file

2013-05-28 Thread AndDM
Hi, i'm testing flatironjs director in server side mode and i'm trying to import routing from file like: module.exports = { '/hello': { on: hello } }; I'm using the app.router object but i can't find anything to attach my module route to flatiron routing. Could someone give me some sugges

[nodejs] Async unmemoized undefined

2013-11-11 Thread AndDM
Hi, i've this async code: var compose = [], count = 0; while (count < req.body.service.length) { compose[count] = async.memoize(operation(req.body.service[count], req.body.name, req.body.lang)); count++; } async.series(compose, function (err, results){ ..

Re: [nodejs] [ANN] MuContent

2012-06-19 Thread AndDM
Added some features: maintenance mode, subdomain and submenu manager. First simple blog plugin: https://github.com/anddimario/mucontent-blog On Friday, May 25, 2012 3:04:13 PM UTC+2, AndDM wrote: > > Added a language/content manager. I hope to receive some feedback. > > On Thursday,

[nodejs] Restricted static files

2012-08-30 Thread AndDM
Hi, i'm working on an Express application that has to type of static content (image, css, js ecc): private and public. For public there're not problems, but for private i'm looking for a solutions, these file must be read only by authenticated user. For now i'm trying to get all from filesystem

[nodejs] Re: Restricted static files

2012-08-30 Thread AndDM
roach: > > https://gist.github.com/3524676 > > On Thursday, August 30, 2012 2:10:47 AM UTC-5, AndDM wrote: >> >> Hi, i'm working on an Express application that has to type of static >> content (image, css, js ecc): private and public. >> For public there're

[nodejs] Re: Restricted static files

2012-08-30 Thread AndDM
Hi, excuse me, my fault, i used wrong path, really thanks for you library and your great support. Best regards. On Thursday, August 30, 2012 4:57:37 PM UTC+2, Weltschmerz wrote: > > This works for me: > > https://gist.github.com/3524676 > > On Thursday, August 30, 2012 8:16:

Re: [nodejs] Re: Restricted static files

2012-09-07 Thread AndDM
k and dirty way is to wrap express.static middleware. You can try > something like: > > app.use(function(req, res, next){ >// do authentication >if(authorized){ > express.static("/private")(req, res, next); >} else { > next(); > } > >

[nodejs] Fbgraph duplicate post

2012-10-30 Thread AndDM
Hi, i'm using fbgraph module to connect with facebook, i've this code: // Set index route app.get('/', utils.accesslog, function(req, res){ //Get token from session to allow post graph.setAccessToken(req.session.fb_token); console.log(req.session.fb_token);

[nodejs] Return from a function

2012-03-05 Thread AndDM
Hi, I'm a new nodejs's and javascript's user, i wrote this function for test that get data form a MongoDB's collection: function list() { var serverMongo = new mongodb.Server("127.0.0.1", 27017, {}); new mongodb.Db('mytestnode', serverMongo, {}).open(function (error, client) {

[nodejs] Re: Return from a function

2012-03-06 Thread AndDM
>                 }); >         }); > > > > > > > > } > On Monday, March 5, 2012 11:28:46 AM UTC-5, AndDM wrote: > > > Hi, I'm a new nodejs's and javascript's user, i wrote this function > > for test that get data form a MongoDB's

[nodejs] [ANN] MuContent

2012-04-17 Thread AndDM
Hi, i'm working on a multi site cms with a central proxy for balancing the request on multiple client. The project is under development and it's an premature beta, maybe someone have interest on it. https://code.google.com/p/mucontent/ Regards. -- Job Board: http://jobs.nodejs.org/ Posting gu

Re: [nodejs] [ANN] MuContent

2012-04-17 Thread AndDM
nk it will be great to > have turnkey node-based cms and an ecosystem of modules grow with it. > On Apr 17, 2012 12:57 AM, "AndDM" wrote: > >> Hi, i'm working on a multi site cms with a central proxy for balancing >> the request on multiple client. The project

Re: [nodejs] [ANN] MuContent

2012-04-19 Thread AndDM
ha scritto: > > > 2 Tips: >put your project in Github(more popular and easy to collaborate(fork)) >build a npm install > > Regards > Joao > > Em terça-feira, 17 de abril de 2012 13h16min08s UTC-3, AndDM escreveu: >> >> Hi, i'm glad that other peo

Re: [nodejs] [ANN] MuContent

2012-05-08 Thread AndDM
Hi, i've added a simil alpha for the project on github repository ( https://github.com/anddimario/mucontent ). I hope that someone has interest on it and its development. Regards Il giorno giovedì 19 aprile 2012 10:50:51 UTC+2, AndDM ha scritto: > > Hi, i've added the g

Re: [nodejs] [ANN] MuContent

2012-05-10 Thread AndDM
Added module manager and google group: http://groups.google.com/group/mucontent On Tuesday, May 8, 2012 9:16:41 AM UTC+2, AndDM wrote: > > Hi, i've added a simil alpha for the project on github repository ( > https://github.com/anddimario/mucontent ). I hope that someone has &g

Re: [nodejs] [ANN] MuContent

2012-05-25 Thread AndDM
Added a language/content manager. I hope to receive some feedback. On Thursday, May 10, 2012 6:07:51 PM UTC+2, AndDM wrote: > > Added module manager and google group: > http://groups.google.com/group/mucontent > > On Tuesday, May 8, 2012 9:16:41 AM UTC+2, AndDM wrote: >>

[nodejs] Promise Unhandled rejection null

2015-12-16 Thread AndDM
Hi, i've this code: module.exports.run = function(event, context, cb) { myclass.queryAsync(...) .then(function (results) { if (results.field === "test") { throw "error"; } else { return cb(null, "success"); } }) .catch(function (err) { return cb(err) }); }; f

[nodejs] Re: Promise Unhandled rejection null

2015-12-18 Thread AndDM
; > > > On Thursday, 17 December 2015 04:40:56 UTC+3:30, AndDM wrote: >> >> Hi, i've this code: >> >> module.exports.run = function(event, context, cb) { >> myclass.queryAsync(...) >> .then(function (results) { >>

[nodejs] Re: Promise Unhandled rejection null

2015-12-21 Thread AndDM
Hi, thanks for your reply, i've modified my mocha test with this if: if(err) done(err) else done() And now the error "Unhandled rejection null" not appears and the mocha test not exceeds the timeout. Thanks for your time. Best regards Il giorno venerdì 18 dicembre 2015 18:02:45 UTC+1, Tim Davis h