From f559d27190e5efa15aeccbfa2c86439d13e69ff0 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Tue, 10 Sep 2013 17:17:37 -0400 Subject: [PATCH] Remove stale new-user and redirect to /hello (imported from commit e32946dea1512fa2593f3e9023c40a5541289dcd) --- templates/zerver/new-user.html | 54 ---------------------------------- zproject/urls.py | 2 +- 2 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 templates/zerver/new-user.html diff --git a/templates/zerver/new-user.html b/templates/zerver/new-user.html deleted file mode 100644 index a0985f9b71..0000000000 --- a/templates/zerver/new-user.html +++ /dev/null @@ -1,54 +0,0 @@ -{% extends "zerver/portico.html" %} - -{# New user tutorial standin. #} - -{% block portico_content %} -
-
-

Hello, and welcome!

- - -

Zulip is a little different than some chat systems you may have already - used.
- Here's what you need to know:

- -
    -
  • Every message has a stream and a topic
  • -
  • A stream is kind of like a mailing list -- it represents a group of people -- and anyone can subscribe to a stream and start getting traffic there
  • -
  • A topic, on the other hand, is what the message is actually about
  • -
  • (You can, of course, send private messages.)
  • -
  • All of these are displayed simultaneously, in an interleaved way, chronologically
  • -
  • Time flows down
  • -
- -

This means we can have a conversation about git, jQuery, - fundraising, where to go to lunch, and a message from your commit bot - all simultaneously--without it getting unmanageable.

- -

Let's take a look

-

- -

- -

Here, we have three conversations occurring simultaneously:

-
    -
  • One on stream "zulip" with topic "Lunch", about where to go to lunch
  • -
  • One on stream "zulip" with topic "Zulip testers", about early beta testers
  • -
  • One automated notification on stream "commits", about a commit made to the repository
  • -
- -

Some things to know

-
    -
  • "Enter" will start a reply to the message with the blue line by it (in the example above, the one with topic "Zulip testers")
  • -
  • When you send the reply, it will appear at the very bottom of the stream (not directly below the message you reply to)
  • -
  • We have mobile apps, an API, and integrations with many popular services
  • -
- -

You're ready to go!

-

If you have any feedback, please, send it our way!

-
-
-{% endblock %} diff --git a/zproject/urls.py b/zproject/urls.py index 5d9c2cd109..f57d5a5ab7 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -58,7 +58,7 @@ urlpatterns = patterns('', # "About Zulip" information url(r'^what-is-humbug/$', TemplateView.as_view(template_name='zerver/what-is-humbug.html')), - url(r'^new-user/$', TemplateView.as_view(template_name='zerver/new-user.html')), + url(r'^new-user/$', RedirectView.as_view(url='/hello')), url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')), # Landing page, signup form, and nice register URL