Barış Soner Uşaklı
9d69224329
up themes fix altenate_logins to be bool
8 years ago
Julian Lam
184dacf1d7
Merge branch 'master' into develop
8 years ago
Julian Lam
c4fbed24f8
Squashed commit of the following:
...
commit 9c86d9b2904e14927cd7e9679b92aec0951d1063
Merge: ebfa63a 5a7f811
Author: Julian Lam <julian@nodebb.org>
Date: Thu Jul 20 08:41:39 2017 -0400
Merge branch 'noscript-login' of https://github.com/An-dz/NodeBB into noscript
commit 5a7f81185e8f9bd7d2d011c3d495988be7e437a3
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Mon Jul 17 23:07:14 2017 -0300
Rename clashing variable 'next'
commit ebfa63a984073a58c17aa408c363cdb03ef89985
Merge: c1801cd f159d0d
Author: Julian Lam <julian@nodebb.org>
Date: Mon Jul 17 16:30:40 2017 -0400
Merge branch 'noscript-logout' of https://github.com/An-dz/NodeBB into noscript
commit c1801cda14e6363491e30b659902e2ae71f7e1f7
Merge: 7a5f9f3 9fd542d
Author: Julian Lam <julian@nodebb.org>
Date: Mon Jul 17 16:30:31 2017 -0400
Merge branch 'noscript-register' of https://github.com/An-dz/NodeBB into noscript
commit 7a5f9f35abc834bb72ddddc9ca07d34f2fde8353
Merge: 44851f9
d37b95c
Author: Julian Lam <julian@nodebb.org>
Date: Mon Jul 17 16:30:10 2017 -0400
Merge branch 'noscript-compose' of https://github.com/An-dz/NodeBB into noscript
commit f159d0d9ef1b7f600e830a96fdb4b9c87c79bb4a
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Thu Jul 6 12:16:38 2017 -0300
Prevent form submit
Required for theme change
commit d37b95cb71d32d4483190609798e244c331db165
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Thu Jul 6 01:49:52 2017 -0300
Prevent link action with scripts
Required for the theme change that changes the buttons to `a` tags.
commit 9fd542d8970b7d1a4126f4edc4b44eab7d708fb0
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Wed Jul 5 19:57:56 2017 -0300
Fix tests
commit cdad5bf8c2891ad76f7441fd4d8a74b058a14e6d
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Wed Jul 5 19:09:17 2017 -0300
Update error handling
commit 4ff11cd136a4fb98483f837e2cebc741380dfe76
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Wed Jul 5 17:29:08 2017 -0300
Remove async waterfall
commit df01d44e821a70c984b89e9585a325c3e02c6e37
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Wed Jul 5 16:59:43 2017 -0300
Set noscript compose as noscript at start
commit 4bcc380da72239b8315cc849a77a3036e06e4a12
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Wed Jul 5 16:59:12 2017 -0300
Remove last useless next
commit b5eac6fea11e209934c0648a7e75ad07a2167123
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sun Jul 2 18:35:08 2017 -0300
Last function requires no next
commit 20a5cce6e6e32a454c304c448383707ec44c75a8
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sun Jul 2 18:06:58 2017 -0300
Remove more useless next calls
commit 85ee22a79bcbbb1995106f43d4c74d6ba9206cab
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sun Jul 2 17:46:07 2017 -0300
Remove useless next calls
commit 7d984c47ad24faac1fe537dee4a5a7d697e8634c
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sun Jul 2 15:45:31 2017 -0300
Support old themes
commit 4a09dfbd08253115c342a9e829c4e6940cecb8cc
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sun Jul 2 15:37:23 2017 -0300
Moved all error handling into helpers function
commit 391aa6e67ef9ab67304005e14ac0633cdb630713
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Thu Jun 8 15:37:37 2017 -0300
ESLint - Fix mixed conditionals
commit 80ccc6fd581d791f31e7ab62de8de611837bfc3c
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sat Jun 3 18:08:15 2017 -0300
Compose without scripts
commit 2aca811256721238ca0cede4954213d369009885
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sat Jun 3 18:00:44 2017 -0300
Register without scripts
commit 097bb51577fb26f8e22f86dc274cb670ab606a8a
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sat Jun 3 16:42:15 2017 -0300
Logout without scripts
commit d497e08109891079656fee1c145043a9c0e55f2e
Author: André Zanghelini <an_dz@simutrans-forum>
Date: Sat Jun 3 16:27:10 2017 -0300
Login without script
8 years ago
Barış Soner Uşaklı
eecc680761
style
8 years ago
dbolack-ab
c1452db0ba
Adds the filter:uploadStored hook which fires after the file is saved… ( #5798 )
...
* Adds the filter:uploadStored hook which fires after the file is saved in the async waterfall and passes:
var storedFile = {
url: nconf.get('relative_path') + upload.url,
path: upload.path,
name: uploadedFile.name,
}
plugins.fireHook( 'filter:uploadStored', { uploadedFile: uploadedFile, storedFile: storedFile } );
* Corrections per PR. Should match style guide.
* Correction attempts take 2.
Per:
/home/travis/build/NodeBB/NodeBB/src/controllers/uploads.js
234:5 error Missing semicolon semi
235:3 error Expected indentation of 3 tabs but found 2 indent
235:19 error There should be no spaces inside this paren space-in-parens
235:105 error There should be no spaces inside this paren space-in-parens
236:3 error Expected indentation of 3 tabs but found 2 indent
* next() shouldn't fire twice, but I see no documentation suggesting that the paramaters will fire correctly.
Previous comments imply it is preferred to have fireHook fire fof the callback rather than having it happen next, so I'm wrapping next in an anonymous function to ensure it passes the parameters.
If this is not the preferred method, please provide a thorough correction.
* Meh. Figuring out this style requirement is so hit and miss.
* Corrected for proper callback? technique.
Might blow up on style. Will watch.
8 years ago
Julian Lam
c40b11aa6e
updated site upload logic so that site logo is resized for email header, implemented site logo in email header
8 years ago
Barış Soner Uşaklı
cc4f4e7282
style changes
8 years ago
Baris Usakli
ea29e3e250
simpler call to validateFilters
8 years ago
Baris Usakli
30199f921e
Merge remote-tracking branch 'refs/remotes/origin/master' into develop
8 years ago
Julian Lam
701ba73883
updated homepage route logic so that it is all contained in the local function (and plugin hook receives all entries, including custom) @barisusakli
8 years ago
Julian Lam
c2f1d254cc
Merge branch 'master' into develop
8 years ago
Baris Usakli
e036e26238
closes #5813
8 years ago
Barış Soner Uşaklı
923bd86662
Widgets refactor ( #5817 )
...
* widgets refactor
render widgets server side
widgets can use all the data the template can use
* fix tests
8 years ago
Baris Usakli
e0de922ede
Revert "widgets refactor"
...
This reverts commit 9e94edb5aa
.
8 years ago
Baris Usakli
9e94edb5aa
widgets refactor
...
render widgets server side
widgets can use all the data the template can use
8 years ago
Julian Lam
b7e8ecc6d3
updated mentions version and changed topics filter to take its translation from global hash instead
8 years ago
Barış Soner Uşaklı
b807d3750c
encodeURI redirect url
8 years ago
Julian Lam
3f2c183cbd
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
6cb8440715
Fix #5793
...
Use a custom header instead
8 years ago
Julian Lam
8a7950bfd5
add new hook to allow plugins to modify list of valid filters
8 years ago
Barış Soner Uşaklı
e6cbaf6d85
Merge remote-tracking branch 'refs/remotes/origin/master' into develop
8 years ago
Baris Usakli
1f5b3ba636
closes #5771
8 years ago
Barış Soner Uşaklı
0f234601f1
style changes
8 years ago
Barış Soner Uşaklı
78005d6124
show old groups first
8 years ago
Baris Usakli
1b0c6741f8
Merge remote-tracking branch 'refs/remotes/origin/master' into develop
8 years ago
Baris Usakli
77994dcf69
fix link tag url
8 years ago
Baris Usakli
ef9e656f34
closes #5740
...
added token to topic page as well
check privilege even if token is provided
tests
8 years ago
psychobunny
228e9ab8e3
proof of concept for #5740
8 years ago
Barış Soner Uşaklı
7fe9366103
Merge remote-tracking branch 'refs/remotes/origin/master' into develop
8 years ago
Ben Lubar
07982a3fa2
Fix uploading a file with no extension resulting in invalid-extension even if the file extension list is blank (allow all)
8 years ago
Barış Soner Uşaklı
d9e84b1db8
Merge remote-tracking branch 'refs/remotes/origin/master' into develop
8 years ago
Barış Soner Uşaklı
b13ed26587
closes #5755
8 years ago
Baris Usakli
982184740d
small refactor of category controller
8 years ago
Baris Usakli
037a0e5239
closes #5742
...
also fix reverse infinite scroll when sorting is changed
8 years ago
Peter Jaszkowiak
44e55d2a98
Less synchronous stuffs
8 years ago
Baris Usakli
da8b1b605c
#5723
8 years ago
psychobunny
88d5f97280
closes #5717
8 years ago
Baris Usakli
d7684b042f
fix tab
8 years ago
Baris Usakli
1fa52267d4
Merge remote-tracking branch 'origin/master'
...
# Conflicts:
# public/src/admin/manage/category.js
8 years ago
Baris Usakli
de5fe25e57
closes #5715
8 years ago
Barış Soner Uşaklı
59b1d8fbae
Merge pull request #5710 from NodeBB/_lodash
...
Switch from underscore to lodash
8 years ago
Baris Usakli
dc0971c122
up composer
8 years ago
Barış Soner Uşaklı
9664033b73
add memory usage to info page
8 years ago
Barış Soner Uşaklı
08aaabd33c
closes #5642
8 years ago
Peter Jaszkowiak
3c2d4fe649
Switch from underscore to lodash
8 years ago
Barış Soner Uşaklı
bcc566fb68
remove unnecessary checks
8 years ago
Baris Usakli
11d9410229
fix test and image normalize test
8 years ago
Baris Usakli
081ac6535c
style change
8 years ago
Baris Usakli
9efa46c65a
more account tests
8 years ago
Baris Usakli
69b5bb39ec
unread tests
8 years ago
Barış Soner Uşaklı
79a48cec5f
controllers/category tests
8 years ago
Baris Usakli
062bced3dd
cleanup and tests
8 years ago
Baris Usakli
b9b02a1fab
math.ceil pageCount
8 years ago
Barış Soner Uşaklı
b0dd1ad4d7
admin navigation test
8 years ago
Barış Soner Uşaklı
c9d502320f
file.delete method
8 years ago
Barış Soner Uşaklı
b29745aa44
more auth tests
8 years ago
Barış Soner Uşaklı
b8cc67dfff
social tests
8 years ago
Barış Soner Uşaklı
a8c649cca6
check data.uid
8 years ago
Barış Soner Uşaklı
e4714a0c58
more auth tests
8 years ago
Barış Soner Uşaklı
9625f89665
remove for loop
8 years ago
Barış Soner Uşaklı
1e83d33283
tests for login
8 years ago
Barış Soner Uşaklı
a4ba88dc60
more feed tests
8 years ago
Barış Soner Uşaklı
77894915eb
closes #5684
8 years ago
Barış Soner Uşaklı
12f73b7d6f
closes #5682
8 years ago
Barış Soner Uşaklı
01e2263c01
more tests
8 years ago
Julian Lam
e938d75efc
closes #5676
8 years ago
Ben Lubar
572d7a1e8c
Fix uploads of files with no extension failing when there is no restriction on file extensions.
8 years ago
Barış Soner Uşaklı
608a7d120c
error handler tests
8 years ago
Barış Soner Uşaklı
73f31640d7
more tests
8 years ago
Barış Soner Uşaklı
873801e9f3
fix test on nodev4 remove console.logs
8 years ago
Barış Soner Uşaklı
90018a7aab
fix lint
8 years ago
Barış Soner Uşaklı
66dee3452f
more tests for admin uploads
8 years ago
Barış Soner Uşaklı
bf78786a68
flag controller tests
8 years ago
Barış Soner Uşaklı
3a1eba2537
merge
8 years ago
Barış Soner Uşaklı
6c224c3800
fix cover:url logic
8 years ago
Barış Soner Uşaklı
5b69598f15
Merge pull request #5632 from NodeBB/fix-5631
...
Fix #5631
8 years ago
psychobunny
41b4ef859f
add ban messaging when logged in
8 years ago
Barış Soner Uşaklı
e7d076a084
closes #5634
8 years ago
Barış Soner Uşaklı
13a04123e0
closes #5641
8 years ago
Barış Soner Uşaklı
f3c4d2ebe3
closes #5636
8 years ago
Barış Soner Uşaklı
59d0815073
closes #5637
8 years ago
Barış Soner Uşaklı
13f5d29cb9
eslint
8 years ago
Barış Soner Uşaklı
af6cde5534
show how many nodes responded
8 years ago
Peter Jaszkowiak
2a0cb3b9ee
Fix profile covers not working with subfolders
...
Remove relative_path from the paths saved in the database so they're more portable
8 years ago
Julian Lam
7abd80490b
Merge pull request #5626 from NodeBB/reject-nonaudio-uploads
...
Reject non-audio upload requests to the sounds route
8 years ago
Barış Soner Uşaklı
c45c4a5fdb
on login display invalid-login-credentials
8 years ago
Peter Jaszkowiak
1ac14a466e
Reject non-audio upload requests to the sounds route
8 years ago
barisusakli
33e8ecc1f4
closes #5404
8 years ago
barisusakli
fa13e9acc0
closes #5621
8 years ago
Peter Jaszkowiak
c7929ec7d8
Add option for disabling language autodetection
8 years ago
barisusakli
e3205bcfad
merge
8 years ago
Peter Jaszkowiak
0fe10f5e86
Escape topic titles at the source, deduplicate
8 years ago
barisusakli
e63559b6fd
closes #5484
8 years ago
Julian Lam
a141835cf8
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
1fb48ef7a7
Fix #5592 ( #5593 )
...
* Fix #5592
Escape translation tokens in topic titles, descriptions, profile about, and post contents
* Fix tests
8 years ago
Julian Lam
d18cfced96
Merge remote-tracking branch 'origin/master' into develop
8 years ago
Julian Lam
a62a4e698f
Merge pull request #5578 from NodeBB/utils-translator-require
...
Make utils and translator easier to require
8 years ago
Peter Jaszkowiak
484a800327
Merge branch master into develop
8 years ago
Peter Jaszkowiak
1ed571189c
Make utils and translator easier to require
...
Move utils.walk to file.walk, backwards compatible
8 years ago
pichalite
d4de345e87
syntax
8 years ago
pichalite
4c89497cc4
Closes #5521
8 years ago
André Zanghelini
03d432182b
Fix postcount is expected to be Number ( #5567 )
8 years ago
Peter Jaszkowiak
81696dd24a
Fxi #5561
8 years ago
Julian Lam
0e157d93ea
Merge remote-tracking branch 'origin/master' into develop
8 years ago
Julian Lam
a49e647de3
fixes #5545 again
8 years ago
Julian Lam
b649eb95f8
Merge remote-tracking branch 'origin/master' into develop
8 years ago
Julian Lam
31b6d47f88
fixes #5545
8 years ago
Barış Soner Uşaklı
fe27d40ff6
closes #5542
8 years ago
barisusakli
5a2ff8ed0a
closes #5527
8 years ago
Julian Lam
860999fa6c
Merge remote-tracking branch 'origin/master' into develop
8 years ago
barisusakli
3b41c40b93
refactor deleter code to use unixtimestamp
8 years ago
psychobunny
f2eb4b8083
closes #5439
8 years ago
psychobunny
b3f8428691
closes #5510
8 years ago
barisusakli
32d37465fb
limit size of select
8 years ago
barisusakli
47af3eb7e5
use the real count
8 years ago
Julian Lam
793555a344
Merge branch 'master' into develop
8 years ago
Julian Lam
1102ca8ebb
fix issue where an auto-redirect to SSO on login route was failing if invoked via API call (ajaxify)
8 years ago
barisusakli
b7e6104bbc
closes #5511
8 years ago
barisusakli
992e3128bd
closes #5499
8 years ago
RoiEX
33e474759b
Change var names
8 years ago
RoiEX
6420e22453
Remove uneccessary curly brackets
8 years ago
RoiEX
fcda832052
Add spaces
8 years ago
RoiEX
0f9530bbc0
Shrink JSON fix
8 years ago
RoiEX
f1b4a9b786
Shrink JSON
8 years ago
RoiEX
186c1f40e9
Refactor Code
8 years ago
Julian Lam
af2d9fb85b
Merge branch 'master' into develop
8 years ago
barisusakli
e85e35cf0c
closes #5497
8 years ago
barisusakli
a3b4c83e8b
remove description from categories
...
it gets added in src/meta/tags
8 years ago
barisusakli
ea871384d8
remove fallbacks
8 years ago
barisusakli
3b8d14bf12
closes #5493
8 years ago
barisusakli
54c951cc81
fix tests
8 years ago
barisusakli
4369a6d290
more user tests
8 years ago
barisusakli
bce1208e2f
make uploadFile public
8 years ago
barisusakli
b1b87d339f
more refactors
8 years ago
barisusakli
bc8d297377
move out error and 404 controllers
8 years ago
barisusakli
2188036148
controllers/users refactor
8 years ago
barisusakli
566ff95d3c
call methods directly
8 years ago
barisusakli
3e396a8553
sitemap refactor
8 years ago
Julian Lam
45c479a101
Merge branch 'master' into develop
8 years ago
barisusakli
2e47cf4db3
intersititial test
8 years ago
barisusakli
bb1045c5a0
remove unused require
8 years ago
barisusakli
feb359f7d4
closes #5479
8 years ago
Julian Lam
58cbf44143
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
007051c14c
Fix #5476
8 years ago
Julian Lam
b1ceec7571
Merge remote-tracking branch 'origin/master' into develop
8 years ago
barisusakli
0e7740af32
fix tests for subfolder installs
8 years ago
Julian Lam
6e7b505ea7
more linting
8 years ago
Julian Lam
ddea9f534e
running eslint again
8 years ago
Julian Lam
72e77772db
Merge branch 'master' into develop
8 years ago
Julian Lam
e71bd7a27f
Merge branch 'master' into styleguide
8 years ago
barisusakli
04b07e292c
thumb tests
8 years ago
barisusakli
ca1fe557c7
topic controller tests
8 years ago
barisusakli
3a87f2566a
more group tests
8 years ago
Peter Jaszkowiak
dd2b930824
Resolve merge conflicts, minify only `.js` files
8 years ago
Peter Jaszkowiak
ee9d7584e4
Fix test, misc
8 years ago
Julian Lam
8154e29ad5
Merge branch 'master' into develop
8 years ago
Julian Lam
672d7352bb
Merge branch 'master' into develop
8 years ago
psychobunny
458cbfd603
show dashboard notice if forum is running in dev mode
8 years ago
Julian Lam
e887dda37a
Merge pull request #5461 from pichalite/image-dimension
...
Use ACP profile image dimension setting in cropper
8 years ago
Julian Lam
e427f1663e
Merge pull request #5456 from NodeBB/sounds-refactor
...
Sound system improvements
8 years ago
Julian Lam
62e0f5f883
Merge remote-tracking branch 'origin/master' into develop
8 years ago
pichalite
a99572fc48
Use ACP profile image dimension setting in cropper
8 years ago
Peter Jaszkowiak
23540afaeb
Resolve merge conflicts
8 years ago
Peter Jaszkowiak
4bb49a7171
ESlint no-unused-vars
8 years ago
Peter Jaszkowiak
c18808fdeb
ESlint no-useless-concat, no-mixed-spaces-and-tabs
8 years ago
Peter Jaszkowiak
144fa8698c
Eslint no-lonely-if
8 years ago
Peter Jaszkowiak
57f89663aa
ESlint radix
8 years ago
Peter Jaszkowiak
09e868ce5f
ESlint no-useless-escape, no-else-return
8 years ago
Peter Jaszkowiak
a0a50677da
ESlint n-loop-func, yoda
8 years ago
Peter Jaszkowiak
32dc7c23ea
ESlint guard-for-in, no-nested-ternary
...
and operator-linebreak
8 years ago
Peter Jaszkowiak
c4bdb72941
ESlint no-unneeded-ternary
...
and no-extend-native, no-sequences
8 years ago
Peter Jaszkowiak
896c8c7343
ESlint object-curly-spacing
8 years ago
Peter Jaszkowiak
1493afee2a
ESlint indent
8 years ago
Peter Jaszkowiak
3b0dd2d1ef
ESlint padded-blocks
8 years ago
Peter Jaszkowiak
feb8405f95
ESlint eol-last
8 years ago
Peter Jaszkowiak
a038c66549
ESlint quotes
8 years ago
Peter Jaszkowiak
604358ecc4
ESlint keyword-spacing, no-multi-spaces
8 years ago
Peter Jaszkowiak
a5a3f3089a
ESlint no-mixed-operators
8 years ago
Peter Jaszkowiak
2e031f3759
ESlint comma-spacing
8 years ago
Peter Jaszkowiak
277a7fb8b4
ESlint key-spacing, no-trailing-spaces
8 years ago
Peter Jaszkowiak
b1b486f729
ESlint quote-props
8 years ago
Peter Jaszkowiak
3361a72725
ESlint no-plusplus
...
and no-empty, space-unary-ops
8 years ago
Peter Jaszkowiak
3d6bfa47c5
ESlint no-useless-return
8 years ago
Peter Jaszkowiak
52f2028206
ESlint no-multiple-empty-lines
8 years ago
Peter Jaszkowiak
2ba46808a1
ESlint one-var, fix comma-dangle
8 years ago
Peter Jaszkowiak
bc1d70c126
ESlint comma-dangle
8 years ago
pichalite
7f4e4c8e2e
Fix styling
8 years ago
pichalite
4d755bad0c
Use typeToExtension from file.js
8 years ago
Peter Jaszkowiak
9f15008247
Address review issues
8 years ago
Julian Lam
f7f5b2c8d9
Merge remote-tracking branch 'origin/master' into develop
8 years ago
barisusakli
e009ce5609
closes #5443
8 years ago
Peter Jaszkowiak
c75391f9f5
Sound system improvements
...
- Fix sound ACP uploads
- Display soundpack names with sound files
- Soundpacks can have sounds with identical names
- Link sounds during build step
- Generate map of sound name to file name during build step
- Change how soundpacks work. It's now done via a field in plugin.json
8 years ago
Julian Lam
7f124a3ccf
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
8f27d7810b
Ajaxify improvement, `/assets/uploads`
8 years ago
Julian Lam
7ba111acdd
Merge pull request #5420 from NodeBB/assets-route
...
/assets/uploads
8 years ago
Barış Soner Uşaklı
a3e327301b
update regex
8 years ago
barisusakli
b1511a1870
change client route
8 years ago
Peter Jaszkowiak
aaacdb8413
Fix #5416 , uploads path config setting
...
- Finish moving uploads route to `/assets/uploads`
- Remove `upload_url` config setting, it was broken
8 years ago
barisusakli
387110fecc
closes #5315
8 years ago
Julian Lam
8a0a74d95e
Merge remote-tracking branch 'origin/master' into develop
8 years ago
Julian Lam
bfd16d188e
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
360a35d0a6
Resolve merge conflicts
8 years ago
barisusakli
51981ffb99
get extention from content type
8 years ago
Peter Jaszkowiak
c14a31644b
Merge branch 'master' into 'develop'
8 years ago
Stephan
0c6679ca9c
Update dashboard.js
8 years ago
Julian Lam
debffe385f
closes #5316
8 years ago
barisusakli
366ab103a4
closes #5405
8 years ago
barisusakli
3fb7f9fce5
closes #5398
8 years ago
barisusakli
2a33991f0d
read usercount from global object
8 years ago
Stephan
af4df8e197
added missing translation
...
added missing language string in dashboard.js
8 years ago
Julian Lam
73879b824c
Merge branch 'master' into develop
8 years ago
Julian Lam
339845ff6b
Merge pull request #5366 from pitaj/build-translations
...
Compile translations in the build step
8 years ago
Julian Lam
48909e753c
Merge branch 'master' into develop
8 years ago
Julian Lam
06a77143bd
additional logging and removing interstitial session data if plugins don't return interstitials
8 years ago
Peter Jaszkowiak
8c86b2e32c
Build pipeline improvements
...
- Refactor meta/css
- `fs.link` usage consolidated to `file.link`
- rimraf built modules directory to fix error
- Remove `local-assets` flag
8 years ago
Peter Jaszkowiak
05b68391dd
Use `/assets` for client assets
...
- Route `/assets` -> `build/public`, falling back on `public`
- Moved destinations for `nodebb.min.js`, `acp.min.js`, `admin.css`, `stylesheet.css`, `templates`, and `sounds` to `build/public`
- r.js modules previously routed through express are now symlinked into `public/build/src/modules`
- minfiles no longer served from a memory cache
- use config `views_dir` setting everywhere template directory is used
- fix cache buster `v=v=`
8 years ago
Peter Jaszkowiak
2f07c18c5a
All hail the glorious translation prebuilding
8 years ago
Julian Lam
d29361f4c9
added additional visibility masks for profile menu hook, also added isPrivileged user method, closes #5306
8 years ago
Julian Lam
43056a4bfa
Merge branch 'master' into develop
8 years ago
barisusakli
c0a8fd7395
allow multiple tags
8 years ago
Julian Lam
81ca10d72e
Merge pull request #5332 from pitaj/async@2
...
async v2 upgrade
8 years ago
Julian Lam
3861b2dd80
Merge remote-tracking branch 'origin/master' into develop
8 years ago
Julian Lam
541f51e947
restrict flags interface so that moderators only see flags from cids they can actually moderate
8 years ago
barisusakli
6b2dde02b5
closes #5333
8 years ago
Peter Jaszkowiak
11f7cc4163
Pass tests
8 years ago
Julian Lam
db20df0110
Merge branch 'master' into develop
8 years ago
barisusakli
190b3759a0
fix tests
8 years ago
Julian Lam
c640bdf2b9
Merge branch 'master' into develop
8 years ago
Peter Jaszkowiak
38eba81933
ACP menu and title translations
8 years ago
barisusakli
1fed01fe43
ability to filter search by tags
8 years ago
Julian Lam
76bcc1c327
Merge branch 'flagging-refactor' into develop
8 years ago
Julian Lam
ad633aad45
additional tests and proper handling for purged flag targets, #5232
8 years ago
Barış Soner Uşaklı
4ff3d06f90
escape labelColor, icon, cover:position, validate toPid
8 years ago
Julian Lam
0927d54c98
ability to filter flags by cid, #5232 , more tests
8 years ago
Julian Lam
e6768ab572
some more fixes to flags, simplifying qs manipulation in flags search
...
re: #5232
8 years ago
Julian Lam
451c2838d0
Merge remote-tracking branch 'origin/master' into flagging-refactor
8 years ago
barisusakli
e86708cb0c
add cid to widgets.render
...
init date pickers in widgets ACP
8 years ago
Julian Lam
ebc9abd773
upgrade script and graphs for #5232
8 years ago
Julian Lam
31996f9377
added page titles
8 years ago
Julian Lam
5dd892bd01
a bunch of changes here... allowing user profiles to be flagged, #5232
8 years ago
Julian Lam
9f9051026b
more work on #5232
8 years ago
Julian Lam
88958049eb
added some more filters, and appending event to history on flag creation
...
issue #5232
8 years ago
Julian Lam
8e1d441e20
Added some quick filters, #5232
8 years ago
Julian Lam
b7217e8841
Merge remote-tracking branch 'origin/master' into flagging-refactor
8 years ago
barisusakli
cbd6853ccb
notif controller test
8 years ago
Julian Lam
753d4b0275
wrapped up basic functionality of list and detail for flags, filter support. #5232
8 years ago
Julian Lam
dde3d2b135
Merge remote-tracking branch 'origin/master' into flagging-refactor
8 years ago
Julian Lam
33ff5e09bb
updated revoke session middleware to allow self or admin or global mod invocation, tweaked tests a bit
8 years ago
barisusakli
4b6e4f085d
more tests
...
group cover upload tests
registration approval queue tests
8 years ago
Julian Lam
c5b9c1e2a4
Merge remote-tracking branch 'origin/master' into flagging-refactor
8 years ago
Julian Lam
c5c2d27180
flag assignees, state, notes WIP, #5232
8 years ago
barisusakli
02aadf79b5
account/posts controller tests
8 years ago
barisusakli
4cb48c46ab
closes #5242
8 years ago
Julian Lam
0bf82c0e47
Merge branch 'master' into flagging-refactor
8 years ago
barisusakli
d8a1e98a43
fix permalinks on pagination
8 years ago
Julian Lam
9f7c4befea
omg tests ( #5232 ), and .create returns flag data now
8 years ago
Julian Lam
98a104564b
some light refactoring, details API ( #5232 )
8 years ago
Julian Lam
640df0379e
flag list page ( #5232 )
8 years ago
Julian Lam
1aa70c57eb
WIP
8 years ago
barisusakli
4b815449f1
closes #5234
8 years ago
Peter Jaszkowiak
c5237443cd
Standard language codes ( #5218 )
...
* Use standard language codes. Fallback for plugins.
* Fix transifex config
* Tab vs space here for some reason
* Remove redundancies
* config.relative_path instead of allcaps
* added upgrade script for existing users' accounts
8 years ago
Julian Lam
cafbdfd83e
fixes #5226
8 years ago
barisusakli
b49af0a135
#5223
...
adjust pagination so each page shows `postsPerPage` posts
8 years ago
barisusakli
2c77a88ba4
closes #5220
8 years ago
barisusakli
dada858565
add canReply to messages
8 years ago
Barış Soner Uşaklı
42aa4fb67b
Merge pull request #5212 from stuwil/fix-relative-path-login-redirect
...
Replace only base URL in login return URL, fixes #5205
8 years ago
Julian Lam
b1f23c8c4b
read req.uid instead of req.user.uid in admin groups list
8 years ago
Stuart Williams
f92758c764
Replace only base URL in login redirect URL, fixes #5205
8 years ago
barisusakli
2476ab3684
closes #5202
8 years ago
Julian Lam
2f2eb1457d
auto-redirect to SSO flow should work in subfolders too
8 years ago
Julian Lam
ede7a71db7
Fixes #5186
...
On socket.io connection, all clients join a room pertaining to
their express session id. We use this room to keep track of any
sessions in different browser windows (but the same cookie jar),
so if a login/logout occurs, we can throw a session mismatch
modal.
This room can also be used to emit messages across windows/tabs...
8 years ago
Julian Lam
7d523fae0f
closes #5200
8 years ago
Julian Lam
e6c9c89342
closes #5197
8 years ago
barisusakli
1e543dd394
fix profile views on redis
8 years ago
barisusakli
8294fc90e3
closes #5084
8 years ago
Barış Soner Uşaklı
b38a10f96a
add pagination to user profile
8 years ago
barisusakli
f30b694545
gitInfo error doesnt block page
8 years ago
barisusakli
5cfe379841
fix recent for inf scroll
8 years ago
barisusakli
556dfa51d9
fix pagination querystring on /recent
8 years ago
barisusakli
f8ae7b069c
cid filter
8 years ago
barisusakli
58fff8b0af
up persona fix test
8 years ago
barisusakli
fb47bf3889
unread/recent changes closes #4774
8 years ago
Julian Lam
66aea0eed1
closes #5167
8 years ago
barisusakli
7a8de6169b
admin controller tests
8 years ago
Ben Lubar
2161f0d473
Allow plugins to affect whether a registration goes into the queue
8 years ago
barisusakli
687cce6089
closes #5159
8 years ago
Anil Mandepudi
619ca48403
remove shims for IE8 ( #5157 )
8 years ago
barisusakli
553ee7dcdd
more chat tests
8 years ago
Julian Lam
4b5c98fb21
fix broken ACP login, closes #5156
8 years ago
Julian Lam
0590a4f2cf
closes #5156
8 years ago
Sergii Paryzhskyi
e515b791da
Fix eslint rules ( #5117 )
...
* Fix semi linter rule
* Fix semi-spacing linter rule
* Fix no-undef-init linter rule
* Fix space-before-blocks linter rule
8 years ago
Julian Lam
2463e85c0d
allowing moderators access to the account info page
8 years ago
barisusakli
bcdd7b12f0
closes #5149
8 years ago
Julian Lam
02998669c3
introducing option to disable chat message editing/deletion
8 years ago
barisusakli
8c7de0f239
fix eslint
8 years ago
barisusakli
1e486875f4
add top posters and most rep to acp
8 years ago
barisusakli
9131f9d8f6
controller tests
8 years ago
barisusakli
b32d7b86e8
fix isModeratorOfAnyCategory
...
returns true/false now instead of an array
new method getModeratedCids returns an array of moderated cids
8 years ago
Julian Lam
3272c0b98c
linting
8 years ago
Julian Lam
ead4de6c6f
Merge branch 'fix-some-code-lint' of https://github.com/HeeL/NodeBB into HeeL-fix-some-code-lint
8 years ago
Julian Lam
e80400665e
closes #5111
8 years ago
HeeL
4a3c31b2dc
Fix space-before-function-paren linter rule
8 years ago
HeeL
3fa1c1f927
Fix space-infix-ops linter rule
8 years ago
barisusakli
6f86621e30
closes #5096
8 years ago
barisusakli
9a55498fc1
changes to manage/users
8 years ago
barisusakli
0614957542
use req.app.render
8 years ago
barisusakli
3275d26590
removed comments
8 years ago
Nguyen Trung Quan
279559ff97
Fix: Memory leak & connection flood when access /admin/advanced/database
8 years ago
barisusakli
aca0a893e7
remove since properly
8 years ago
barisusakli
fe50c8d124
closes #5078
8 years ago
Barış Soner Uşaklı
3a50c46572
Merge pull request #5033 from BenLubar/page-removed-from-url
...
Include page number in redirected topics
8 years ago
barisusakli
15409f92cd
escape history data, hide moderation note in api
8 years ago
barisusakli
abd99760e5
closes #5070
8 years ago
barisusakli
67f137149d
fix validator
8 years ago
barisusakli
922f1587e7
closes #5067
8 years ago
barisusakli
9f2533b5ba
closes #5054
9 years ago
barisusakli
2704727caf
fix /unread
9 years ago
barisusakli
6540b07ab2
closes #5052
9 years ago
barisusakli
f464966817
closes #5053
9 years ago
barisusakli
42a8346d2d
closes #5051
9 years ago
barisusakli
d1989babf5
closes #5044
9 years ago
barisusakli
13e624cc86
on login update lastonline
9 years ago
barisusakli
15cae8d6ea
ability to set moderation note on users
9 years ago
barisusakli
4be20799ec
fix getRecentChats
9 years ago
barisusakli
202edfa47e
chat history access
9 years ago
barisusakli
4ce8e2224a
optimize topics.markTopicNotificationsRead
...
let's not call it once for each tid
9 years ago
barisusakli
958fe3e72f
closes #3762
9 years ago
barisusakli
2e6fc4d045
filterPidsByCid
9 years ago
barisusakli
2c140c2107
ability to filter flags by category
9 years ago
Julian Lam
172702565e
show username and email history
9 years ago
Barış Soner Uşaklı
11b5a1f426
simplify map
9 years ago
barisusakli
86b616ab9e
removed unnecessary waterfall
9 years ago
barisusakli
89596b81e0
style
9 years ago
barisusakli
72c75bd781
add pagination to flags page
9 years ago
barisusakli
c98b6b7630
tag changes
9 years ago
barisusakli
8bffabeee4
merge
9 years ago
barisusakli
f46755759a
show categories in unread as tree
9 years ago
Julian Lam
b12607b1de
added uid to flag history, fixed loading on IS, worked around tjs bug
9 years ago
Julian Lam
d04a10225c
WIP showing updated flag data, history, updating flag data
9 years ago
Julian Lam
8dc57cba58
allowing updating of flag data
9 years ago
Ben Lubar
7d90a94261
Include page number in redirected topics
9 years ago
barisusakli
fcbdfa5688
remove post cache dump
9 years ago
barisusakli
1364fb94bf
show debug info
9 years ago
barisusakli
d621b120b0
fix groups
9 years ago
barisusakli
fac68d52f6
cache group membership methods
...
groups.isMember
groups.isMembers
groups.isMemberOfGroups
clear cache for user on group.join & group.leave
9 years ago
barisusakli
599ac80f3d
use array.find
9 years ago
barisusakli
ae8b9c3683
closes #4665
9 years ago
barisusakli
aefba6e2b1
removed some methods
...
helpers.getBaseUser
exposeUid, exposeGroupName
9 years ago
barisusakli
becacdefb0
new hooks to customize registration queue with custom data
9 years ago
barisusakli
38b17c6157
closes #5011
9 years ago