Liran Tal
619e123c0d
adding the default config/env/local.js instance
2015-05-12 21:42:30 +03:00
Liran Tal
ba3e99f009
implemented feature to address issue 553 - provide a local.js file for local development configuration parameters that will not get committed to remote repositories and will accidentally expose API keys, passwords, and sensitive local configuration
2015-05-12 09:22:04 +03:00
jloveland
3e1d0b5f84
adding ssl back in
2015-05-08 07:01:41 -07:00
Veikko Karsikko
c800c0a18f
Hide email address and remove trailing whitespaces
...
Email address should not be shown to client
2015-05-07 14:26:17 +03:00
Ilan Biala
426ce9e8cc
Merge pull request #531 from pgrodrigues/0.4.0
...
Remove more unused requires
2015-04-23 21:31:59 -04:00
Pedro Rodrigues
b2d76b82e5
Remove more unused requires
2015-04-23 17:51:58 +01:00
Ilan Biala
9a9db2692b
Merge pull request #529 from pgrodrigues/0.4.0
...
Remove unused passport require
2015-04-23 06:46:50 -04:00
Pedro Rodrigues
7f1b46b0d7
Remove unused passport require
2015-04-23 11:09:45 +01:00
Ilan Biala
90dbbb60e6
Merge pull request #522 from simison/patch-4
...
Fix typo in gitignore
2015-04-19 10:40:49 -04:00
Mikael Korpela
b7f24c655c
Fix typo at gitignore
2015-04-17 17:17:36 +03:00
Ilan Biala
25974a64ec
Merge pull request #516 from tcwd/0.4.0
...
Remove duplicate crypto require in modules/users/server/controllers/users/users.password.server.controller.js
2015-04-14 09:47:37 -04:00
Edward Sun
0dbab180a9
Removed duplicate include for crypto
2015-04-13 12:08:30 -04:00
Ilan Biala
8b9a625fe4
Merge pull request #509 from simison/patch-1
...
Fix headers to HTML5 format
2015-04-08 08:28:06 -04:00
Mikael Korpela
238bbe1ad8
Fix headers to HTML5 format
...
Headers were a weird mixture of html5 and xhtml. Now it's pure html5.
Use this as doctype if you really want it to be xhtml, but I don't see why would you want that with Angular:
```html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
```
2015-04-08 11:26:27 +02:00
Liran Tal
bb37d1b09a
Merge pull request #498 from ilanbiala/0.4.0
...
Update connect-mongo to support Mongoose 4.0.0
2015-04-04 10:57:06 +03:00
dotch
74273dabb3
return a 404 for not found api, module and lib routes
2015-04-02 03:30:55 +02:00
Liran Tal
9f9f4506d0
Merge pull request #500 from smythey21/generate-ssl-certs-typo-fix
...
Fixing typo in scripts/generate-ssl-certs.sh
2015-03-29 08:42:48 +03:00
smythey21
8f971555bb
Fixing typo in scripts/generate-ssl-certs.sh
2015-03-28 23:33:31 -04:00
Ilan Biala
dc6f74dec5
Update connect-mongo to support Mongoose 4.0.0
2015-03-28 19:35:54 -04:00
Liran Tal
79ec94662e
Merge pull request #497 from ilanbiala/0.4.0
...
Update dependencies
2015-03-28 12:37:01 +03:00
Ilan Biala
1fa147e372
Update dependencies
2015-03-27 22:26:03 -04:00
Liran Tal
77535bdf2d
Merge pull request #458 from ilanbiala/0.4.0
...
Reset password script
2015-03-27 09:57:02 +03:00
Ilan Biala
e1496dc01c
Reset password script
2015-03-26 22:32:56 -04:00
Ilan Biala
a0495eabbd
Merge pull request #463 from adamwalz/0.4.0
...
Update glob to 5.0.0
2015-03-11 18:51:12 -04:00
Adam Walz
dd0cdfcc40
Bump glob to version 5.0
2015-03-09 15:46:35 -07:00
Ilan Biala
cabb4c4c6a
Merge pull request #453 from reblace/#450
...
Fix hanging gulp because mongoose connections are left open. Fixes #450 .
2015-03-09 12:50:14 -04:00
Liran Tal
d4ce4ff66c
Merge pull request #253 from rmuch/fix-salt-encoding
...
Correctly encode and decode password salt
2015-03-08 14:17:44 +02:00
Liran Tal
61f1a22c91
Merge pull request #376 from rmuch/fix-salt-encoding-merge-0.4.0
...
Correctly encode and decode password salt (0.4.0)
2015-03-08 14:17:33 +02:00
Liran Tal
61d6aba5ac
Merge pull request #457 from lirantal/feat-update-npm-chalk-1.0.0
...
updating package.json with latest stable API version for chalk
2015-03-08 11:23:19 +02:00
Rupert Muchembled
08f1750d94
Correctly encode and decode password salt
...
The user password salt should be encoded with Base64 before being saved
to the database.
The current code adds an unecessary step of converting the result of
crypto.randomBytes() (which already returns a SlowBuffer) to a Base64
string and back again to a Buffer, and misses the final step of
converting the Buffer's bytes back to a Base64 string.
Because of this, the salt stored in the database is garbled. This is
inconvenient when manipulating the data in a terminal or text editor.
When generating the password hash, the crypto.pbkdf2Sync() method
creates a new Buffer directly from the data supplied. Due to the
incorrect encoding of the salt, entropy is lost at this step,
weakening the security of stored passwords against brute force attacks.
2015-03-07 22:10:38 +00:00
Liran Tal
8769a6cef7
updating package.json with latest stable API version for chalk
2015-03-07 22:59:06 +02:00
reblace
6d0363fe70
Merge branch '0.4.0' of https://github.com/meanjs/mean into #450
2015-03-07 12:04:32 -05:00
reblace
9f45e63a20
#450 minor formatting fixes.
2015-03-07 11:21:47 -05:00
reblace
b61d6a7c8b
#450 Fixing unrelated jshint warnings
2015-03-07 11:14:53 -05:00
Ilan Biala
69b0588531
Merge pull request #456 from dotch/0.4.0
...
removed unused gulp-watch dependency
2015-03-06 19:36:06 -05:00
dotch
7876fad50e
removed unused gulp-watch dependency
2015-03-07 01:26:49 +01:00
reblace
ffde5e8067
#450 Use the error reported by mocha. Added some comments explaining
...
what's going on in the mocha task.
2015-03-06 15:17:58 -05:00
reblace
5f57f9d6f2
#450 Now the mocha task synchronously calls mongoose connect and
...
disconnect.
2015-03-06 14:18:33 -05:00
Ilan Biala
6f09033617
Fix Gulp throwing errors
2015-03-05 22:57:42 -05:00
Ilan Biala
71c4d4b555
Cleanly track mongoose connection in test task sequence
2015-03-05 22:32:00 -05:00
Ilan Biala
81c2847571
Properly track DB disconnect
2015-03-05 22:30:35 -05:00
Ilan Biala
6cce3d0952
Gulp now closes the mongoose connection
...
Fixes #450 .
2015-03-05 22:04:43 -05:00
Ilan Biala
e954a20e2f
Disconnect method to close DB connection
2015-03-05 22:01:36 -05:00
Ilan Biala
9e1a6aab66
Merge pull request #445 from dotch/0.4.0
...
update gulp-sass to ensure Node 0.12 compatibility
2015-03-03 18:01:21 -05:00
dotch
75bb6f2c2c
update gulp-sass to ensure node-0.12 compatibility
2015-03-03 23:21:47 +01:00
Ilan Biala
ca814f83c0
Merge pull request #381 from treyhunner/fix-editorconfig
...
Fix .editorconfig file
2015-03-03 16:04:41 -05:00
Trey Hunner
78f28081d1
Add newlines to ends of files
2015-03-02 16:28:25 -08:00
Trey Hunner
7e397e930f
Improve EditorConfig file
...
Changes:
- Fix invalid EditorConfig globs
- Remove unecessary ** in .editorconfig
- Trim trailing whitespace from .editorconfig
- Remove Sublime-specific comment
- Remove Makefile rule from EditorConfig file
- Apply tab indentation to all files
- Add Dockerfile and Procfile rule to .editorconfig
2015-03-02 16:27:56 -08:00
Ilan Biala
68128d650b
Merge pull request #442 from miguelcoba/issue-441
...
Remove unnecessary whitespace, format code, and add comments
2015-03-01 21:20:01 -05:00
Miguel Coba
482ab19c0f
Removes unnecessary whitespace, formats code and add comments
...
Fixes https://github.com/meanjs/mean/issues/441
2015-03-02 01:57:31 +00:00