how do I change the page title for luminis IV?
Hello,
how do I change the title from "SunGard Higher Education" to something else?
I thought it was this file:
/uportal/webapps/luminis/WEB-INF/uPortal/org/jasig/portal/layout/tab-column/nested-tables/nested-tables.xsl
but it doesn't seem to be.
thanks.
- Sammy

titleBar
There is a configman property called titleBar which doesn't work in Luminis IV.0.0.0 but apparently it is fixed in later builds. This allows you to set the page title.
David
setting the titleBar property or workaround?
We have IV.0.1.21 installed and the page title is still not set to the configman titleBar property once you're logged in.
Is anyone aware of any workarounds to display our own title instead of "Sungard Higher Education" as the page title?
Thanks!
Title Bar
If you are talking about the " - powered by SunGard SCT Inc." next to the title we edited the /webapps/luminis/jsp/portal/login.jsp and replaced the jsp dynamic replacement with static text. This appears to work.
PIV titlebar
It took me forever but I finally found this configman parameter that did the trick (so annoying to have "Sungard Higher Education" as the page title):
org.jasig.portal.layout.tab-column.nested-tables.titlebar=(whatever you want the title to be)
-KC Allen
Santa Fe Community College
Thanks!
Sungard had actually filed that as a defect! Thank you for the perseverance!
- Bill
Fix implemented?
Is there any update this? How does one change the title bar on Luminis from "SunGard Higher Education" to something else?
thanks,
Chuck
Confirmed. I just ran the
Confirmed. I just ran the command below to change the title tag on post-login pages:
configman -s org.jasig.portal.layout.tab-column.nested-tables.titlebar "NEW TITLE TEXT GOES HERE"
Also, I found the "powered by SunGard Education" text in the login frameset file located at:
$CP_DOC_ROOT/jsp/portal/loginf.jsp
Title Page on Framed Tabs
It has been my experience that the org.jasig.portal.layout.tab-column.nested-tables.titlebar parameter works if you are viewing content on a the tab that was designed to be a traditional tab. However, if you are using a framed tab (i.e., the tab's content is the content of a URL that was specified when the tab was created), the title is "SunGard Higher Education". Has anyone else seen this? Any suggestions?
Thanks!
Late to the game
Has anyone figured out if it is possible to change the title on the framed tabs?
Thanks
we figured it out
Unfortunately looking at our wiki of notes, I cannot find a special step that does this.
I thought that it would be in CHeader.xsl, but now suspect nested-tables.xsl
I can email you with some files or a pdf of our notes if that would help.
Derek
University of Leeds, UK
Framed tabs
Derek,
If you could send me your CHeader.xsl and nested-tables.xsl I would appreciate it.
timothy@uwyo.edu
Framed Tabs Title
If you figure out how to change the framed tabs title, please post the answer. It's on my list to look at but I didn't make any progress the last time I looked at it.
Info for the html, head, title
I have looked back through our live files, and the references to <title> are all in nested-tables.xsl
There are three variants (in our nested-tables.xsl)
layout_fragment
backLinkedFrameset
backLinkedFrame
all use $frameTitle
tabbedFrameset
uses $org.jasig.portal.layout.tab-column.nested-tables.titlebar (this is probably the one that has the problem)
regularLayout
uses $frameTitle, but also has a conditional /layout/@dlm:fragmentName
We use a custom nested-tables-uol.properties that specifies the exact text used by tabbedFrameset.
I have popped more things in the email for those that requested it.
Derek
University of Leeds, UK
From my
From my `${CP_ROOT}/webapps/luminis/` directory:
Those are all of the files that have the string present in my installation. If I grep through the output of `configman -g *` I get no result. So I imagine that what you are looking for is in one of those properties files.
We changed these configman settings
site.login.title
org.jasig.portal.layout.tab-column.nested-tables.titlebar
com.pipeline.cad.admin.page.title.text
com.pipeline.email.emailCenter.page.title.text
com.pipeline.grouptools.frame.frameset.title.text
com.pipeline.help.helpframeset.page.title.text
But, this still leaves the "Powered by..." on the login page.
You may have to keep that
There was some discussion about this -- you may be contractually obligated to keep the "Powered by Sungard" text.
browser title bar revisited
Just had the need to determine title based on the skin, so that
most users of our portal see
but Applicant users see
I found re-reading this thread very helpful, and confirmed that adding logic
into nested-tables.xsl was not a very good way to tackle it (certainly not in
time for a tight deadline).
our Applicant skin includes a custom js (arctcc.js)
So I have just added a rule to the document.ready()
to say
jQuery(document).attr('title','Text as Described Above :-)');
We already have org.jasig.portal.layout.tab-column.nested-tables.titlebar set
sensibly.
Hope this will help someone else.
Derek
University of Leeds, UK