Skip to content

Commit d922289

Browse files
committed
Merge remote-tracking branch 'upstream/master'
Conflicts: .gitignore resources/celerity/map.php src/__phutil_library_map__.php src/applications/differential/storage/DifferentialReviewer.php src/applications/home/controller/PhabricatorHomeMainController.php src/applications/people/controller/PhabricatorPeopleProfileController.php
2 parents 658c4f4 + a89ce7e commit d922289

File tree

1,186 files changed

+13699
-8004
lines changed

Some content is hidden

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

1,186 files changed

+13699
-8004
lines changed

.arclint

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"exclude": [
33
"(^externals/)",
4-
"(\\.lint-test$)"
4+
"(^webroot/rsrc/externals/)",
5+
"(/__tests__/data/)"
56
],
67
"linters": {
78
"chmod": {
@@ -10,43 +11,50 @@
1011
"filename": {
1112
"type": "filename"
1213
},
14+
"generated": {
15+
"type": "generated"
16+
},
1317
"javelin": {
1418
"type": "javelin",
1519
"include": "(\\.js$)",
1620
"exclude": [
17-
"(^externals/JsShrink/)",
18-
"(^support/aphlict/)",
19-
"(^webroot/rsrc/externals/raphael/)"
21+
"(^support/aphlict/)"
2022
]
2123
},
2224
"jshint": {
2325
"type": "jshint",
2426
"include": "(\\.js$)",
25-
"exclude": [
26-
"(^externals/JsShrink/)",
27-
"(^webroot/rsrc/externals/raphael/)"
28-
],
29-
"flags": ["--config=support/jshint/jshintconfig"]
27+
"jshint.jshintrc": "support/jshint/jshintconfig"
3028
},
31-
"generated": {
32-
"type": "generated"
29+
"json": {
30+
"type": "json",
31+
"include": [
32+
"(^src/docs/book/.*\\.book$)",
33+
"(^support/jshint/jshintconfig$)",
34+
"(^\\.arcconfig$)",
35+
"(^\\.arclint$)",
36+
"(\\.json$)"
37+
]
3338
},
3439
"merge-conflict": {
3540
"type": "merge-conflict"
3641
},
3742
"nolint": {
3843
"type": "nolint"
3944
},
45+
"phutil-library": {
46+
"type": "phutil-library",
47+
"include": "(\\.php$)"
48+
},
4049
"phutil-xhpast": {
4150
"type": "phutil-xhpast",
4251
"include": "(\\.php$)",
4352
"phutil-xhpast.deprecated.functions": {
4453
"phutil_escape_html": "The phutil_escape_html() function is deprecated. Raw strings passed to phutil_tag() or hsprintf() are escaped automatically."
4554
}
4655
},
47-
"phutil-library": {
48-
"type": "phutil-library",
49-
"include": "(\\.php$)"
56+
"spelling": {
57+
"type": "spelling"
5058
},
5159
"text": {
5260
"type": "text",
@@ -63,20 +71,16 @@
6371
"(^\\.arclint)"
6472
]
6573
},
66-
"spelling": {
67-
"type": "spelling"
68-
},
6974
"xhpast": {
7075
"type": "xhpast",
7176
"include": "(\\.php$)",
7277
"severity": {
7378
"16": "advice",
74-
"29": "warning",
75-
"31": "error",
76-
"34": "error",
77-
"35": "error"
79+
"34": "error"
7880
},
79-
"xhpast.naminghook": "PhabricatorSymbolNameLinter"
81+
"xhpast.naminghook": "PhabricatorSymbolNameLinter",
82+
"xhpast.php-version": "5.2.3",
83+
"xhpast.php-version.windows": "5.3.0"
8084
}
8185
}
8286
}

.gitignore

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,9 @@
1-
.DS_Store
2-
._*
3-
.#*
4-
*#
5-
*~
6-
*.swp
7-
.*.un~
8-
*.orig
9-
tags
10-
11-
# NetBeans project files
12-
/nbproject/
13-
14-
# PhpStorm project files
15-
.idea/
16-
17-
# Arcanist scratch directory
18-
/.arc
1+
# NOTE: Thinking about adding files created by your operating system, IDE,
2+
# or text editor here? Don't! Add them to your per-user .gitignore instead.
193

204
# Diviner
215
/docs/
22-
/.divinercache
6+
/.divinercache/
237

248
# libphutil
259
/src/.phutil_module_cache

NOTICE

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
Phabricator
2-
Copyright 2013 Facebook, Inc.
2+
Copyright 2014 Phacility, Inc.
33

4-
This product includes software developed at
5-
Facebook, Inc. (http://www.facebook.com/facebook).
4+
This software is primarily developed and maintained by Phacility, Inc.
65

7-
Libraries in externals/ have their own licenses and copyright holders.
6+
http://www.phacility.com/
7+
8+
Portions of this software were developed by various contributors, who retain
9+
copyright on their work. These works are licensed to Phacility, Inc.
10+
11+
Phabricator is available under the Apache 2.0 license. See LICENSE for more
12+
information.
13+
14+
Phabricator and Phacility are trademarks of Phacility, Inc. For additional
15+
information about trademarks that pertain to this software, see:
16+
17+
http://www.phacility.com/trademarks/
18+
19+
This software uses other open source libraries, which are located in
20+
"externals/" and "webroot/rsrc/externals/". These libraries have their own
21+
licenses and copyright holders.

0 commit comments

Comments
 (0)