Pweaver (Paul Weaver)
21cad9cc24
webpack: Convert webpack config to typescript.
...
This helps catch bugs in the configuration.
2017-08-04 11:01:37 -07:00
Pweaver (Paul Weaver)
d0b8e3f0c8
webpack: Merge webpack configuration into one file.
...
This fixes the confusing duplication between our various webpack config files.
2017-08-04 11:01:37 -07:00
Pweaver (Paul Weaver)
42a2e5dfa3
webpack: Turn webpack.config.js into a function.
...
This is a prerequisite for refactoring this.
2017-08-04 11:01:37 -07:00
Greg Price
cc30226af0
deliver_email: When disabled, sleep forever rather than exit.
...
This makes supervisor see the service as cheerfully running
and let it alone, rather than constantly retry starting it.
Because the crash/restart loop means repeatedly spending a
couple of seconds loading Django and the app, separated by
brief periods while supervisor notices the crash and acts
on it, it was actually consuming about 30-50% CPU on the
zulipchat.com staging server.
2017-08-03 16:28:19 -07:00
Steve Howell
e994ff36b5
Add option to fix unread messages for inactive streams.
2017-08-03 13:17:04 -07:00
Steve Howell
dad1c9326e
Add show_unreads management command.
...
This should help us troubleshoot anomalies with old unread
messages.
2017-08-03 13:17:04 -07:00
Greg Price
2cc0689bcf
api migration: Update the prod "Secure, maintain, and upgrade" doc.
2017-08-03 12:23:29 -07:00
Greg Price
8f73129d6a
api migration: Update docs/directory-structure.
2017-08-03 12:23:29 -07:00
Steve Howell
5a10137ad9
Extract message_list.first_unread_message_id().
...
This de-duplicates code that solved the same problems using
two different phrasings.
2017-08-03 11:32:54 -07:00
Steve Howell
c32b9a5d19
Remove dead code related to unread_in_current_view.
2017-08-03 11:32:54 -07:00
Steve Howell
325d7f0f57
unread: Simplify code to mark messages as read.
...
We now call the function mark_as_read(), and it only requires
passing in a message_id.
2017-08-03 11:32:54 -07:00
Steve Howell
eac155d3b8
unread: Use reverse_lookup in unread_topic_counter.
2017-08-03 11:32:54 -07:00
Steve Howell
1927a6ca45
Simplify unread_topic_count.update().
...
The prior implementation was needlessly complex. Both del() and
add() are cheap and idempotent.
With this change we no longer bother to delete a topic from a
dictionary when its last message is mark as read, since it doesn't
really help performance. We add a line to the tests to maintain
100% line coverage.
2017-08-03 11:32:54 -07:00
Steve Howell
fad4ed4e78
unread: Use reverse_lookup in unread_pm_counter.
...
This allows us to use simply a message_id to mark a PM as read.
2017-08-03 11:32:54 -07:00
neiljp (Neil Pilgrim)
b19e62b7ce
mypy: Initialize search_term to {} rather than None & avoid Optional.
2017-08-03 11:09:50 -07:00
neiljp (Neil Pilgrim)
f96f71e439
mypy: assert Popen.stdout based on API, in tools/lint.
2017-08-03 11:09:50 -07:00
neiljp (Neil Pilgrim)
e772e89fe2
mypy: Add None return path for RateLimitMiddleware.process_exception().
2017-08-03 11:03:14 -07:00
neiljp (Neil Pilgrim)
0e68c44ca4
mypy: Allow get_display_recipient_by_id type_id to be Optional[int].
...
zerver/message.py used it in this way previously when the type was not
a stream, so the type has been set to match usage and implementation.
Also added docstring to clarify this for the specific function.
2017-08-03 11:03:14 -07:00
neiljp (Neil Pilgrim)
1c7d0c932a
mypy: Ensure type of trim_func is consistent in check_redis.py.
2017-08-03 11:03:14 -07:00
neiljp (Neil Pilgrim)
e5c446c9b3
mypy: Set get_next_page_url in check-issue-labels to return Optional.
2017-08-03 11:03:14 -07:00
neiljp (Neil Pilgrim)
814dce0452
mypy: Set self.doc_context in integrations.py to Optional.
2017-08-03 11:03:14 -07:00
Brock Whittaker
f2b71ba12a
subs: Make "All streams" link to appropriate hash.
...
This makes the “All streams” toggle bring the user to the hash
“streams/all” which saves their state.
Fixes : #5984 .
2017-08-03 10:59:13 -07:00
Umair Khan
ef1b880082
rate_limiter: Upgrade api_calls_left to generic API.
2017-08-02 18:01:39 -07:00
Umair Khan
81e2128774
rate_limiter: Upgrade incr_ratelimit to generic API.
2017-08-02 18:01:39 -07:00
Umair Khan
9e33917d25
rate_limiter: Upgrade max_api_calls to generic API.
2017-08-02 18:01:39 -07:00
Umair Khan
ca9ac1948e
rate_limiter: Upgrade max_api_window to generic API.
2017-08-02 18:01:39 -07:00
Umair Khan
9c08b62448
rate_limiter: Upgrade unblock_user to generic API.
...
Change name to unblock_access as well.
2017-08-02 18:01:39 -07:00
Umair Khan
23be0875a1
rate_limiter: Upgrade block_user to generic API.
...
Change name to block_access as well.
2017-08-02 18:01:39 -07:00
Umair Khan
b2a2664715
rate_limiter: Upgrade clear_user_history to generic API.
...
Changes the name of the function to change_history as well.
2017-08-02 18:01:39 -07:00
Umair Khan
dd281367ae
rate_limited: Upgrade is_ratelimited to generic API.
2017-08-02 18:01:39 -07:00
Umair Khan
3643c4a73e
rate_limiter: Use RateLimitedUser class.
...
This commit lays groundwork for transitioning to using RateLimited
class in our rate limiter API.
2017-08-02 18:01:39 -07:00
Steve Howell
e7cc7bba05
pm list: Avoid unnecessary id -> email conversion.
...
In a subsequent commit, we may have unread counts for
deactivated users. There is no reason to fail hard on these
scenarios; if there is no list item for a user_ids_string,
updating the unread count should be a noop.
2017-08-02 09:40:47 -07:00
Steve Howell
b446d96ed6
Add people.pm_lookup_key
2017-08-02 09:40:47 -07:00
Steve Howell
8a7397fef6
people.js: Explicitly sort user_ids numerically.
...
It's not always clear whether user_ids are strings or integers, so
we explicitly convert them to integers for sorting when creating
keys for PMs.
To keep the tests passing, this commit removes some unneeded
defensive code in message_store.js that only applies to contrived
test input.
2017-08-02 09:40:47 -07:00
Steve Howell
b110f3bab3
Extract sorted_other_user_ids().
2017-08-02 09:40:47 -07:00
Steve Howell
b4c157c644
Extract unread.unread_mentions_counter.
...
This was extracted mostly for symmetry with the other two
counter classes in unread.js. It's just a thin layer on top
of a Dict() object.
2017-08-02 09:40:47 -07:00
Steve Howell
257e110996
unread: Only send clients 5000 most recent unread messages.
2017-08-02 09:40:47 -07:00
Vaida Plankyte
02d65a67af
frontend: Edit confirm_continue_registration.html to be clearer.
...
Fixes #5707 .
2017-08-02 08:51:25 -07:00
Vaida Plankyte
eb001e42d0
help: Document display emoji reactions as text feature.
2017-08-02 10:13:32 -04:00
Rishi Gupta
082c3a3c93
portico: Add for-working-groups-and-communities.md.
2017-08-02 00:19:34 -07:00
Rishi Gupta
94f7a5704f
portico: Add for/companies.
2017-08-02 00:19:34 -07:00
Rishi Gupta
2ee15a0b06
portico: Update for/open-source.
2017-08-02 00:19:34 -07:00
Tim Abbott
32a5a54ba5
test_docs: Fix test for the redesigned /features page.
2017-08-02 00:09:32 -07:00
Brock Whittaker
334689ad51
Fix password reset alignment issue.
...
This fixes the password reset input box not lining up with the button.
2017-08-01 23:54:45 -07:00
Tim Abbott
c095ac6279
generate_test_data: Fix typo in configuration.
2017-08-01 23:45:57 -07:00
Brock Whittaker
0b89561524
portico: Redesign the /features landing page.
...
This is a redesign of the features landing page from the current style
that includes the new sections in a grid format as well as some new
high-quality sections.
2017-08-01 23:39:44 -07:00
Rishi Gupta
3e9a85ecb2
onboarding: Add turtle reaction to an initial message.
2017-08-01 22:51:05 -07:00
Rishi Gupta
31c011dfcc
onboarding: Add picture to onboarding messages.
2017-08-01 22:47:57 -07:00
Rishi Gupta
f995094441
registration: Split out onboarding messages to onboarding.py.
2017-08-01 22:47:53 -07:00
Rishi Gupta
fbceba2b81
tutorial: Remove exports.start.
2017-08-01 22:38:22 -07:00