You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by "Reema Sardana (JIRA)" <ji...@apache.org> on 2008/08/07 23:46:44 UTC

[jira] Updated: (SHINDIG-423) hardcoded fields in shindig container.js

     [ https://issues.apache.org/jira/browse/SHINDIG-423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Reema Sardana updated SHINDIG-423:
----------------------------------

    Attachment: fix-423-bug.patch

I think the string constant should be replaced. 

> hardcoded fields in shindig container.js
> ----------------------------------------
>
>                 Key: SHINDIG-423
>                 URL: https://issues.apache.org/jira/browse/SHINDIG-423
>             Project: Shindig
>          Issue Type: Bug
>          Components: Features (Javascript)
>            Reporter: Henning Schmiedehausen
>         Attachments: fix-423-bug.patch
>
>
> opensocial-reference/container.js contains
> opensocial.Container.escape = function(value, opt_params, opt_escapeObjects) {
>   if (opt_params && opt_params['escapeType'] == 'none') {
> [...]
> that should probably be 
> opensocial.Container.escape = function(value, opt_params, opt_escapeObjects) {
>   if (opt_params && opt_params[opensocial.DataRequest.DataRequestFields.ESCAPE_TYPE] == opensocial.EscapeType.NONE) {
> [...]
> right? 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.