<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body><span class="vcard"><a class="email" href="mailto:mikekaganski@hotmail.com" title="Mike Kaganski <mikekaganski@hotmail.com>"> <span class="fn">Mike Kaganski</span></a>
</span> changed
          <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WONTFIX - PDF opened with DRAW from WEBDAV LINKS are not saved back at the remote location"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=138651">bug 138651</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>UNCONFIRMED
           </td>
           <td>RESOLVED
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>WONTFIX
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WONTFIX - PDF opened with DRAW from WEBDAV LINKS are not saved back at the remote location"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=138651#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WONTFIX - PDF opened with DRAW from WEBDAV LINKS are not saved back at the remote location"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=138651">bug 138651</a>
              from <span class="vcard"><a class="email" href="mailto:mikekaganski@hotmail.com" title="Mike Kaganski <mikekaganski@hotmail.com>"> <span class="fn">Mike Kaganski</span></a>
</span></b>
        <pre>Saving (or exporting) to the same location is exactly pretending that the
format is considered editable and supported read-write format. This is not true
for PDF. For now the request is WONTFIX.

However, this is exactly the task for custom macros, when someone has some
specific needs, and understands that their workflow has limitations, but needs
something that is not supported by the program. Here is such a macro, which you
may put to common library for your users, and create a button for it:

Sub ExportAsSelf
    doc = ThisComponent
    If doc.hasLocation and not doc.isReadonly Then
      url = doc.getLocation
      doc.storeToURL(url, array())
      doc.setModified(false)
    End If
End Sub</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>