Tim Abbott
771afd093c
docs: Restructure install guide troubleshooting section.
2017-08-15 17:21:40 -07:00
Tim Abbott
634532b414
docs: Remove discussion of community organizations.
...
This significantly simplifies the page, and they don't exist anymore
anyway.
2017-08-15 17:21:40 -07:00
Tim Abbott
7582d0920d
docs: Improve clarity of production install documentation for emails.
...
Based on #6094 , this extracts email configuration as its own step.
2017-08-15 17:21:40 -07:00
Tim Abbott
4725afe99a
settings: Move NOREPLY_EMAIL_ADDRESS to DEFAULT_SETTINGS.
...
Since we're auto-detecting the value anyway, there's no reason it
can't be moved to DEFAULT_SETTINGS.
This lets us remove some clutter from the installation documentation.
2017-08-15 17:21:40 -07:00
Tim Abbott
d9c8c4db09
settings: Clean up documentation for configuring outgoing email.
...
Since we now discuss Gmail in the prod-email instructions, we just
link to that here.
2017-08-15 17:21:40 -07:00
Tim Abbott
80a5ecf3c8
docs: Improve readability of the prod-email instructions.
2017-08-15 17:21:40 -07:00
Tim Abbott
2bfe93f290
docs: Move subscribe instructions to end of install instructions.
2017-08-15 16:53:55 -07:00
Brock Whittaker
83184d5c60
/about/: Merge with /authors, redesign page.
...
This adds the authors to the Zulip repository on GitHub from
/authors/ along with re-styling the page to fit the same
aesthetic as /for/open-source/ and other product-pages.
2017-08-15 16:09:01 -07:00
Brock Whittaker
eec26c5da6
Extract "open source" feature column into its own section.
2017-08-15 15:26:46 -07:00
Tim Abbott
c043d31074
portico: Fix accidental console.log statement.
2017-08-15 15:23:16 -07:00
Brock Whittaker
41dbbcf062
Change the notice text to be on the same line and grey.
2017-08-15 13:27:48 -07:00
Brock Whittaker
cc8de243a5
Switch from #errors to new .alert.alert-error.
...
This switches to the newer style of displaying alerts.
2017-08-15 13:27:48 -07:00
Brock Whittaker
dfb3d03c0b
Fix broken input sizing for subdomains.
...
In the case of no subdomains, the input is too large because the JS
calculated size does not account for padding. The correct solution is
to do this in JS.
2017-08-15 13:27:48 -07:00
Brock Whittaker
9c62aee739
Restyle "password reset" confirmation modal to be boxed.
2017-08-15 13:27:48 -07:00
Brock Whittaker
ba8d370a9f
Restyle "password reset" email sent modal to be boxed.
...
This takes floating text and puts it in a white box with a standardized
header design.
2017-08-15 13:27:44 -07:00
Tim Abbott
d7f8781b06
populate_db: Remove unnecessary print statement.
2017-08-15 12:55:56 -07:00
Tim Abbott
2858c13513
populate_db: Use caching helpers to get users.
2017-08-15 12:55:00 -07:00
Tim Abbott
ba411b0539
digest: Use get_user_profile_by_id.
2017-08-15 12:53:48 -07:00
Tim Abbott
353a61b1d8
test_signup: Clean up re-fetching of user objects.
2017-08-15 12:52:23 -07:00
Tim Abbott
e3e2d9093c
analytics: Remove references to UserProfile.objects.get.
2017-08-15 12:48:33 -07:00
Jack Zhang
a533ab5881
context_processors.py: Add flag for whether user is logged in.
2017-08-15 12:15:21 -07:00
Jack Zhang
182570d5f3
Deduplicate header markup for portico and portico-help templates.
2017-08-15 12:15:21 -07:00
Jack Zhang
b82bdc82bf
context_processors.py: Add flag for whether page is help center.
...
This is needed once the header markup is deduplicated.
2017-08-15 12:15:21 -07:00
Steve Howell
f0de6bd461
node tests: Add "Starting node tests..." message.
2017-08-15 14:50:10 -04:00
Tim Abbott
4525843681
docs: Clarify documentation on verifying push notifications.
...
This is based on discussion in #6100 .
2017-08-15 11:25:30 -07:00
Tim Abbott
93aa28ed08
decorator: Clean up ugly validation comment.
2017-08-15 10:55:32 -07:00
Tim Abbott
5a63ea0170
decorator: Extract validate_account_and_subdomain and deduplicate.
...
This fixes the significant duplication of code between the
authenticate_log_and_execute_json code path and the `validate_api_key`
code path.
These's till a bit of duplication, in the form of `process_client` and
`request._email` interactions, but it is very minor at this point.
2017-08-15 10:54:23 -07:00
Tim Abbott
127222e7e5
decorator: Clean up process_client call with positional argument.
2017-08-15 10:54:23 -07:00
Tim Abbott
0262609c3d
decorator: Use validate_api_key in api_key_only_webhook_view code path.
...
This completes the effort to deduplicate the main code of our
authentication decorators.
2017-08-15 10:54:23 -07:00
Tim Abbott
319ea62cd9
decorator: Extract zerver/lib/profile.py.
...
This lets us remove this debugging function from our core
authentication codebase.
2017-08-15 10:54:23 -07:00
Tim Abbott
077c05fc78
decorator: Remove ancient client_name hack for iOS.
...
The old iOS app has been gone from the app store for 8 months, never
had a huge userbase, and its latest version didn't need this hack. So
this code is unlikely to do anything in the future; remove it to
declutter our authentication decorators codebase.
2017-08-15 10:54:23 -07:00
Tim Abbott
b46af40bd3
decorator: Refactor more code into validate_api_key.
2017-08-15 10:54:23 -07:00
Tim Abbott
5d2d939310
validate_api_key: Stop using 'profile' local variable.
2017-08-15 10:54:23 -07:00
Tim Abbott
25ec30dcf1
decorator: Deduplicate validate_api_key by using new helper function.
...
This should eliminate a bunch of duplicated code between these two
code paths.
2017-08-15 10:54:23 -07:00
Tim Abbott
cc03c8766f
test_helpers: Expand HostRequestMock variables.
2017-08-15 10:54:23 -07:00
Tim Abbott
5b8d04e18f
decorator: Remove now-unnecessary cast.
2017-08-15 10:54:23 -07:00
Tim Abbott
5ebe507c9b
decorator: Fix check for incoming webhook bots and move later
...
The check itself was correct, but the error message was in fact the
opposite of what this check is for. In other words, the only things
these users can do is post messages, and the error message when you
tried to do something else was to tell you that the user can't post
messages.
2017-08-15 10:54:23 -07:00
Tim Abbott
3c37795675
decorator: Add localhost/Tornado hack to access_user_by_api_key.
...
This should make it possible to share that code with other code paths.
2017-08-15 10:54:23 -07:00
Tim Abbott
1144eed48b
decorator: Clean up 'profile' variable reuse.
2017-08-15 10:54:23 -07:00
Tim Abbott
a2011b5a48
decorator: Simplify control flow in validate_api_key.
...
This technically changes the behavior in the case that
!settings.ZILENCER_ENABLED but is_remote_zulip_server(role).
Fortunately, that case is mostly irrelevant (in that remote zulip
servers is a Zilencer feature). The old behavior was also probably
slightly wrong, in that you'd get a zilencer-specific error message in
that case.
2017-08-15 10:52:46 -07:00
Tim Abbott
a6647f335f
decorator: Reorganize remote Zulip server code into one block.
2017-08-15 10:51:29 -07:00
Tim Abbott
052e173aae
decorator: Simplify invalid API key error messages.
2017-08-15 10:51:29 -07:00
Tim Abbott
928a93bb9a
decorator: Swap order of remote server if statements.
2017-08-15 10:51:29 -07:00
Tim Abbott
3157618b80
decorators: Extract access_user_by_api_key.
2017-08-15 10:51:29 -07:00
Tim Abbott
84da22da67
travis: Improve production test for HTTP success to not check length.
...
This will make life a lot easier when iterating on the login page.
2017-08-15 10:51:29 -07:00
Akash Nimare
eb88bd9552
portico: Point desktop app links to latest release.
2017-08-15 10:51:22 -07:00
Tim Abbott
ffc1ceeaa4
lint: Ban use of get_stream in the rest of messages.py.
...
This will help avoid potential future security bugs.
2017-08-15 10:40:02 -07:00
Tim Abbott
842bf77efb
unread: Convert mark_topic_as_read to use stream IDs.
...
This is safer in its handling of potentially renamed streams.
2017-08-15 10:40:02 -07:00
Tim Abbott
f3a41ac796
unread: Convert mark_stream_as_read to use stream IDs.
...
The logic is simpler and more robust.
2017-08-15 10:40:02 -07:00
Steve Howell
89f9017686
Create new endpoints for marking streams/topics as read.
...
The new endpoints are:
/json/mark_stream_as_read: takes stream name
/json/mark_topic_as_read: takes stream name, topic name
The /json/flags endpoint no longer allows streams or topics
to be passed in as parameters.
2017-08-15 10:17:29 -07:00