Skip to content
This repository was archived by the owner on Jun 7, 2024. It is now read-only.

Commit f547100

Browse files
committed
Syncing files from cloud/master to master
1 parent dfe2732 commit f547100

File tree

3,072 files changed

+183564
-172290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,072 files changed

+183564
-172290
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ coverage:
1212
informational: true
1313
patch:
1414
front-end:
15-
informational: true
15+
informational: true
1616
changes: no
1717

1818
parsers:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/build/*
1212
!/build/.storybook
1313
!/build/entries
14+
/build/entries/dynamic
1415
!/build/scripts
1516
!/build/tsconfig.json
1617
!/build/.htaccess
@@ -122,8 +123,10 @@ phpcs-diff.json
122123
yarn-error.log
123124
.pnp.*
124125
.yarn/*
126+
/bin/scripts/.yarn
125127
!.yarn/patches
126128
!.yarn/plugins
127129
!.yarn/releases
128130
!.yarn/sdks
129131
!.yarn/versions
132+
applications/dashboard/.yarn/*

.prettierignore

Lines changed: 75 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,80 @@
1+
# vendor files
12
bower_components
23
node_modules
4+
vendor
5+
.yarn
6+
7+
# App writeable directories
8+
uploads
39
cache
4-
.idea
5-
*.min.js
6-
cgi-bin
10+
conf
11+
12+
# Generally a totally separate repo
13+
locales
14+
15+
# Build directory
716
dist
17+
storyshots
18+
19+
# IDE Config
20+
.vscode
21+
.idea
22+
23+
# Legacy Frontend files
24+
design
25+
js
26+
resources
27+
28+
# Test output
829
.phpunit.result.cache
9-
.htaccess.dist
30+
.htaccess.dist
31+
.coverage
32+
coverage
33+
.storybookAppPages
34+
**/*.png
35+
**/*.jpg
36+
**/*.jpeg
37+
**/*.lock
38+
tests/fixtures/formats
39+
tests/fixtures/**/*.html
40+
tests/fixtures/**/*.htm
41+
42+
# Plain JS Files (es5)
43+
**/js/**
44+
45+
# Legacy Design directories (coming soon?)
46+
**/design/**
47+
applications/dashboard/scss/vendors
48+
49+
# PHP files with mixed HTML
50+
**/views/**
51+
52+
# These classes have mixed HTML.
53+
./applications/dashboard/models/class.attachmentmodel.php
54+
./cloud/applications/groups/modules/class.groupinfomodule.php
55+
./cloud/applications/groups/modules/class.groupleadersmodule.php
56+
./cloud/applications/groups/modules/class.groupmembersmodule.php
57+
./cloud/plugins/CustomProfileFields/class.customprofilefields.plugin.php
58+
./cloud/plugins/NoCaps/class.nocaps.plugin.php
59+
./cloud/plugins/Online/modules/class.onlinecountmodule.php
60+
./cloud/plugins/Online/modules/class.onlinemodule.php
61+
./cloud/plugins/TwitterFeeds/default.php
62+
./cloud/plugins/gigya/GSSDK.php
63+
./cloud/plugins/github/class.github.plugin.php
64+
./cloud/plugins/ideation/IdeaConterModule.php
65+
./cloud/plugins/samlsso/saml/Metadata.php
66+
./cloud/utility/invoiceparse/simple_html_dom.php
67+
./cloud/utility/sendup/library/class.rackspace.php
68+
./library/Vanilla/Formatting/FormatUtil.php
69+
./library/Vanilla/Formatting/Formats/HtmlFormat.php
70+
./library/Vanilla/Formatting/Formats/TextFormat.php
71+
./library/Vanilla/Formatting/Html/HtmlPlainTextConverter.php
72+
./library/Vanilla/PageScraper.php
73+
./library/core/class.configurationsource.php
74+
./library/core/class.controller.php
75+
./library/core/class.markdownvanilla.php
76+
./library/deprecated/functions.deprecated.php
77+
./plugins/OpenID/class.lightopenid.php
78+
./plugins/Quotes/class.quotes.plugin.php
79+
./plugins/Reactions/ReactionsPlugin.php
80+
./plugins/VanillaInThisDiscussion/class.inthisdiscussionmodule.php

.swcrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"jsc": {
3+
"parser": {
4+
"syntax": "typescript",
5+
"tsx": true,
6+
"dynamicImport": false,
7+
"privateMethod": false,
8+
"functionBind": false,
9+
"exportDefaultFrom": false,
10+
"exportNamespaceFrom": false,
11+
"decorators": false,
12+
"decoratorsBeforeExport": false,
13+
"topLevelAwait": false,
14+
"importMeta": false
15+
},
16+
"transform": {
17+
"react": {
18+
"useBuiltins": true
19+
}
20+
},
21+
"target": "es2016",
22+
"loose": false,
23+
"externalHelpers": false,
24+
// Requires v1.2.50 or upper and requires target to be es2016 or upper.
25+
"keepClassNames": true
26+
}
27+
}

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"name": "Debug Production Build Process",
9+
"request": "launch",
10+
"runtimeArgs": [
11+
"run-script",
12+
"build:assets",
13+
"--sections layouts"
14+
],
15+
"runtimeExecutable": "npm",
16+
"skipFiles": [
17+
"<node_internals>/**"
18+
],
19+
"type": "node"
20+
},
21+
722
{
823
// Execute "yarn test:browser:debug" prior to attaching.
924
"type": "chrome",

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"**/.hg": true,
2323
"**/CVS": true,
2424
"**/.DS_Store": true,
25+
"**/.yarn": true,
2526
"cloud/plugins": true,
2627
"cloud/applications": true,
2728
"cloud/themes": true,
@@ -36,7 +37,8 @@
3637
"yarn.lock": true,
3738
"composer.lock": true,
3839
"**/node_modules": true,
39-
"dist": true
40+
"dist": true,
41+
"coverage": true
4042
},
4143
"[json]": {
4244
"editor.defaultFormatter": "esbenp.prettier-vscode"
@@ -72,6 +74,9 @@
7274
},
7375
"emmet.excludeLanguages": ["ts", "tsx", "js", "jsx"],
7476
"editor.wordWrapColumn": 120,
77+
"typescript.preferences.autoImportFileExcludePatterns": [
78+
"jquery*"
79+
],
7580

7681
// Inteliphense instead.
7782
"php.suggest.basic": false,

patches/@emotion+css++@emotion+serialize+1.0.2.patch renamed to .yarn/patches/@emotion-serialize-npm-1.0.3-2a28e46c06.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
diff --git a/node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts b/node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts
2-
index 9d32022..f1d83cd 100644
3-
--- a/node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts
4-
+++ b/node_modules/@emotion/css/node_modules/@emotion/serialize/types/index.d.ts
1+
diff --git a/types/index.d.ts b/types/index.d.ts
2+
index 9d32022d203c1de72a1a001aa7542feaa1acc047..f1d83cd3177afb5f08838d4ba718011d9d92d0b0 100644
3+
--- a/types/index.d.ts
4+
+++ b/types/index.d.ts
55
@@ -10,12 +10,12 @@ export type CSSProperties = CSS.PropertiesFallback<number | string>
66
export type CSSPropertiesWithMultiValues = {
77
[K in keyof CSSProperties]:

.yarnrc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
nodeLinker: node-modules
22

33
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5-
spec: "@yarnpkg/plugin-interactive-tools"
6-
- path: .yarn/plugins/@yarnpkg/plugin-licenses.cjs
7-
spec: "https://raw.githubusercontent.com/mhassan1/yarn-plugin-licenses/v0.7.2/bundles/@yarnpkg/plugin-licenses.js"
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
- path: .yarn/plugins/@yarnpkg/plugin-licenses.cjs
7+
spec: "https://raw.githubusercontent.com/mhassan1/yarn-plugin-licenses/v0.7.2/bundles/@yarnpkg/plugin-licenses.js"
88

99
yarnPath: .yarn/releases/yarn-3.1.1.cjs

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
88

99
Examples of behavior that contributes to creating a positive environment include:
1010

11-
* Using welcoming and inclusive language
12-
* Being respectful of differing viewpoints and experiences
13-
* Gracefully accepting constructive criticism
14-
* Focusing on what is best for the community
15-
* Showing empathy towards other community members
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
1616

1717
Examples of unacceptable behavior by participants include:
1818

19-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20-
* Trolling, insulting/derogatory comments, and personal or political attacks
21-
* Public or private harassment
22-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23-
* Other conduct which could reasonably be considered inappropriate in a professional setting
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
2424

2525
## Our Responsibilities
2626

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Here are some quick and easy ways to get involved in the Vanilla Forums project.
44

5-
* Troubleshoot issues you run into on the [community forum](https://open.vanillaforums.com/discussions) so everyone can help & reference it later.
6-
* Improve our [public documentation](https://docs.vanillaforums.com/) by sending us suggested [edits as pull requests](https://github.com/vanilla/docs).
7-
* File detailed [issues](https://github.com/vanilla/vanilla/issues) on GitHub (version number, what you did, and actual vs expected outcomes).
8-
* Sign the [Contributors' Agreement](https://cla-assistant.io/vanilla/vanilla) to send us code.
9-
* Create new pull requests against the `master` branch.
10-
* Keep our to-do list fresh by reviewing our open issues for resolved or duplicated items.
11-
* Got an idea or suggestion? Use the [community forum](https://open.vanillaforums.com/discussions) to discuss it.
12-
* Identify broken addons in the [community directory](https://open.vanillaforums.com/addons).
13-
* Improve our custom features on the community forum by helping in the [community repo](https://github.com/vanilla/community).
5+
- Troubleshoot issues you run into on the [community forum](https://open.vanillaforums.com/discussions) so everyone can help & reference it later.
6+
- Improve our [public documentation](https://docs.vanillaforums.com/) by sending us suggested [edits as pull requests](https://github.com/vanilla/docs).
7+
- File detailed [issues](https://github.com/vanilla/vanilla/issues) on GitHub (version number, what you did, and actual vs expected outcomes).
8+
- Sign the [Contributors' Agreement](https://cla-assistant.io/vanilla/vanilla) to send us code.
9+
- Create new pull requests against the `master` branch.
10+
- Keep our to-do list fresh by reviewing our open issues for resolved or duplicated items.
11+
- Got an idea or suggestion? Use the [community forum](https://open.vanillaforums.com/discussions) to discuss it.
12+
- Identify broken addons in the [community directory](https://open.vanillaforums.com/addons).
13+
- Improve our custom features on the community forum by helping in the [community repo](https://github.com/vanilla/community).
1414

1515
And add to and improve this list!

0 commit comments

Comments
 (0)