From: W. Trevor King Date: Wed, 30 Jun 2010 20:55:40 +0000 (-0400) Subject: Take advantage of the startswith field matching by abbreviating long fields X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a9bff9d0f76ab8f3503395af7a0a7acc710b01b2;p=sitecorepy.git Take advantage of the startswith field matching by abbreviating long fields --- diff --git a/sitecore/prof/import.py b/sitecore/prof/import.py index 1c2e040..f434f84 100644 --- a/sitecore/prof/import.py +++ b/sitecore/prof/import.py @@ -70,10 +70,10 @@ class ProfessorAdder (object): ('Email:', prof.contact.email), ('Phone:', prof.contact.phone), ('Fax:', prof.lab_contact()), - ('Page Title - This shows in the tab and title bar of the brower -- Google rates it highly:', name), - ("Menu Title - This shows in the menus and navigation blocks -- it's usually a shorted version of the page title:", name), - ("Breadcrumb Title - This shows in the breadcrumb trail -- it's usually a very short version of the page title:", name), - ("See Also title - Other items that refer to this one will use this text:", name), + ('Page Title -', name), + ('Menu Title -', name), + ('Breadcrumb Title -', name), + ('See Also title -', name), ] for field_name,value in settings: if value == None: