|
View:
New views
4 Messages
—
Rating Filter:
Alert me
|
|
|
Link List in TinyMCE disappearedHi all - Our client reports - and we've verified - that when they select the link tool in the rich text editor, the Link List field is no longer there. This seems to have happened in the last two days. We have a copy of the site on our development server, and the Link List appears as usual there. We have not made any recent changes to their site. I don't know if any edits they'd be capable of making at Publisher level could cause such a change, but this did come on the heels of some navigation changes they'd made that we believe led to certain nav items not resolving as expected (identically named HTML pages and subfolders within a single nav item) - we were only able to correct the navigation issue by rebuilding that section of the nav from scratch. Any ideas anyone has on this would be much appreciated. Thank you! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-user" group. To post to this group, send email to farcry-user@... To unsubscribe from this group, send email to farcry-user+unsubscribe@... For more options, visit this group at http://groups.google.com/group/farcry-user?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Link List in TinyMCE disappearedOn Oct 9, 7:44 am, Elizabeth <eliza.br...@...> wrote: > Our client reports - and we've verified - that when they select the > link tool in the rich text editor, the Link List field is no longer > there. This seems to have happened in the last two days. The link list is built from the tree itself. It's likely the tree metadata is corrupt and needs to be rebuilt. > I don't know if any edits they'd be capable of making at Publisher > level could cause such a change, but this did come on the heels of > some navigation changes they'd made that we believe led to certain nav > items not resolving as expected (identically named HTML pages and > subfolders within a single nav item) - we were only able to correct > the navigation issue by rebuilding that section of the nav from > scratch. Go to the ADMIN tab > COAPI Utils subsection, and select rebuild tree. geoff http://www.daemon.com.au/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-user" group. To post to this group, send email to farcry-user@... To unsubscribe from this group, send email to farcry-user+unsubscribe@... For more options, visit this group at http://groups.google.com/group/farcry-user?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Link List in TinyMCE disappearedOn Oct 8, 3:31 pm, modius <mod...@...> wrote: > On Oct 9, 7:44 am, Elizabeth <eliza.br...@...> wrote: > > Go to the ADMIN tab > COAPI Utils subsection, and select rebuild tree. Geoff - Thank you for your help! We have a lot of trouble with the site tree normally, and do a Fix RefObjectTables/Rebuild Tree Metadata at least once a day; that hadn't fixed it, so I tried following your instructions exactly and rebuilt the tree without performing any other operations. That didn't work either. Any other ideas? (The site was built in 4 and upgraded to 5, if that makes a difference.) Thanks - Elizabeth --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-user" group. To post to this group, send email to farcry-user@... To unsubscribe from this group, send email to farcry-user+unsubscribe@... For more options, visit this group at http://groups.google.com/group/farcry-user?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Link List in TinyMCE disappearedHi Geoff, I work with Elizabeth. I found out that the metadata contains a double- quote character. Of course, this would be a problem when the JavaScript parsing the data. So, here's the patch. Index: C:/FarCry5/core/webtop/facade/tinyMCELinkList.cfm =================================================================== --- C:/FarCry5/core/webtop/facade/tinyMCELinkList.cfm (revision 3734) +++ C:/FarCry5/core/webtop/facade/tinyMCELinkList.cfm (working copy) @@ -70,7 +70,6 @@ <cfset inc = 0> - <cfoutput> // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. // There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url" @@ -80,7 +79,6 @@ // Name, URL </cfoutput> - <cfif qRelated.recordCount> <cfoutput>["--- RELATED OBJECTS ---", ""], </cfoutput> @@ -97,14 +95,14 @@ <cfoutput>["--- NAVIGATION TREE ---", ""], </cfoutput> - <cfloop query="qSiteMap"> + <cfloop query="qSiteMap"> <cfset inc = inc + 1> - <cfoutput>["#RepeatString('-', qSiteMap.nLevel)# #qSiteMap.objectname#", "#application.url.webroot#/index.cfm? objectid=#qSiteMap.objectid#"]<cfif inc LT qSiteMap.RecordCount + qRelated.RecordCount>,</cfif> + <cfoutput>["#RepeatString('-', qSiteMap.nLevel)# #Replace(qSiteMap.objectname,'"','\"','ALL')#", "#application.url.webroot#/index.cfm? objectid=#qSiteMap.objectid#"]<cfif inc LT qSiteMap.RecordCount + qRelated.RecordCount>,</cfif> </cfoutput> </cfloop> </cfif> - + <cfoutput> ); </cfoutput> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-user" group. To post to this group, send email to farcry-user@... To unsubscribe from this group, send email to farcry-user+unsubscribe@... For more options, visit this group at http://groups.google.com/group/farcry-user?hl=en -~----------~----~----~----~------~----~------~--~--- |
| Free embeddable forum powered by Nabble | Forum Help |