Skip to content

Commit 0f1bdbe

Browse files
author
epriestley
committedFeb 4, 2013
Merge branch 'master' into phutil_tag
(Sync.)
2 parents 8e7af64 + 5a2be27 commit 0f1bdbe

File tree

59 files changed

+871
-341
lines changed

Some content is hidden

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

59 files changed

+871
-341
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@
2424
/conf/local/local.json
2525
/conf/local/ENVIRONMENT
2626
/conf/local/VERSION
27+
28+
# Impact Font
29+
/resources/font/impact.ttf

‎conf/default.conf.php

+5-16
Original file line numberDiff line numberDiff line change
@@ -798,13 +798,11 @@
798798
// behalf, silencing the warning.
799799
'phabricator.timezone' => null,
800800

801-
// When unhandled exceptions occur, stack traces are hidden by default.
802-
// You can enable traces for development to make it easier to debug problems.
803-
'phabricator.show-stack-traces' => false,
804-
805-
// Shows an error callout if a page generated PHP errors, warnings or notices.
806-
// This makes it harder to miss problems while developing Phabricator.
807-
'phabricator.show-error-callout' => false,
801+
// Show stack traces when unhandled exceptions occur, force reloading of
802+
// static resources (skipping the cache), show an error callout if a page
803+
// generated PHP errors, warnings, or notices, force disk reads when
804+
// reloading. This option should not be enabled in production.
805+
'phabricator.developer-mode' => false,
808806

809807
// When users write comments which have URIs, they'll be automatically linked
810808
// if the protocol appears in this set. This whitelist is primarily to prevent
@@ -1220,15 +1218,6 @@
12201218
// unlikely that you need to modify this.
12211219
'celerity.resource-hash' => 'd9455ea150622ee044f7931dabfa52aa',
12221220

1223-
// In a development environment, it is desirable to force static resources
1224-
// (CSS and JS) to be read from disk on every request, so that edits to them
1225-
// appear when you reload the page even if you haven't updated the resource
1226-
// maps. This setting ensures requests will be verified against the state on
1227-
// disk. Generally, you should leave this off in production (caching behavior
1228-
// and performance improve with it off) but turn it on in development. (These
1229-
// settings are the defaults.)
1230-
'celerity.force-disk-reads' => false,
1231-
12321221
// Minify static resources by removing whitespace and comments. You should
12331222
// enable this in production, but disable it in development.
12341223
'celerity.minify' => false,

0 commit comments

Comments
 (0)
Failed to load comments.