From a9bff9d0f76ab8f3503395af7a0a7acc710b01b2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 30 Jun 2010 16:55:40 -0400 Subject: [PATCH] Take advantage of the startswith field matching by abbreviating long fields --- sitecore/prof/import.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: -- 2.26.2