<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-12777</id>
	<title>Nabble - openoffice - interface-announce</title>
	<updated>2009-11-19T03:37:01Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/openoffice---interface-announce-f12777.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/openoffice---interface-announce-f12777.html" />
	<subtitle type="html">Changes to C++/Java Interfaces are announced on this list. Developers from higher-level projects have to act by changing their code on incompatible modifications accordingly. Other messages may be for informational purposes only. This is not a discussion list, and is not open to public posting.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26424733</id>
	<title>info/CWS os137 : new css.util.Duration, and support in sax::Converter and DocumentProperties</title>
	<published>2009-11-19T03:37:01Z</published>
	<updated>2009-11-19T03:37:01Z</updated>
	<author>
		<name>mst-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new css.util.Duration, and support in sax::Converter and DocumentProperties
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424733&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mst@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424733&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;os@...&lt;/a&gt;, sax, offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i97029
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=97029&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=97029&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS os137
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/os137&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/os137&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ struct com.sun.star.util.Duration
&lt;br&gt;&amp;lt;sax/tools/converter.hxx&amp;gt;:
&lt;br&gt;- sax::Converter::convertTime(...)
&lt;br&gt;+ sax::Converter::convertDuration(...)
&lt;br&gt;+ sax::Converter::convertDate(...)
&lt;br&gt;+ sax::Converter::convertDateOrDateTime(...)
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;in order to support the XMLSchema-2 &amp;quot;duration&amp;quot; type, it was necessary to
&lt;br&gt;introduce a new struct com.sun.star.util.Duration:
&lt;br&gt;&lt;br&gt;struct Duration
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; boolean Negative;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Years;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Months;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Days;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Hours;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Minutes;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short Seconds;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; unsigned short HundredthSeconds;
&lt;br&gt;&lt;br&gt;};
&lt;br&gt;&lt;br&gt;&lt;br&gt;sax::Converter:
&lt;br&gt;the convertTime() functions have been replaced with convertDuration()
&lt;br&gt;functions, and those using util::Duration have been re-implemented
&lt;br&gt;to directly convert to/from strings, and not take the indirect
&lt;br&gt;route of converting to double first, preventing rounding errors:
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert double to ISO &amp;quot;duration&amp;quot; string; negative durations
&lt;br&gt;allowed */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static void convertDuration(::rtl::OUStringBuffer&amp; rBuffer,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const double fTime);
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert util::Duration to ISO &amp;quot;duration&amp;quot; string */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static void convertDuration(::rtl::OUStringBuffer&amp; rBuffer,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const ::com::sun::star::util::Duration&amp;
&lt;br&gt;rDuration);
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert ISO &amp;quot;duration&amp;quot; string to double; negative durations
&lt;br&gt;allowed */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static bool convertDuration(double &amp; rfTime,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const ::rtl::OUString&amp; rString);
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert ISO &amp;quot;duration&amp;quot; string to util::Duration */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static bool convertDuration(::com::sun::star::util::Duration&amp;
&lt;br&gt;rDuration,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const ::rtl::OUString&amp; rString);
&lt;br&gt;&lt;br&gt;further additions to sax::Converter:
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert util::Date to ISO &amp;quot;date&amp;quot; string */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static void convertDate( ::rtl::OUStringBuffer&amp; rBuffer,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const com::sun::star::util::Date&amp; rDate );
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** convert ISO &amp;quot;date&amp;quot; or &amp;quot;dateTime&amp;quot; string to util::DateTime or
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; util::Date */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static bool convertDateOrDateTime(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; com::sun::star::util::Date &amp; rDate,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; com::sun::star::util::DateTime &amp; rDateTime,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bool &amp; rbDateTime,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; const ::rtl::OUString &amp; rString );
&lt;br&gt;&lt;br&gt;&lt;br&gt;furthermore, the com.sun.star.document.DocumentProperties service now
&lt;br&gt;supports storing user-defined properties of type util.Duration,
&lt;br&gt;and will load and store such properties to/from ODF meta.xml.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424733&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424733&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424733&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-os137-%3A-new-css.util.Duration%2C-and-support-in-sax%3A%3AConverter-and-DocumentProperties-tp26424733p26424733.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26005704</id>
	<title>info/CWS dba33a : new: css.awt.XTopWindow2</title>
	<published>2009-10-22T01:08:07Z</published>
	<updated>2009-10-22T01:08:07Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: css.awt.XTopWindow2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26005704&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i105259
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=105259&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=105259&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS dba33a
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba33a&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba33a&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;added:
&lt;br&gt;interface css.awt.XTopWindow2
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; [attribute] boolean IsMaximized;
&lt;br&gt;&amp;nbsp; [attribute] boolean IsMinimized;
&lt;br&gt;&amp;nbsp; [attribute] long Display;
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The new interface XTopWindow in module css.awt allows to retrieve and
&lt;br&gt;control the minimized/maximized state of top windows, by exposing the
&lt;br&gt;two properties IsMinimized and IsMaximized.
&lt;br&gt;Also, it allows control over the display/screen (those two terms are
&lt;br&gt;not consistently used, so I am not sure which one is better here)
&lt;br&gt;which the window is shown on. This display number is interchangeable
&lt;br&gt;with the numbers at the css.awt.DisplayAccess service.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26005704&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26005704&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26005704&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba33a-%3A-new%3A-css.awt.XTopWindow2-tp26005704p26005704.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25600279</id>
	<title>info/DEV300m60 : &quot;Volatile&quot; slot attribute no longer supported</title>
	<published>2009-09-24T09:45:59Z</published>
	<updated>2009-09-24T09:45:59Z</updated>
	<author>
		<name>mathias.bauer</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: &amp;quot;Volatile&amp;quot; slot attribute no longer supported
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25600279&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mathias.bauer@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -,-
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i83195
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=83195&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=83195&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: DEV300m60
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;Slots can no longer be &amp;quot;volatile&amp;quot;, they must be properly invalidated to get in update to the controllers registered for them. 
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;Volatile slots required a permanent background processing that
&lt;br&gt;generates unneccessary CPU activity.
&lt;br&gt;All existing slots with that attribute have been converted and tested
&lt;br&gt;that their invalidation works as expected. The &amp;quot;paste&amp;quot; slots got
&lt;br&gt;special treatment; on Windows the Clipboard Listener is used, on other
&lt;br&gt;Platforms, where no Clipboard Broadcaster is implemented in VCL, the
&lt;br&gt;slot is always automatically invalidated when an OOo Task Windows gets
&lt;br&gt;the focus.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25600279&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25600279&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25600279&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-DEV300m60-%3A-%22Volatile%22-slot-attribute-no-longer-supported-tp25600279p25600279.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25598593</id>
	<title>info/DEV300m60 : LoadComponentFromURL now allows to specify templates for new documents</title>
	<published>2009-09-24T09:41:42Z</published>
	<updated>2009-09-24T09:41:42Z</updated>
	<author>
		<name>mathias.bauer</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: LoadComponentFromURL now allows to specify templates for new documents
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25598593&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mathias.bauer@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -,-
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i82287
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=82287&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=82287&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: DEV300m60
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;LoadComponentFromURL now allows to specify templates for new documents
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;Until now a template could be used only by its file name, but not by
&lt;br&gt;the logical names we have in the template component. The documentation
&lt;br&gt;of the MediaDescriptor in the DevGuide mentioned two properties called
&lt;br&gt;&amp;quot;TemplateName&amp;quot; and &amp;quot;TemplateRegionName&amp;quot;, but they never workrd. Now it
&lt;br&gt;is possible to create a new document from a template using these
&lt;br&gt;properties. Example in Basic:
&lt;br&gt;&lt;br&gt;Sub createNewDoc
&lt;br&gt;&amp;nbsp; &amp;nbsp; Dim md(2) as New com.sun.star.beans.PropertyValue
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(0).Name=&amp;quot;TemplateName&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(0).Value=&amp;quot;some_template&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(1).Name=&amp;quot;TemplateRegionName&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(1).Value=&amp;quot;My Templates&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(2).Name=&amp;quot;AsTemplate&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; md(2).Value=TRUE
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;StarDesktop.loadComponentFromURL(&amp;quot;private:factory/swriter&amp;quot;,&amp;quot;_blank&amp;quot;,0,md)
&lt;br&gt;End Sub
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25598593&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25598593&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25598593&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-DEV300m60-%3A-LoadComponentFromURL-now-allows-to-specify-templates-for-new-documents-tp25598593p25598593.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25436096</id>
	<title>info/CWS odfmetadata3 : new: services css.text.InContentMetadata, css.text.textfield.MetadataField</title>
	<published>2009-09-14T06:48:14Z</published>
	<updated>2009-09-14T06:48:14Z</updated>
	<author>
		<name>mst-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: services css.text.InContentMetadata, css.text.textfield.MetadataField
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25436096&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mst@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: offapi, sw
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i91565,i91566
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=91565,i91566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=91565,i91566&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odfmetadata3
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata3&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: integrated
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ com.sun.star.text.TextPortion: property InContentMetadata
&lt;br&gt;+ com.sun.star.text.InContentMetadata
&lt;br&gt;+ com.sun.star.text.textfield.MetadataField
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The TextPortion service is extended with a new portion type
&lt;br&gt;&amp;quot;InContentMetadata&amp;quot; and corresponding property:
&lt;br&gt;&lt;br&gt;&amp;nbsp;service TextPortion
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;/** contains the text range of a text portion of type
&lt;br&gt;InContentMetadata.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;@since OOo 3.2
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; */
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;[optional, readonly, property]
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;::com::sun::star::text::XTextContent InContentMetadata;
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;There is a new TextContent service InContentMetadata, which recursively
&lt;br&gt;enumerates its contained TextContents:
&lt;br&gt;&lt;br&gt;/** is a &amp;lt;type&amp;gt;TextContent&amp;lt;/type&amp;gt; that can be used to attach RDF metadata
&lt;br&gt;&amp;nbsp; &amp;nbsp; to a range of text.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @since OOo 3.2
&lt;br&gt;&amp;nbsp;*/
&lt;br&gt;service InContentMetadata
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** None of the properties of &amp;lt;type&amp;gt;TextContent&amp;lt;/type&amp;gt; are
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; supported. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; service com::sun::star::text::TextContent;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** The &amp;lt;type&amp;gt;InContentMetadata&amp;lt;/type&amp;gt; can have RDF metadata
&lt;br&gt;attached. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; interface com::sun::star::rdf::XMetadatable;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** The &amp;lt;type&amp;gt;TextContent&amp;lt;/type&amp;gt;s that are contained in the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; annotated range of text can be enumerated. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; interface com::sun::star::container::XEnumerationAccess;
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;&lt;br&gt;There is a new TextField service MetadataField, which recursively
&lt;br&gt;enumerates its contained TextContents:
&lt;br&gt;&lt;br&gt;/** is a &amp;lt;type&amp;gt;TextField&amp;lt;/type&amp;gt; whose content is specified by RDF
&lt;br&gt;metadata.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @since OOo 3.2
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @see com::sun::star::rdf
&lt;br&gt;*/
&lt;br&gt;service MetadataField
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; /** None of the properties of &amp;lt;type&amp;gt;TextContent&amp;lt;/type&amp;gt; are
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; supported. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; service &amp;nbsp;com::sun::star::text::TextField;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** The &amp;lt;type&amp;gt;MetadataField&amp;lt;/type&amp;gt; can have RDF metadata attached. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; interface com::sun::star::rdf::XMetadatable;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** Allows for insertion of text content into, and creating cursors
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; that are bound within, the &amp;lt;type&amp;gt;MetadataField&amp;lt;/type&amp;gt;. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; interface com::sun::star::text::XText;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** The &amp;lt;type&amp;gt;TextContent&amp;lt;/type&amp;gt;s that are contained in the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;type&amp;gt;MetadataField&amp;lt;/type&amp;gt; can be enumerated. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; interface com::sun::star::container::XEnumerationAccess;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** this is the number format for this field.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @see com::sun::star::util::NumberFormatter
&lt;br&gt;&amp;nbsp; &amp;nbsp; */
&lt;br&gt;&amp;nbsp; &amp;nbsp; [optional, property] long NumberFormat;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** determines whether changes in language attributes at the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position of the text field also change the number format
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; as appropriate for this language.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br&gt;&amp;nbsp; &amp;nbsp; [optional, property] boolean IsFixedLanguage;
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25436096&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25436096&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25436096&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-odfmetadata3-%3A-new%3A-services-css.text.InContentMetadata%2C-css.text.textfield.MetadataField-tp25436096p25436096.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25383373</id>
	<title>required/cws encsig09 : SfxMedium::GetStorage has now additional parameter.</title>
	<published>2009-09-10T06:28:45Z</published>
	<updated>2009-09-10T06:28:45Z</updated>
	<author>
		<name>Mikhail.Voytenko</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: required
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: SfxMedium::GetStorage has now additional parameter.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25383373&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mikhail.Voytenko@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: all
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i103906
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=103906&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=103906&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws encsig09
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/encsig09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/encsig09&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: approved by QA
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;- ::com::sun::star::uno::Reference&amp;lt; ::com::sun::star::embed::XStorage &amp;gt; GetStorage();
&lt;br&gt;+ ::com::sun::star::uno::Reference&amp;lt; ::com::sun::star::embed::XStorage &amp;gt; GetStorage( sal_Bool bCreateTempIfNo = sal_True );
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;Now it is possible to specify whether the medium should create a
&lt;br&gt;temporary file on storage creation.
&lt;br&gt;&lt;br&gt;Normally the temporary copy of the original document should be created
&lt;br&gt;in case the storage is planned for &amp;quot;long use&amp;quot;, otherwise the temporary
&lt;br&gt;file makes no sense.
&lt;br&gt;&lt;br&gt;For example if a document is loaded and the document storage is
&lt;br&gt;created using this method, the temporary copy creation should be
&lt;br&gt;requested. But in case the storage is created by typedetection only to
&lt;br&gt;check some info and to dispose the storage afterwards, it definitely
&lt;br&gt;makes no sense to request creation of the copy.
&lt;br&gt;&lt;br&gt;The related source code is adjusted accordingly ( cws is based on
&lt;br&gt;DEV300_m56 milestone ).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25383373&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25383373&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25383373&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/required-cws-encsig09-%3A-SfxMedium%3A%3AGetStorage-has-now-additional-parameter.-tp25383373p25383373.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25379820</id>
	<title>info/cws impressnotes01 : ODFVER_LATEST added to enum ODFDefaultVersion</title>
	<published>2009-09-10T02:06:45Z</published>
	<updated>2009-09-10T02:06:45Z</updated>
	<author>
		<name>christian.lippka</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: ODFVER_LATEST added to enum ODFDefaultVersion
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;christian.lippka@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;michael.brauer@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;niklas.nebel@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oliver.specht@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ingrid.halama@...&lt;/a&gt;,chart2, sc, sd, svtools, sw
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i95188
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=95188&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=95188&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws impressnotes01
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/impressnotes01&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/impressnotes01&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: ready for QA
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;ODFVER_LATEST added to enum ODFDefaultVersion
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;the enum value ODFVER_LATEST is defined as being the newest ODF
&lt;br&gt;version including extensions not yet available in any ODF version.
&lt;br&gt;&lt;br&gt;It is not recommended to use this enum to check for a known version
&lt;br&gt;(f.e. to verify that the user selected &amp;quot;1.2 Extended&amp;quot; because this
&lt;br&gt;enum will represent different versions as new ODF versions will be
&lt;br&gt;published.
&lt;br&gt;&lt;br&gt;If you add a feature that is not part of ODF 1.2 but will be part of
&lt;br&gt;the next version you must check
&lt;br&gt;&lt;br&gt;if( !( SvtSaveOptions::GetODFDefaultVersion() &amp;lt;=
&lt;br&gt;SvtSaveOptions::ODFVER_012) )
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; // enable odf 1.2 extended feature
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;If a feature is available in a specific published version (f.e. 1.2)
&lt;br&gt;you must use
&lt;br&gt;&lt;br&gt;if( SvtSaveOptions::GetODFDefaultVersion() &amp;gt;=
&lt;br&gt;SvtSaveOptions::ODFVER_012 ) 
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; // enable odf 1.2 feature
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379820&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-cws-impressnotes01-%3A-ODFVER_LATEST-added-to-enum-ODFDefaultVersion-tp25379820p25379820.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25379651</id>
	<title>recommended/cws impressnotes01 : New interfaces to access annotations in documents</title>
	<published>2009-09-10T01:55:00Z</published>
	<updated>2009-09-10T01:55:00Z</updated>
	<author>
		<name>christian.lippka</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: recommended
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: New interfaces to access annotations in documents
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379651&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;christian.lippka@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i103139
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=103139&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=103139&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws impressnotes01
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/impressnotes01&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/impressnotes01&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: ready for QA
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;The new interfaces
&lt;br&gt;&lt;br&gt;com::sun::star::office::XAnnotation
&lt;br&gt;com::sun::star::office::XAnnotationAccess
&lt;br&gt;com::sun::star::office::XAnnotationEnumeration
&lt;br&gt;&lt;br&gt;are added
&lt;br&gt;&lt;br&gt;enable access to annotations contained in a document.
&lt;br&gt;Note: On the user intreface this feature is called &amp;quot;Comments&amp;quot;. In ODF this is about the &amp;lt;office:annotation&amp;gt; element
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The new interfaces
&lt;br&gt;&lt;br&gt;com::sun::star::office::XAnnotation
&lt;br&gt;com::sun::star::office::XAnnotationAccess
&lt;br&gt;com::sun::star::office::XAnnotationEnumeration
&lt;br&gt;&lt;br&gt;are added and enable access to annotations contained in a document.
&lt;br&gt;&lt;br&gt;Note: On the user interface this feature is called &amp;quot;Comments&amp;quot;. In ODF
&lt;br&gt;this is about the &amp;lt;office:annotation&amp;gt; element.
&lt;br&gt;&lt;br&gt;These interfaces are currently only supported by the draw/impress
&lt;br&gt;application. In writer the annotations are currently accessed using
&lt;br&gt;text fields. In calc the annotations are currently accessed as callout
&lt;br&gt;shapes.
&lt;br&gt;&lt;br&gt;In impress/draw each XDrawPage and XMasterPages now supports the
&lt;br&gt;com::sun::star::office::XAnnotationAcess.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379651&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379651&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25379651&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/recommended-cws-impressnotes01-%3A-New-interfaces-to-access-annotations-in-documents-tp25379651p25379651.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25326115</id>
	<title>info/CWS dba32g : resource compiler: NumericFormatter: new property &quot;NoThousandSep&quot;</title>
	<published>2009-09-07T00:24:33Z</published>
	<updated>2009-09-07T00:24:33Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: resource compiler: NumericFormatter: new property &amp;quot;NoThousandSep&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25326115&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32g
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32g&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32g&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ NumericFormatter/NumericField/etc.:
&lt;br&gt;&amp;nbsp; added &amp;quot;NoThousandSep&amp;quot; resource flag
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;Being tired by repeatedly typing C++ code to tell a NumericField,
&lt;br&gt;loaded from resource, that it should not show a thousand separator (by
&lt;br&gt;calling &amp;quot;SetUseThousandSep( FALSE )&amp;quot;), I introduced a &amp;quot;NoThousandSep&amp;quot;
&lt;br&gt;flag to the resource compiler, for NumericFormatter (and thus all
&lt;br&gt;derived classes). Consequently, the respective section of the output
&lt;br&gt;of &amp;quot;$SOLARVERSION/$OUTPATH$PROEXT/bin$UPDMINOREXT/rsc -syntax&amp;quot; now
&lt;br&gt;looks like this:
&lt;br&gt;&lt;br&gt;class NumericFormatter 
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ....
&lt;br&gt;&amp;nbsp; &amp;nbsp; //NumericFormatter
&lt;br&gt;&amp;nbsp; &amp;nbsp; Minimum &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= IDLONG;
&lt;br&gt;&amp;nbsp; &amp;nbsp; Maximum &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= IDLONG;
&lt;br&gt;&amp;nbsp; &amp;nbsp; StrictFormat &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = BOOL;
&lt;br&gt;&amp;nbsp; &amp;nbsp; DecimalDigits &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= USHORT;
&lt;br&gt;&amp;nbsp; &amp;nbsp; Value &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= IDLONG;
&lt;br&gt;&amp;nbsp; &amp;nbsp; NoThousandSep &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= BOOL;
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25326115&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25326115&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25326115&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32g-%3A-resource-compiler%3A-NumericFormatter%3A-new-property-%22NoThousandSep%22-tp25326115p25326115.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25292939</id>
	<title>required/CWS odff06 : asinh() and acosh() replacement functions in ::rtl::math</title>
	<published>2009-09-04T04:43:40Z</published>
	<updated>2009-09-04T04:43:40Z</updated>
	<author>
		<name>Eike Rathke-6</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: required
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: asinh() and acosh() replacement functions in ::rtl::math
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292939&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eike.rathke@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: sal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i97605
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=97605&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=97605&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odff06
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odff06&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odff06&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;The C99 standard defines asinh() and acosh() that are not supported by
&lt;br&gt;all compilers. They are now implemented in module sal.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;#include &amp;lt;rtl/math.hxx&amp;gt;
&lt;br&gt;inline double ::rtl::math::asinh(double fValue);
&lt;br&gt;inline double ::rtl::math::acosh(double fValue);
&lt;br&gt;&lt;br&gt;which are wrappers around
&lt;br&gt;&lt;br&gt;#include &amp;lt;rtl/math.h
&lt;br&gt;double SAL_CALL rtl_math_asinh(double fValue) SAL_THROW_EXTERN_C();
&lt;br&gt;double SAL_CALL rtl_math_acosh(double fValue) SAL_THROW_EXTERN_C();
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292939&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292939&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292939&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/required-CWS-odff06-%3A-asinh%28%29-and-acosh%28%29-replacement-functions-in-%3A%3Artl%3A%3Amath-tp25292939p25292939.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25292790</id>
	<title>info/CWS odff06 : erf() and erfc() replacement functions in ::rtl::math</title>
	<published>2009-09-04T04:30:36Z</published>
	<updated>2009-09-04T04:30:36Z</updated>
	<author>
		<name>Eike Rathke-6</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: erf() and erfc() replacement functions in ::rtl::math
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292790&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eike.rathke@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: sal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i97091
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=97091&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=97091&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odff06
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odff06&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odff06&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;The C99 standard defines error function erf() and error function complement
&lt;br&gt;erfc() that are not supported by all compilers. They are now implemented in
&lt;br&gt;module sal.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;#include &amp;lt;rtl/math.hxx&amp;gt;
&lt;br&gt;inline double ::rtl::math::erf(double fValue );
&lt;br&gt;inline double ::rtl::math::erfc(double fValue);
&lt;br&gt;&lt;br&gt;which are wrappers around
&lt;br&gt;&lt;br&gt;#include &amp;lt;rtl/math.h&amp;gt;
&lt;br&gt;double SAL_CALL rtl_math_erf(double fValue) SAL_THROW_EXTERN_C();
&lt;br&gt;double SAL_CALL rtl_math_erfc(double fValue) SAL_THROW_EXTERN_C();
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292790&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292790&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25292790&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-odff06-%3A-erf%28%29-and-erfc%28%29-replacement-functions-in-%3A%3Artl%3A%3Amath-tp25292790p25292790.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25184717</id>
	<title>info/CWS jl127 Interface change XSecurityEnvironment</title>
	<published>2009-08-27T23:29:02Z</published>
	<updated>2009-08-27T23:29:02Z</updated>
	<author>
		<name>Joachim Lingner - Sun Germany Software Engineer - ham02 - Hamburg</name>
	</author>
	<content type="html">Joachim Lingner - Sun Germany Software Engineer - ham02 - Hamburg schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: info
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Title: Java UnoRuntime.queryInterface simplification
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184717&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joachim.lingner@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Affected:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i100873
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;&lt;a href=&quot;http://qa.openoffice.org/issues/show_bug.cgi?id=100873&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qa.openoffice.org/issues/show_bug.cgi?id=100873&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Effective from: DEV300m57 CWS jl127
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;*Summary*
&lt;br&gt;&amp;gt; &amp;nbsp;--------
&lt;br&gt;&amp;gt; &amp;nbsp;com.sun.star.xml.crypto.XSecurityEnvironment:
&lt;br&gt;&amp;gt; &amp;nbsp;- long verifyCertificate([in] com::sun::star::security::XCertificate cert)
&lt;br&gt;&amp;gt; &amp;nbsp;+ long verifyCertificate([in] com::sun::star::security::XCertificate cert,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; [in] sequences&amp;lt;com::sun::star::security::XCertificate&amp;gt; 
&lt;br&gt;&amp;gt; intermediaCerts)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;*Description*
&lt;br&gt;&amp;gt; &amp;nbsp;-------------
&lt;br&gt;&amp;gt; The interface is unpublished !
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Additional certificates can now be provided to the functions, which are 
&lt;br&gt;&amp;gt; needed to validate the certificate. This is necessary, if intermediate 
&lt;br&gt;&amp;gt; certificates, that is, all certificates between the end and the root 
&lt;br&gt;&amp;gt; certificate in the certificate chain, are otherwise not available or 
&lt;br&gt;&amp;gt; cannot be obtained.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184717&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184717&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184717&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184717&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Fwd%3A-info-DEV300-CWS-sb113-%3A-Java-UnoRuntime.queryInterface-simplification--tp25045712p25184717.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25184520</id>
	<title>Re: [Fwd: info/DEV300 CWS sb113 : Java UnoRuntime.queryInterface simplification]</title>
	<published>2009-08-27T23:07:36Z</published>
	<updated>2009-08-27T23:07:36Z</updated>
	<author>
		<name>Stephan Bergmann</name>
	</author>
	<content type="html">See inline for fix:
&lt;br&gt;&lt;br&gt;On 08/19/09 16:53, Stephan Bergmann wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; As automatic mailing from EIS to interface-announce appears to be broken:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------- Original Message --------
&lt;br&gt;&amp;gt; Subject: info/DEV300 CWS sb113 : Java UnoRuntime.queryInterface 
&lt;br&gt;&amp;gt; simplification
&lt;br&gt;&amp;gt; Date: Tue, 18 Aug 2009 10:15:29 +0200 (CEST)
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stephan.Bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Juergen.Schmidt@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stephan.Bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: Java UnoRuntime.queryInterface simplification
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stephan.bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.schmidt@...&lt;/a&gt;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i102469
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=102469&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=102469&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Effective from: DEV300 CWS sb113
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb113&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb113&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; *Summary*
&lt;br&gt;&amp;gt; --------
&lt;br&gt;&amp;gt; com.sun.star.uno.UnoRuntime:
&lt;br&gt;&amp;gt; - Object queryInterface(Class, Object)
&lt;br&gt;&amp;gt; + &amp;lt;T extends XInterface&amp;gt; T queryInterface(Class&amp;lt;T&amp;gt;, Object)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; *Description*
&lt;br&gt;&amp;gt; -------------
&lt;br&gt;&amp;gt; With the URE/OOo Java baseline lifted to Java 5,
&lt;br&gt;&amp;gt; UnoRuntime.queryInterface can now make use of generics, and in a call like
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; XFoo x = UnoRuntime.queryInterface(XFoo.class, o);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; it is no longer necessary to explicitly cast the return value of
&lt;br&gt;&amp;gt; queryInterface to (XFoo).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Strictly speaking, due to the &amp;quot;extends XInterface,&amp;quot; this change is
&lt;br&gt;&amp;gt; compile-time incompatible (but strictly run-time compatible). &amp;nbsp;If this
&lt;br&gt;&amp;gt; turns out to be a problem in practice (which I doubt), we can easily
&lt;br&gt;&amp;gt; make the change strictly compile-time compatible (by simply dropping
&lt;br&gt;&amp;gt; the &amp;quot;extends XInterface&amp;quot; qualification).
&lt;/div&gt;&lt;br&gt;Nonsense. &amp;nbsp;The &amp;quot;extends XInterface&amp;quot; is (of course) a run-time 
&lt;br&gt;incompatible change, as it changes the signature of that queryInterface 
&lt;br&gt;method from (Ljava/lang/Class;Ljava/lang/Object;)Ljava/lang/Object; to 
&lt;br&gt;(Ljava/lang/Class;Ljava/lang/Object;)Lcom/sun/star/uno/XInterface;. &amp;nbsp;So 
&lt;br&gt;I had to drop the qualification again.
&lt;br&gt;&lt;br&gt;-Stephan
&lt;br&gt;&lt;br&gt;&amp;gt; I adapted all the relevant calls to UnoRuntime.queryInterface in the
&lt;br&gt;&amp;gt; URE-related OOo code modules (in bridges, javaunohelper, jurt,
&lt;br&gt;&amp;gt; ridljar, testtools, and ure), and added a note about the changed Java
&lt;br&gt;&amp;gt; method to the Developer's Guide at
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://wiki.services.openoffice.org/w/index.php?title=Documentation/DevGuide/ProUNO/Java/Handling_Interfaces&amp;oldid=137069&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.services.openoffice.org/w/index.php?title=Documentation/DevGuide/ProUNO/Java/Handling_Interfaces&amp;oldid=137069&lt;/a&gt;&amp;gt;. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;Other people might want to eventually adapt further OOo code, the SDK
&lt;br&gt;&amp;gt; examples, and/or the complete Developer's Guide.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25184520&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Fwd%3A-info-DEV300-CWS-sb113-%3A-Java-UnoRuntime.queryInterface-simplification--tp25045712p25184520.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25172272</id>
	<title>Re: info/CWS jl127 Interface change XSecurityEnvironment</title>
	<published>2009-08-27T06:05:42Z</published>
	<updated>2009-08-27T06:05:42Z</updated>
	<author>
		<name>Joachim Lingner - Sun Germany Software Engineer - ham02 - Hamburg</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: Java UnoRuntime.queryInterface simplification
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25172272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joachim.lingner@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Affected:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TaskId: i100873
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://qa.openoffice.org/issues/show_bug.cgi?id=100873&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://qa.openoffice.org/issues/show_bug.cgi?id=100873&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; Effective from: DEV300m57 CWS jl127
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; *Summary*
&lt;br&gt;&amp;nbsp; --------
&lt;br&gt;&amp;nbsp; com.sun.star.xml.crypto.XSecurityEnvironment:
&lt;br&gt;&amp;nbsp; - long verifyCertificate([in] com::sun::star::security::XCertificate cert)
&lt;br&gt;&amp;nbsp; + long verifyCertificate([in] com::sun::star::security::XCertificate cert,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[in] sequences&amp;lt;com::sun::star::security::XCertificate&amp;gt; 
&lt;br&gt;intermediaCerts)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; *Description*
&lt;br&gt;&amp;nbsp; -------------
&lt;br&gt;The interface is unpublished !
&lt;br&gt;&lt;br&gt;Additional certificates can now be provided to the functions, which are 
&lt;br&gt;needed to validate the certificate. This is necessary, if intermediate 
&lt;br&gt;certificates, that is, all certificates between the end and the root 
&lt;br&gt;certificate in the certificate chain, are otherwise not available or 
&lt;br&gt;cannot be obtained.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25172272&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25172272&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Fwd%3A-info-DEV300-CWS-sb113-%3A-Java-UnoRuntime.queryInterface-simplification--tp25045712p25172272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25045712</id>
	<title>[Fwd: info/DEV300 CWS sb113 : Java UnoRuntime.queryInterface simplification]</title>
	<published>2009-08-19T07:53:07Z</published>
	<updated>2009-08-19T07:53:07Z</updated>
	<author>
		<name>Stephan Bergmann</name>
	</author>
	<content type="html">As automatic mailing from EIS to interface-announce appears to be broken:
&lt;br&gt;&lt;br&gt;-------- Original Message --------
&lt;br&gt;Subject: info/DEV300 CWS sb113 : Java UnoRuntime.queryInterface 
&lt;br&gt;simplification
&lt;br&gt;Date: Tue, 18 Aug 2009 10:15:29 +0200 (CEST)
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stephan.Bergmann@...&lt;/a&gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Juergen.Schmidt@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stephan.Bergmann@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Title: Java UnoRuntime.queryInterface simplification
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stephan.bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.schmidt@...&lt;/a&gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TaskId: i102469
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=102469&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=102469&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: DEV300 CWS sb113
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb113&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb113&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;com.sun.star.uno.UnoRuntime:
&lt;br&gt;- Object queryInterface(Class, Object)
&lt;br&gt;+ &amp;lt;T extends XInterface&amp;gt; T queryInterface(Class&amp;lt;T&amp;gt;, Object)
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;With the URE/OOo Java baseline lifted to Java 5,
&lt;br&gt;UnoRuntime.queryInterface can now make use of generics, and in a call like
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;XFoo x = UnoRuntime.queryInterface(XFoo.class, o);
&lt;br&gt;&lt;br&gt;it is no longer necessary to explicitly cast the return value of
&lt;br&gt;queryInterface to (XFoo).
&lt;br&gt;&lt;br&gt;Strictly speaking, due to the &amp;quot;extends XInterface,&amp;quot; this change is
&lt;br&gt;compile-time incompatible (but strictly run-time compatible). &amp;nbsp;If this
&lt;br&gt;turns out to be a problem in practice (which I doubt), we can easily
&lt;br&gt;make the change strictly compile-time compatible (by simply dropping
&lt;br&gt;the &amp;quot;extends XInterface&amp;quot; qualification).
&lt;br&gt;&lt;br&gt;I adapted all the relevant calls to UnoRuntime.queryInterface in the
&lt;br&gt;URE-related OOo code modules (in bridges, javaunohelper, jurt,
&lt;br&gt;ridljar, testtools, and ure), and added a note about the changed Java
&lt;br&gt;method to the Developer's Guide at
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://wiki.services.openoffice.org/w/index.php?title=Documentation/DevGuide/ProUNO/Java/Handling_Interfaces&amp;oldid=137069&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.services.openoffice.org/w/index.php?title=Documentation/DevGuide/ProUNO/Java/Handling_Interfaces&amp;oldid=137069&lt;/a&gt;&amp;gt;.
&lt;br&gt;&amp;nbsp; Other people might want to eventually adapt further OOo code, the SDK
&lt;br&gt;examples, and/or the complete Developer's Guide.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25045712&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Fwd%3A-info-DEV300-CWS-sb113-%3A-Java-UnoRuntime.queryInterface-simplification--tp25045712p25045712.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24072543</id>
	<title>info/CWS calc51 : New interface com::sun::star::sheet::XSheetFilterDescriptor2</title>
	<published>2009-06-17T05:27:11Z</published>
	<updated>2009-06-17T05:27:11Z</updated>
	<author>
		<name>thomas.benisch</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: New interface com::sun::star::sheet::XSheetFilterDescriptor2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas.benisch@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;niklas.nebel@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oliver.craemer@...&lt;/a&gt;, sc, offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i35579
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=35579&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=35579&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS calc51
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ com::sun::star::sheet::XSheetFilterDescriptor2
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The com::sun::star::sheet::XSheetFilterDescriptor2 interface
&lt;br&gt;provides access to a collection of filter conditions. Whereas the
&lt;br&gt;com::sun::star::sheet::XSheetFilterDescriptor interface uses the
&lt;br&gt;com::sun::star::sheet::TableFilterField struct, the
&lt;br&gt;com::sun::star::sheet::XSheetFilterDescriptor2 interface uses the
&lt;br&gt;com::sun::star::sheet::TableFilterField2 struct.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072543&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-calc51-%3A-New-interface-com%3A%3Asun%3A%3Astar%3A%3Asheet%3A%3AXSheetFilterDescriptor2-tp24072543p24072543.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24072501</id>
	<title>info/CWS calc51 : New struct com::sun::star::sheet::TableFilterField2</title>
	<published>2009-06-17T05:25:16Z</published>
	<updated>2009-06-17T05:25:16Z</updated>
	<author>
		<name>thomas.benisch</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: New struct com::sun::star::sheet::TableFilterField2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas.benisch@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;niklas.nebel@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oliver.craemer@...&lt;/a&gt;, sc, offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i35579
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=35579&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=35579&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS calc51
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ com::sun::star::sheet::TableFilterField2
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The com::sun::star::sheet::TableFilterField2 struct describes a
&lt;br&gt;single condition in a filter descriptor. Whereas the
&lt;br&gt;com::sun::star::sheet::TableFilterField struct uses the
&lt;br&gt;com::sun::star::sheet::FilterOperator enum, the
&lt;br&gt;com::sun::star::sheet::TableFilterField2 struct has the
&lt;br&gt;com::sun::star::sheet::FilterOperator2 constants group as
&lt;br&gt;member.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072501&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-calc51-%3A-New-struct-com%3A%3Asun%3A%3Astar%3A%3Asheet%3A%3ATableFilterField2-tp24072501p24072501.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24072434</id>
	<title>info/CWS calc51 : New constants com::sun::star::sheet::FilterOperator2</title>
	<published>2009-06-17T05:22:02Z</published>
	<updated>2009-06-17T05:22:02Z</updated>
	<author>
		<name>thomas.benisch</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: New constants com::sun::star::sheet::FilterOperator2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thomas.benisch@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;niklas.nebel@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oliver.craemer@...&lt;/a&gt;, sc, offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i35579
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=35579&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=35579&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS calc51
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/calc51&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ com::sun::star::sheet::FilterOperator2
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The com::sun::star::sheet::FilterOperator2 constants extend the
&lt;br&gt;com::sun::star::sheet::FilterOperator enum by additional filter
&lt;br&gt;operators and specify the type of a single condition in a filter
&lt;br&gt;descriptor.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24072434&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-calc51-%3A-New-constants-com%3A%3Asun%3A%3Astar%3A%3Asheet%3A%3AFilterOperator2-tp24072434p24072434.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24033648</id>
	<title>info/CWS dba32c : MouseSettings::NoWheelActionWithoutFocus replaced by MouseSettings::WheelBehavior</title>
	<published>2009-06-15T05:19:23Z</published>
	<updated>2009-06-15T05:19:23Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: MouseSettings::NoWheelActionWithoutFocus replaced by MouseSettings::WheelBehavior
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033648&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: gsl
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i99704
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=99704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=99704&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS dba32c
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32c&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;- MouseSettings::[S|G]etNoWheelActionWithoutFocus
&lt;br&gt;+ MouseSettings::[S|G]etWheelBehavior
&lt;br&gt;+ &amp;lt;vcl/settings.hxx&amp;gt;: MOUSE_WHEEL_[DISABLE|FOCUS_ONLY|ALWAYS]
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The boolean NoWheelActionWithoutFocus attribute of the MouseSettings
&lt;br&gt;class has been replaced by a WheelBehavior attribute, taking one our
&lt;br&gt;of three possible values:
&lt;br&gt;- MOUSE_WHEEL_DISABLE: don't react on the mouse wheel
&lt;br&gt;- MOUSE_WHEEL_FOCUS_ONLY: react on the mouse wheel when the
&lt;br&gt;&amp;nbsp; control currently has the focus
&lt;br&gt;- MOUSE_WHEEL_ALWAYS: react on the mouse wheel, regardless of
&lt;br&gt;&amp;nbsp; the current focus
&lt;br&gt;&lt;br&gt;The only two places where the attribute was used have been adjusted to
&lt;br&gt;behave as before.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033648&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033648&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033648&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32c-%3A-MouseSettings%3A%3ANoWheelActionWithoutFocus-replaced-by-MouseSettings%3A%3AWheelBehavior-tp24033648p24033648.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24033613</id>
	<title>info/CWS dba32c : new: css.awt.MouseWheelBehaviour</title>
	<published>2009-06-15T05:16:41Z</published>
	<updated>2009-06-15T05:16:41Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: css.awt.MouseWheelBehaviour
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033613&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i99704
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=99704&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=99704&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS dba32c
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32c&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ css.awt.MouseWheelBehavior
&lt;br&gt;+ css.awt.MouseWheelBehavior.SCROLL_DISABLED
&lt;br&gt;+ css.awt.MouseWheelBehavior.SCROLL_FOCUS_ONLY
&lt;br&gt;+ css.awt.MouseWheelBehavior.SCROLL_ALWAYS
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The new constant group MouseWheelBehavior in css.awt controls how a
&lt;br&gt;awt widget should respons to mouse wheel operations: Ignore it
&lt;br&gt;(SCROLL_DISABLED), use it for scrolling the widget's content if it
&lt;br&gt;currently has the focus (SCROLL_FOCUS_ONLY), or use it for scrolling
&lt;br&gt;even if the control doesn't have the focus (SCROLL_ALWAYS).
&lt;br&gt;&lt;br&gt;The usual suspects in css.awt (UnoControl*Model) which describe models
&lt;br&gt;of scrollable controls have been updated to support this property.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033613&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033613&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24033613&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32c-%3A-new%3A-css.awt.MouseWheelBehaviour-tp24033613p24033613.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23760005</id>
	<title>info/dba32d : com.sun.star.sdb.application.XCopyTableListener: new attribute UseHeaderLineAsColumnNames</title>
	<published>2009-05-28T04:35:33Z</published>
	<updated>2009-05-28T04:35:33Z</updated>
	<author>
		<name>Ocke Janssen</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: com.sun.star.sdb.application.XCopyTableListener: new attribute UseHeaderLineAsColumnNames
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23760005&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ocke.janssen@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: dbaccess
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i80917
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=80917&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=80917&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: dba32d
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32d&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32d&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;The interface com.sun.star.sdb.application.XCopyTableListener now has optional attribute UseHeaderLineAsColumnNames.
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;It specifies that the first row should be used to identify column names.
&lt;br&gt;This attribute is ignored when the source defines the column names
&lt;br&gt;itself which isn't the case when only a part of a table should be
&lt;br&gt;copied e.g. in the RTF format or in the HTML format.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23760005&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23760005&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23760005&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-dba32d-%3A-com.sun.star.sdb.application.XCopyTableListener%3A-new-attribute-UseHeaderLineAsColumnNames-tp23760005p23760005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23726543</id>
	<title>info/cws ooxml03 : Complementing css::xml::sax::XSAXSerializable with css::xml::sax::XFastSAXSerializable</title>
	<published>2009-05-26T09:21:58Z</published>
	<updated>2009-05-26T09:21:58Z</updated>
	<author>
		<name>Thorsten Behrens-3</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: Complementing css::xml::sax::XSAXSerializable with css::xml::sax::XFastSAXSerializable
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: Thorsten Behrens
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: all
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TaskId: i102156
&lt;br&gt;Effective from: cws ooxml03
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS: &lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/ooxml03&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/ooxml03&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ interface css::xml::sax::XFastSAXSerializable
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The unoxml module provides a nice way to re-serialize a DOM back to
&lt;br&gt;XML, via the css::xml::sax::XSAXSerializable's serialize()
&lt;br&gt;method. Sadly, that takes an XDocumentHandler, and is thusly not
&lt;br&gt;usable for the new-fangled css::xml::sax::XFast* parser stuff. The
&lt;br&gt;new interface adds a way to also serialize a DOM into an
&lt;br&gt;XFastDocumentHandler, module unoxml was extended such that CDocument
&lt;br&gt;also provides this interface.
&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23726543&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/23726543/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-cws-ooxml03-%3A-Complementing-css%3A%3Axml%3A%3Asax%3A%3AXSAXSerializable-with-css%3A%3Axml%3A%3Asax%3A%3AXFastSAXSerializable-tp23726543p23726543.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23614660</id>
	<title>info/cws fwk103 : Additional loggin UNO API.</title>
	<published>2009-05-19T04:47:11Z</published>
	<updated>2009-05-19T04:47:11Z</updated>
	<author>
		<name>Mikhail.Voytenko</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: Additional loggin UNO API.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23614660&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mikhail.Voytenko@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: all
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i101356
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=101356&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=101356&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws fwk103
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/fwk103&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/fwk103&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ interface ::com::sun::star::logging::XSimpleLogRing
&lt;br&gt;+ service ::com::sun::star::logging::SimpleLogRing
&lt;br&gt;+ singleton ::com::sun::star::logging::DocumentIOLogRing
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The singleton ::com::sun::star::logging::DocumentIOLogRing is intended
&lt;br&gt;to be used during the document storing process. It is filled with the
&lt;br&gt;messages from the most important framework parts of the storing source
&lt;br&gt;code including document error setting. Because of limited size it is
&lt;br&gt;reccomended not to use the singleton without communication with the
&lt;br&gt;source code owner.
&lt;br&gt;&lt;br&gt;The service ::com::sun::star::logging::SimpleLogRing is a base for the
&lt;br&gt;mentioned singleton and can be used in other implementations.
&lt;br&gt;&lt;br&gt;Please see the IDL files for details.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23614660&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23614660&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23614660&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-cws-fwk103-%3A-Additional-loggin-UNO-API.-tp23614660p23614660.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23613808</id>
	<title>required/cws fwk103 : Additional logging mechanics while setting error.</title>
	<published>2009-05-19T03:48:39Z</published>
	<updated>2009-05-19T03:48:39Z</updated>
	<author>
		<name>Mikhail.Voytenko</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: required
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: Additional logging mechanics while setting error.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23613808&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Mikhail.Voytenko@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: all
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i101356
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=101356&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=101356&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws fwk103
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/fwk103&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/fwk103&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;- void SfxObjectShell::SetError( sal_uInt32 rErr );
&lt;br&gt;+ void SfxObjectShell::SetError( sal_uInt32 rErr, const ::rtl::OUString&amp; aLogMessage );
&lt;br&gt;&lt;br&gt;- void SfxMedium::SetError( sal_uInt32 rErr );
&lt;br&gt;+ void SfxMedium::SetError( sal_uInt32 rErr, const ::rtl::OUString&amp; aLogMessage );
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;There are some mysterious cases when a document can not be stored. The
&lt;br&gt;problem
&lt;br&gt;with those cases is that sometimes they are reproducible once pro year
&lt;br&gt;for a
&lt;br&gt;user. To allow getting more information in such cases an additional
&lt;br&gt;logging mechanics is implemented.
&lt;br&gt;&lt;br&gt;The new methods allow to provide additional logging information while
&lt;br&gt;setting the error. The suggested pattern is as following
&lt;br&gt;SetError( nErr, ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
&lt;br&gt;OSL_LOG_PREFIX ) ) );
&lt;br&gt;&lt;br&gt;or
&lt;br&gt;&lt;br&gt;SetError( nErr, ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
&lt;br&gt;OSL_LOG_PREFIX &amp;quot;Message&amp;quot; ) ) );
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23613808&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23613808&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23613808&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/required-cws-fwk103-%3A-Additional-logging-mechanics-while-setting-error.-tp23613808p23613808.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23443352</id>
	<title>info/CWS dba32b : SdrObject/SvxShape property notification infrastructure</title>
	<published>2009-05-08T03:09:12Z</published>
	<updated>2009-05-08T03:09:12Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: SdrObject/SvxShape property notification infrastructure
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443352&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32b
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ &amp;lt;svx/shapeproperty.hxx&amp;gt;
&lt;br&gt;+ ::svx::ShapeProperty
&lt;br&gt;+ &amp;lt;svx/shapepropertynotifier.hxx&amp;gt;
&lt;br&gt;+ ::svx::IPropertyValueProvider
&lt;br&gt;+ ::svx::PropertyChangeNotifier
&lt;br&gt;+ ::svx::PropertyChangeNotifier&amp;
&lt;br&gt;&amp;nbsp; SdrObject::getShapePropertyChangeNotifier();
&lt;br&gt;+ SdrObject::notifyShapePropertyChange( const ShapeProperty );
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The pairing of SdrObject and SvxShape now has an infrastructure for
&lt;br&gt;notifying changes in the properties of the UNO shape.
&lt;br&gt;&lt;br&gt;That is, components registering as PropertyChangeListener at the UNO
&lt;br&gt;shape now in fact have a chance of being notified of changes in the
&lt;br&gt;property they're interested in.
&lt;br&gt;&lt;br&gt;For this, a SvxShape owns a PropertyChangeNotifier instance, which
&lt;br&gt;manages the property change listeners, and their notification. This
&lt;br&gt;listener instance can be accessed and controlled either via the
&lt;br&gt;SvxShape, or via the SdrObject.
&lt;br&gt;&lt;br&gt;Whenever a facet of the SdrObject changes, where this results in a
&lt;br&gt;change of a property at the UNO shape,
&lt;br&gt;PropertyChangeNotifier::notifyPropertyChange can be used. Effectively,
&lt;br&gt;broadcasting such a change boils down to calling
&lt;br&gt;SdrObject::notifyShapePropertyChange.
&lt;br&gt;&lt;br&gt;For every property which supports this notification mechanism (the
&lt;br&gt;ShapeProperty enum lists them all), the SvxShape's
&lt;br&gt;PropertyChangeNotifier instance needs a component implementing the
&lt;br&gt;IPropertyValueProvider interface, which is able to obtain the current
&lt;br&gt;property value from the SvxShape. This indirection is necessary to
&lt;br&gt;also support attribute changes: Attributes such as a shapes geometry
&lt;br&gt;(XShape::getPosition and XShape::getSize) are not accessible via
&lt;br&gt;XPropertySet, so obtaining them is done by a dedicated
&lt;br&gt;IPropertyValueProvider provider implementation.
&lt;br&gt;&lt;br&gt;Using this mechanism, UNO shapes now broadcast changes in their
&lt;br&gt;Position and Size. Also, UNO shapes in text documents broadcast
&lt;br&gt;changes in the AnchorType property, and UNO shapes in spreadsheets
&lt;br&gt;broadcast changes in the Anchor property.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443352&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443352&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443352&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32b-%3A-SdrObject-SvxShape-property-notification-infrastructure-tp23443352p23443352.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23443190</id>
	<title>info/CWS dba32b : unotools/servicehelper.hxx removed in favour of comphelper/servicehelper.hxx</title>
	<published>2009-05-08T02:54:37Z</published>
	<updated>2009-05-08T02:54:37Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: unotools/servicehelper.hxx removed in favour of comphelper/servicehelper.hxx
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443190&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32b
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;- &amp;lt;unotools/servicehelper.hxx&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;unotools/servicehelper.hxx has been removed form the source. It was a
&lt;br&gt;duplicated version of comphelper/servicehelper.hxx (even using the
&lt;br&gt;same include guard). All places using it have been adjusted to use the
&lt;br&gt;comphelper-version.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443190&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443190&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443190&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32b-%3A-unotools-servicehelper.hxx-removed-in-favour-of-comphelper-servicehelper.hxx-tp23443190p23443190.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23443168</id>
	<title>info/CWS dba32b : -</title>
	<published>2009-05-08T02:53:09Z</published>
	<updated>2009-05-08T02:53:09Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: -
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443168&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32b
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ &amp;lt;comphelper/componentbase.hxx&amp;gt;
&lt;br&gt;+ ::comphelper::ComponentBase
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;::comphelper::ComponentBase is intended as base class for UNO
&lt;br&gt;components, relieving them from some repeated tasks. In particular, it
&lt;br&gt;manages your ::osl::Mutex and ::cppu::OBroadcastHelper which they're
&lt;br&gt;likely to need, and offers helpers for checking the initialization
&lt;br&gt;state (if desired) and the &amp;quot;disposed&amp;quot; state.
&lt;br&gt;For instance, instantiating an ComponentMethodGuard at the beginning
&lt;br&gt;of your UNO method will ensure that
&lt;br&gt;- the method is not entered when the object is not yet initialized,
&lt;br&gt;but is required
&lt;br&gt;&amp;nbsp; to be
&lt;br&gt;- the method is not entered when the object is already disposed, as
&lt;br&gt;indicated
&lt;br&gt;&amp;nbsp; by the BroadcastHelper
&lt;br&gt;- the component's mutex is locked as long as the guard is alive (and not
&lt;br&gt;&amp;nbsp; explicitly cleared)
&lt;br&gt;&lt;br&gt;For details, see
&lt;br&gt;&lt;a href=&quot;http://svn.services.openoffice.org/ooo/cws/dba32b/comphelper/inc/comphelper/componentbase.hxx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.services.openoffice.org/ooo/cws/dba32b/comphelper/inc/comphelper/componentbase.hxx&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443168&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443168&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443168&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32b-%3A---tp23443168p23443168.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23443080</id>
	<title>info/CWS dba32b : new: css.container.(X)(Enumerable)Map</title>
	<published>2009-05-08T02:46:40Z</published>
	<updated>2009-05-08T02:46:40Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: css.container.(X)(Enumerable)Map
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443080&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32b
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ com.sun.star.container.XMap
&lt;br&gt;+ com.sun.star.container.XEnumerableMap
&lt;br&gt;+ com.sun.star.container.EnumerableMap
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;&lt;a href=&quot;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/XMap.idl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/XMap.idl&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/XEnumerableMap.idl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/XEnumerableMap.idl&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/EnumerableMap.idl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.services.openoffice.org/ooo/cws/dba32b/udkapi/com/sun/star/container/EnumerableMap.idl&lt;/a&gt;&lt;br&gt;&lt;br&gt;XMap is a generic interface for mapping objects to objects,
&lt;br&gt;XEnumerableMap extends it with enumeration capabilities, and
&lt;br&gt;EnumerableMap describes a default implementation for XEnumerableMap.
&lt;br&gt;&lt;br&gt;See the above links for details.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443080&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443080&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443080&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32b-%3A-new%3A-css.container.%28X%29%28Enumerable%29Map-tp23443080p23443080.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23443035</id>
	<title>info/CWS dba32b : OOoRunner: complexlib.Assurance: +assureException</title>
	<published>2009-05-08T02:42:30Z</published>
	<updated>2009-05-08T02:42:30Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: OOoRunner: complexlib.Assurance: +assureException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443035&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: CWS dba32b
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dba32b&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;class complexlib.Assurance:
&lt;br&gt;+ protected void assureException( final String _message,
&lt;br&gt;&amp;nbsp; &amp;nbsp; final Object _object, final String _methodName,
&lt;br&gt;&amp;nbsp; &amp;nbsp; final Class[] _argClasses, final Object[] _methodArgs,
&lt;br&gt;&amp;nbsp; &amp;nbsp; final Class _expectedExceptionClass )
&lt;br&gt;+ various flavours
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;complexlib.Assurance, base class of complexlib.ComplexTestCase, now
&lt;br&gt;has a facility to check a certain exception being thrown (or not
&lt;br&gt;thrown) when invoking a given method.
&lt;br&gt;&lt;br&gt;For this, the method with the given name is looked up at the given
&lt;br&gt;object (using introspection), and called with the given parameters. If
&lt;br&gt;the given exception class is not null, then the method is expected to
&lt;br&gt;throw an exception of the given class. If the exception class is null,
&lt;br&gt;then the method is expected to throw no exception.
&lt;br&gt;If this expectation does not meet reality, this is delegated (with the
&lt;br&gt;given message) to the Assurance.assure method, effectively throwing an
&lt;br&gt;AssureException this way.
&lt;br&gt;&lt;br&gt;For convenience, and as usual for the other assureSomething methods,
&lt;br&gt;there are versions of assureException which do not take a message, but
&lt;br&gt;generate a default one. Also, there are versions which do not take the
&lt;br&gt;_argClasses parameter, but deduce the classes of the parameters of the
&lt;br&gt;given method from _methodArgs (which works only if those are not null).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443035&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443035&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23443035&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-dba32b-%3A-OOoRunner%3A-complexlib.Assurance%3A-%2BassureException-tp23443035p23443035.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23442958</id>
	<title>info/DEV : OOoRunner: added lib.TestParameters.getComponentContext</title>
	<published>2009-05-08T02:36:31Z</published>
	<updated>2009-05-08T02:36:31Z</updated>
	<author>
		<name>Frank Schoenheit, Sun Microsystems Germany</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: OOoRunner: added lib.TestParameters.getComponentContext
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23442958&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;frank.schoenheit@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;Effective from: DEV
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ XComponentContext lib.TestParameters.getComponentContext
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;for convenience when writing test cases based on the
&lt;br&gt;OOoRunner/complexlib framework, the TestParameters class got a method
&lt;br&gt;getComponentContext, complementing the existing getMSF, and retrieving
&lt;br&gt;the component context belonging to the service factory.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23442958&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23442958&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23442958&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-DEV-%3A-OOoRunner%3A-added-lib.TestParameters.getComponentContext-tp23442958p23442958.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23441209</id>
	<title>info/DEV300 CWS sb110 : scp: NativeServicesURLPrefix for individual libraries</title>
	<published>2009-05-08T00:13:21Z</published>
	<updated>2009-05-08T00:13:21Z</updated>
	<author>
		<name>Stephan Bergmann</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: scp: NativeServicesURLPrefix for individual libraries
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23441209&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stephan.bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: scp2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i101244
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=101244&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=101244&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: DEV300 CWS sb110
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb110&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/sb110&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;-
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;A NativeServicesURLPrefix line can now not only be contained in the
&lt;br&gt;scp2 file entry for the services rdb itself, but also individually in
&lt;br&gt;the scp2 file entry of a libraries that is registered in a services
&lt;br&gt;rdb (taking precedence for that individual library). &amp;nbsp;(On demand, the
&lt;br&gt;same feature could also be added for JavaServicesURLPrefix.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23441209&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23441209&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23441209&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-DEV300-CWS-sb110-%3A-scp%3A-NativeServicesURLPrefix-for-individual-libraries-tp23441209p23441209.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23371199</id>
	<title>info/CWS odfmetadata2 : new: RDF API: module css.rdf</title>
	<published>2009-05-04T08:50:50Z</published>
	<updated>2009-05-04T08:50:50Z</updated>
	<author>
		<name>mst-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: RDF API: module css.rdf
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mst@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: offapi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i90620
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=90620&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=90620&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odfmetadata2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;+ module com.sun.star.rdf
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;there is a new API for handling RDF data:
&lt;br&gt;&lt;br&gt;/** RDF (Resource Description Framework) and metadata interfaces.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; This module provides interfaces for storing and accessing metadata
&lt;br&gt;&amp;nbsp; &amp;nbsp; in &amp;lt;a href=&amp;quot;&lt;a href=&quot;http://www.w3.org/RDF/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/RDF/&lt;/a&gt;&amp;quot;&amp;gt;Resource Description Framework&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; format.
&lt;br&gt;&amp;nbsp; &amp;nbsp; The API consists of two main parts: the RDF data model and the ODF
&lt;br&gt;&amp;nbsp; &amp;nbsp; document integration.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; The &amp;lt;a href=&amp;quot;&lt;a href=&quot;http://www.w3.org/TR/rdf-concepts/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/rdf-concepts/&lt;/a&gt;&amp;quot;&amp;gt;RDF data model&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; describes graphs of statements.
&lt;br&gt;&amp;nbsp; &amp;nbsp; The nodes in the graph are of type &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XNode&amp;lt;/type&amp;gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; which has several subtypes: &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XResource&amp;lt;/type&amp;gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XBlankNode&amp;lt;/type&amp;gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XURI&amp;lt;/type&amp;gt; and &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XLiteral&amp;lt;/type&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; Statements are then triples of nodes, and have type
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;Statement&amp;lt;/type&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; The main part of the RDF data model is the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XRepository&amp;lt;/type&amp;gt;, which consists of a set of
&lt;br&gt;graphs.
&lt;br&gt;&amp;nbsp; &amp;nbsp; The repository allows for importing/exporting graphs from/to files,
&lt;br&gt;&amp;nbsp; &amp;nbsp; as well as querying the contents of the repository.
&lt;br&gt;&amp;nbsp; &amp;nbsp; The type of the graphs is &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XNamedGraph&amp;lt;/type&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; Documents that support metadata implement the interfaces
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XRepositorySupplier&amp;lt;/type&amp;gt; and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XDocumentMetadataAccess&amp;lt;/type&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; Furthermore, all elements of ODF documents that may have metadata
&lt;br&gt;attached
&lt;br&gt;&amp;nbsp; &amp;nbsp; implement the interface &amp;lt;type scope=&amp;quot;rdf&amp;quot;&amp;gt;XMetadatable&amp;lt;/type&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;*/
&lt;br&gt;module rdf {};
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371199&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371199&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-odfmetadata2-%3A-new%3A-RDF-API%3A-module-css.rdf-tp23371199p23371199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23371194</id>
	<title>info/CWS odfmetadata2 : xmloff: support for namespaces in export (and RDFa)</title>
	<published>2009-05-04T08:50:33Z</published>
	<updated>2009-05-04T08:50:33Z</updated>
	<author>
		<name>mst-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: xmloff: support for namespaces in export (and RDFa)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mst@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: xmloff
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i90620
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=90620&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=90620&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odfmetadata2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;&amp;lt;xmloff/xmlexp.hxx&amp;gt;, &amp;lt;xmloff/xmlimp.hxx&amp;gt;:
&lt;br&gt;+ OUString SvXMLExport::EnsureNamespace(OUString const &amp; i_rNamespace,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OUString const &amp; i_rPreferredPrefix );
&lt;br&gt;+ uno::Reference&amp;lt; uno::XComponentContext &amp;gt; SvXMLImport::GetComponentContext() const;
&lt;br&gt;+ uno::Reference&amp;lt; uno::XComponentContext &amp;gt; SvXMLExport::GetComponentContext() const;
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;xmloff now has infrastructure for importing and exporting RDFa.
&lt;br&gt;&lt;br&gt;Due to the use of CURIEs in RDFa, the export support required the
&lt;br&gt;ability to define namespace mappings, which was previously not possible.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /** ensures that the given namespace is in scope at the next started
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; element.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;If the namespace is not yet declared, the necessary
&lt;br&gt;attribute will
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; be added, as well.&amp;lt;/p&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @param i_rNamespace &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; the namespace to be declared
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @param i_rPreferredPrefix &amp;nbsp; (opt.) preferred prefix for the
&lt;br&gt;namespace
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @returns the actual prefix that the namespace is associated with
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; */
&lt;br&gt;&amp;nbsp; &amp;nbsp; OUString SvXMLExport::EnsureNamespace(OUString const &amp; i_rNamespace,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OUString const &amp; i_rPreferredPrefix =
&lt;br&gt;OUString::createFromAscii(&amp;quot;gen&amp;quot;) );
&lt;br&gt;&lt;br&gt;&lt;br&gt;As a bonus, the import/export classes now know the process component
&lt;br&gt;context.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371194&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371194&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371194&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-odfmetadata2-%3A-xmloff%3A-support-for-namespaces-in-export-%28and-RDFa%29-tp23371194p23371194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23371185</id>
	<title>info/CWS odfmetadata2 : new: OUStringBufferAppender and intersperse</title>
	<published>2009-05-04T08:50:14Z</published>
	<updated>2009-05-04T08:50:14Z</updated>
	<author>
		<name>mst-2</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: new: OUStringBufferAppender and intersperse
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371185&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mst@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: comphelper
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i90620
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=90620&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=90620&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: CWS odfmetadata2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/odfmetadata2&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: new
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;&amp;lt;comphelper/stl_types.hxx&amp;gt;:
&lt;br&gt;+ class OUStringBufferAppender
&lt;br&gt;+ OutputIter intersperse(
&lt;br&gt;&amp;nbsp; &amp;nbsp; ForwardIter start, ForwardIter end, OutputIter out, T const &amp; separator)
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;+ class OUStringBufferAppender
&lt;br&gt;&lt;br&gt;This class implements the STL output iterator interface and allows
&lt;br&gt;appending to an OUStringBuffer with STL algorithms.
&lt;br&gt;&lt;br&gt;+ algorithm intersperse
&lt;br&gt;&lt;br&gt;This STL-inspired algorithm will copy a STL sequence, inserting a
&lt;br&gt;separator element between every element of the source sequence.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Usage example that combines UNO Sequence STL iterators,
&lt;br&gt;OUStringBufferAppender and intersperse:
&lt;br&gt;&lt;br&gt;::rtl::OUString convertCommaSeparated(
&lt;br&gt;&amp;nbsp; &amp;nbsp; ::com::sun::star::uno::Sequence&amp;lt; ::rtl::OUString &amp;gt; const&amp; i_rSeq)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; ::rtl::OUStringBuffer buf;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ::comphelper::intersperse(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::comphelper::stl_begin(i_rSeq), ::comphelper::stl_end(i_rSeq),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::comphelper::OUStringBufferAppender(buf),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::rtl::OUString::createFromAscii(&amp;quot;, &amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; return buf.makeStringAndClear();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371185&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371185&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371185&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-CWS-odfmetadata2-%3A-new%3A-OUStringBufferAppender-and-intersperse-tp23371185p23371185.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23371168</id>
	<title>info/cws/dbaperf1 : jvmaccess::VirtualMachine no longer cares for context class loader</title>
	<published>2009-05-04T08:49:31Z</published>
	<updated>2009-05-04T08:49:31Z</updated>
	<author>
		<name>Stephan Bergmann</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Type: info
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Title: jvmaccess::VirtualMachine no longer cares for context class loader
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Posted by: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371168&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stephan.bergmann@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Affected: -
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TaskId: i99290
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.openoffice.org/issues/show_bug.cgi?id=99290&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openoffice.org/issues/show_bug.cgi?id=99290&lt;/a&gt;&amp;gt;
&lt;br&gt;Effective from: cws/dbaperf1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CWS:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dbaperf1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300/dbaperf1&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; CWS status: integrated
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Summary*
&lt;br&gt;--------
&lt;br&gt;jvmaccess/virtualmachine.hxx:
&lt;br&gt;jvmaccess::VirtualMachine
&lt;br&gt;&lt;br&gt;*Description*
&lt;br&gt;-------------
&lt;br&gt;The class jvmaccess::VirtualMachine took care to set a non-null
&lt;br&gt;context class loader for every thread attached to the VM (especially
&lt;br&gt;native threads that had not been spawned by the VM and would have a
&lt;br&gt;null context class loader). &amp;nbsp;However, this had performance
&lt;br&gt;implications. &amp;nbsp;And after the cleanup of the main class path in OOo any
&lt;br&gt;code that uses the context class loader now needs to set it explicitly
&lt;br&gt;anyway (see
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://blogs.sun.com/GullFOSS/entry/is_your_java_extension_ready&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.sun.com/GullFOSS/entry/is_your_java_extension_ready&lt;/a&gt;&amp;gt;
&lt;br&gt;etc.), so removing the code that sets the context class loader
&lt;br&gt;whenever a thread is attached to the VM appears to be safe.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Send feedback to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371168&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371168&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23371168&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;interface-announce-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/info-cws-dbaperf1-%3A-jvmaccess%3A%3AVirtualMachine-no-longer-cares-for-context-class-loader-tp23371168p23371168.html" />
</entry>

</feed>
