Page MenuHomePhabricator

Continue modernizing application access to user preferences
ClosedPublic

Authored by epriestley on Jun 3 2016, 12:56 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 9:28 AM
Unknown Object (File)
Mon, Apr 8, 10:13 AM
Unknown Object (File)
Mon, Apr 8, 3:42 AM
Unknown Object (File)
Tue, Apr 2, 1:29 PM
Unknown Object (File)
Sun, Mar 31, 2:20 PM
Unknown Object (File)
Sat, Mar 30, 2:05 AM
Unknown Object (File)
Fri, Mar 29, 8:56 AM
Unknown Object (File)
Feb 19 2024, 8:54 PM
Subscribers
None

Details

Summary

Ref T4103. This is just incremental cleanup:

  • Add "internal" settings, which aren't editable via the UI. They can still do validation and run through the normal pathway. Move a couple settings to use this.
  • Remove getPreference() on PhabricatorUser, which was a sort of prototype version of getUserSetting().
  • Make getUserSetting() validate setting values before returning them, to improve robustness if we change allowable values later.
  • Add a user setting cache, since reading user settings was getting fairly expensive on Calendar.
  • Improve performance of setting validation for timezone setting (don't require building/computing all timezone offsets).
  • Since we have the cache anyway, make the timezone override a little more general in its approach.
  • Move editor stuff to use getUserSetting().
Test Plan
  • Changed search scopes.
  • Reconciled local and server timezone settings by ignoring and changing timezones.
  • Changed date/time settings, browsed Calendar, queried date ranges.
  • Verified editor links generate properly in Diffusion.
  • Browsed around with time/date settings looking at timestamps.
  • Grepped for getPreference(), nuked all the ones coming off $user or $viewer that I could find.
  • Changed accessiblity to high-contrast colors.
  • Ran all unit tests.
  • Grepped for removed constants.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Continue modernizing application access to user preferences.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: chad.
src/applications/people/storage/PhabricatorUser.php
861–863

This change is pretty much what this comment was anticipating.

src/view/form/control/AphrontFormDateControl.php
116

This fixes a bug with initial values in date controls with 24-hour time.

chad edited edge metadata.
This revision is now accepted and ready to land.Jun 3 2016, 1:37 AM
codeforuk edited edge metadata.
This revision was automatically updated to reflect the committed changes.