Labels

accessibility (2) ADF (1) archiver (3) cmu (1) contributor (13) cookie (1) DAM (3) date (3) download (3) dynamic list (4) ephox (5) fatwire (1) fck (1) filters (1) folders (4) headers (2) IBR (3) ImageAlchemy (3) java (4) javascript (2) layout/template (4) link (6) locale (2) multilingual (1) rendition (3) replicator (4) rules (1) schema (1) search (11) sites (1) sitestudio (24) ssp/sspu (5) SSUrlFieldName (2) stellent (4) timezone (1) urm (1) weblogic (1) workflow (2)
Showing posts with label stellent. Show all posts
Showing posts with label stellent. Show all posts

Monday, 19 August 2013

PS7 - New ADF Interface for Stellent

The 11.1.1.8.0 release of WebCenter Content includes a new alternative interface for Content Server. It is driven by ADF and requires it's own instance of WebLogic. It includes enhancements to search (so it requires OracleTextsearch,) it now organises content using "libraries" and folders (so it needs FrameworkFolders and ACL security) and it features inline previews of documents (so it needs DynamicConverter.) Looks to be targeted at simple users - there are no admin functions exposed.

Installation is a little complex, see the instructions.

Here is the new interface user guide.

Here is a handy video that demonstrates the interface and its features.

So where is this all going? It looks like Oracle are getting serious about the integration of Stellent into WebCenter, which would ultimately mean the retirement of IdocScript in preference for ADF & JDeveloper. It's been a while coming, but here it comes.

Speaking of integration, there's also a WebCenter Sites integration component that now comes standard, a content duplicator that looks a lot like the demo created by uh, someone like fishbowl (I forget who.)

Here is the SitesIntegration guide.

*** UPDATE ***

OMG THERE ARE NO VISIBLE CONTENT IDs? Instead the three non-customisable search result templates only display the filename and the title (which is usually just the filename.)  #facepalm

Tuesday, 11 September 2012

Managing Links Part 1: Activating the Functionality

WebCenter Content comes with an excellent tool for managing links - auspiciously known as the Link Manager. But I've rarely seen clients use it to its full potential. In this first post I'll talk about how to activate its functionality.

Friday, 14 December 2007

Get Enhanced Contributor Editing!

My contributors can add headings, delete rows and auto-insert image ALT text. Can yours? No? Ha!

Well, now they can too, using these replacement HTML Object Properties forms. I have rewritten the standard forms and bundled them together for you to download.

List of new functionality:
  • Apply "auto-styles" (CSS class) to text, paragraphs & tables
  • Convert or remove text formatting (FONT, SPAN, BOLD etc)
  • Convert paragraphs from/to headings (H1 to H6, P, DIV etc)
  • Convert table cells from/to table header cells (TD or TH)
  • Edit or delete table rows
  • Calculate image download size & time (popup alert for oversized images)
  • ALT text for image auto-inserted from the image's "Title" metadata
  • Set image dimensions & keep aspect ratio
  • Set type of numbered list & starting number
Note that no core CS or SS code is modified.

I included a readme.txt file with instructions, disclaimers and other fancy words. Enjoy!

Thursday, 6 December 2007

How I got H1 Headings into Site Studio pages

One of the biggest frustrations of our users in the inability to insert a standard HTML heading.

"I beg your pardon" you say, "no headings?"

Yep, the Site Studio Contributor application window allows you to only write paragraphs. You can insert tables, horizontal rules, bold text and even classes*, but not headings.

To get around this deficiency, I started by modifying the HTML Object Properties Forms. Being the logical programmer that I am, I tried to create a function that allowed me to replace a <p> tag with a <h1> tag, using the standard HTML replaceChild() method. Unfortunately this throws an error.

It turns out that any attempt to insert a new node in the HTML DOM will be rejected... oddly enough it didn't mind me deleting nodes though. After a while I gave up and forgot about it.

Then the other night as I was trying to sleep I thought "instead of being a nice boy and respecting the DOM, why not just treat code as dirty text and do a simple string replace?" and vola! it works.

I simply grab the node I want to work with and replace its outerHTML with its innerHTML , wrapped in my heading tags. Like this:

g_obj.outerHTML='<h1>'+g_obj.innerHTML+'</h1>';

Now if only I'd thought of that last year...

Oh there's one final twist... you can't use outerHTML on table cells, which sucks when you need to change a TD into TH. To get around this problem you need to replace the entire table!

* When applying a class it uses a FONT tag!? Crazy.