To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68497


User as changed the following:

                What    |Old value                 |New value
================================================================================
             Assigned to|as                        |mav
--------------------------------------------------------------------------------
              Issue type|FEATURE                   |ENHANCEMENT
--------------------------------------------------------------------------------
        Target milestone|---                       |OOo 2.x
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Tue Sep  5 01:36:46 -0700 
2006 -------
AS->cbrunet: An API to create new versions on saving documents already exists.
See the following macro:

Sub Main

        dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")

        dim args(1) as new com.sun.star.beans.PropertyValue
        args(0).Name  = "VersionComment"
        args(0).Value = "My Version 01"
        args(1).Name  = "Author"
        args(1).Value = "Author 01"
        
        doc = ThisComponent
        doc.storeSelf(args())

End Sub

But you are right; there exists currently no API to modify versions or it's
properties.

AS->MAV: Please implement the MediaDescriptor property "short Version" for
storing also (as it is already supported for loadComponentFromURL()). Regards.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to