You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "David Johnson (JIRA)" <ji...@apache.org> on 2009/11/23 15:47:39 UTC

[jira] Updated: (ROL-1848) Bad url when add an image to a weblog

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

David Johnson updated ROL-1848:
-------------------------------

    Fix Version/s: 5.0
         Assignee: David Johnson  (was: Roller Unassigned)

> Bad url when add an image to a weblog
> -------------------------------------
>
>                 Key: ROL-1848
>                 URL: https://issues.apache.org/jira/browse/ROL-1848
>             Project: Roller
>          Issue Type: Bug
>          Components: Weblog Editor
>    Affects Versions: 5.0
>         Environment: Ubuntu  2.6.28-16 64bits
>            Reporter: Nicolas BONAMY
>            Assignee: David Johnson
>             Fix For: 5.0
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> When we add an image to a weblog (in edition mode), the mediaLink url doesn't appear.
> The issue is to modify MediaFileImageChooser.jsp by this :
>  <s:iterator id="mediaFile" value="childFiles">
>                 <li class="align-images"
>                         onmouseover="highlight(this, true)" onmouseout="highlight(this, false)">
>                         <s:url id="mediaFileURL" includeContext="false"
>                             value="%{#mediaFile.permalink}"></s:url>
>                         <s:url id="mediaFileThumbnailURL"
>                             value="%{#mediaFile.thumbnailURL}"></s:url>
>                     <div class="mediaObject"
>                          onclick="onSelectImage('<s:property value="#mediaFile.name"/>','<s:property value="%{mediaFileURL}" />')" >
>                         <s:if test="#mediaFile.imageFile">
>                             <img border="0" src='<s:property value="%{mediaFileThumbnailURL}" />'
>                                  width='<s:property value="#mediaFile.thumbnailWidth"/>'
>                                  height='<s:property value="#mediaFile.thumbnailHeight"/>' />
>                         </s:if>
>                     </div>
>                     <div class="mediaObjectInfo">
>                         <label>
>                             <str:truncateNicely upper="50">
>                                 <s:property value="#mediaFile.name" />
>                             </str:truncateNicely>
>                         </label>
>                     </div>
>                 </li>
>             </s:iterator>
>         </ul>
>     </div>
>     <div style="clear:left;"></div>
> </s:form>
> </s:if>
> <script type="text/javascript">
> <!--
>     function onSelectImage(name, url) {
>         if(url.match("^" + url) == url) {
>             window.parent.onSelectImage(name, url);
>         } else {
>             window.parent.onSelectImage(name, '<s:property
> value="absoluteSiteURL" />' + url);
>         }
>     } 
> -->
> </script>

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