# HG changeset patch
# User Timothy Clemans <timothy.clemans@gmail.com>
# Date 1214787159 25200
# Node ID a38de37a8f442345fd9f9593c5df4fef5b43ad93
# Parent  ece758bbf38674bc7252361ef622c4bc61b0810d
#3535

diff -r ece758bbf386 -r a38de37a8f44 sage/server/notebook/notebook.py
--- a/sage/server/notebook/notebook.py	Sat Jun 28 01:02:40 2008 -0700
+++ b/sage/server/notebook/notebook.py	Sun Jun 29 17:52:39 2008 -0700
@@ -334,6 +334,16 @@ class Notebook(SageObject):
             print "WARNING: User '%s' already exists -- and is now being replaced."%username
         U = user.User(username, password, email, account_type)
         us[username] = U
+        worksheet_txt = """Your first worksheet
+        
+First, click on a cell then hit SHIFT & ENTER at the same time.
+        
+{{{
+plot(x^2)        
+}}}
+        """
+        worksheet = self.new_worksheet_with_title_from_text(worksheet_txt, username) 
+        worksheet.edit_save(worksheet_txt)
 
     def change_password(self, username, password):
         self.user(username).set_password(password)
