Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Upgrade from 9.1 to 9.2 with customized modules
Viktoria_Svensson_(sablinuser2_-_(deleted))
How can I change customized modules html-files to match the new style in 9.2.?
Find more posts tagged with
Comments
Francisco_Alcala-Soler_(iaea_001user3_-_(deleted))
Message from via eLinkHi,> How can I change customized modules html-files to match the > new style in 9.2.?In my case I only had to add //Style Support `%L.Styles()`to the tag of my weblingo files to import the CSS and make the newheaders look decent, but it all depends on what your pages actuallycontained. For instance, you could add things like: ; Assoc args ; args.Title1 = "Enterprise Workspace:" ; args.Title2 = "This is the title of your page" ;;call (args)to make the masthead look a bit more like the new pages. Additionally, youmay have to remove existing
tags, if you're using any, in order to make the fonts match.As said, I've only added the styles...HTH, CurroThis email message is intended only for the use of the named recipient.Information contained in this email message and its attachments may beprivileged, confidential and protected from disclosure. If you are not theintended recipient, please do not read, copy, use or disclose thiscommunication to others. Also please notify the sender by replying to thismessage and then delete it from your system.
eLink User
Message from Sean M. Alderman via eLinkI'll second the notion that it depends on what the modules do.My modules implement customized versions of stock nodes for the mostpart. For example take a normal folder, but display a specificcategory's attributes as columns and require that items of this type areforced to be assigned that specific category and set it so all childreninherit the category. Now, I have to overridellhome/module/webnode/html/browseveiw.html in order to display thoseextra columns...Oh, the oscript has provide sort routines and the attribdata to display (in this case from the _BrowseContents script).Typically, my methodology is to find a page that looks most similar towhat I'm trying to generate, then I figure out what weblingo files areused to render it and go from there. If I'm upgrading I take the sameprocess, but I'll typically try to move my customizations into a copy ofthe existing file, instead of trying to write a file from scratch thatmimics all the normal bells and whistles. I do the same thing with theOscript side of the upgrade too.On Wed, 2004-04-07 at 09:59, eLink Discussion: Development Discussionwrote:> RE Upgrade from 9.1 to 9.2 with customized modules> Posted by Alcala-Soler, Francisco J on 04/07/2004 09:59 AM> > Message from via eLink> > Hi,> > > How can I change customized modules html-files to match the > > new style in 9.2.?> > In my case I only had to add> > //Style Support> `%L.Styles()`> > to the tag of my weblingo files to import the CSS and make the new> headers look decent, but it all depends on what your pages actually> contained. For instance, you could add things like:> > ; Assoc args> ; args.Title1 = "Enterprise Workspace:"> ; args.Title2 = "This is the title of your page"> > ;;call (args)> > to make the masthead look a bit more like the new pages. Additionally, you> may have to remove existing> >
> > tags, if you're using any, in order to make the fonts match.> > As said, I've only added the styles...> > HTH,> > Curro> > > This email message is intended only for the use of the named recipient.> Information contained in this email message and its attachments may be> privileged, confidential and protected from disclosure. If you are not the> intended recipient, please do not read, copy, use or disclose this> communication to others. Also please notify the sender by replying to this> message and then delete it from your system.> > [To reply to this thread, use your normal E-mail reply function.]> > ============================================================> > Topic: Upgrade from 9.1 to 9.2 with customized modules>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=3417386&objAction=view>
; > Discussion: Development Discussion>
https://knowledge.opentext.com/knowledge/livelink.exe?func=ll&objId=786303&objAction=view>
; > Livelink Server:>
https://knowledge.opentext.com/knowledge/livelink.exe--Sean
M. AldermanITRACK Systems AnalystPACE/NCI - NASA Glenn Research Center(216) 433-2795Algebraic symbols are used when you do not know what you are talkingabout. -- Philippe Schnoebelen
Viktoria_Svensson_(sablinuser2_-_(deleted))
Hi Curro!Thanks for your information. It's little bit more than to add the StyleSheet, but it helped a lot.