summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
AgeCommit message (Collapse)AuthorFilesLines
2013-06-04*api: tweak docsMichael Stahl4-15/+18
Change-Id: I20878a3977fe7b3ab7e733a7bc0d704fb5835009
2013-06-04*api: fix unterminated tagsMichael Stahl1-1/+1
Change-Id: Iff23e173e4726682c719c5de303fded0bc671bd3
2013-06-04*api: fix all unknown commandsMichael Stahl2-2/+2
Change-Id: Ied26925485b2be649cabafff338e6d78c7bd17b3
2013-06-04*api: clean up multi-line and mal-formed XML tagsMichael Stahl4-11/+10
It is amazing what some people believe autodoc supports. Also, com::sun::star::uno::Any does not exist in IDL, that is part of the C++ language binding. Change-Id: I1f1f5cf5d27663ace6ff618ecbecb41fd2dfa1fc
2013-06-04*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>Michael Stahl1-2/+2
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g' Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
2013-06-04*api: convert remaining <member>Michael Stahl6-8/+8
sed -i "s,<member>\([^<]\+\)</member>,\1,g" Change-Id: I74c80f5aa610477fab28faec52e55c3137984aec
2013-06-04*api: convert <member scope="foo">bar</member>Michael Stahl1-9/+9
sed -i 's,<member scope="\([^"]*\)">\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1::\2(),g' Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a
2013-06-04*api: convert <member>Foo::bar</member>Michael Stahl4-7/+7
Doxygen would probably recognize these without () too but add them for consistency. sed -i "s,<member>\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1(),g" Change-Id: I2615b99265b75633459e35164e54d9da7fe76b85
2013-06-04*api: convert <member>method</member> to method()Michael Stahl2-3/+3
Doxygen will only recognize a un-qualified method name as such if it is followed by "()". sed -i "s,<member>\([a-z][^<]\+[^)]\)</member>,\1(),g" Change-Id: I69bc17849e76f3a3d91c6daf0f1be8168a83cfc5
2013-06-04*api: convert <type scope="bar">Foo</type>Michael Stahl6-10/+10
This looks much better now. sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80
2013-06-04*api: convert <type>Foo</type>Michael Stahl15-27/+27
Doxygen does not know type element and will recognize strings that contain capital letter (all API types do) automatically as type. This patch removes 15k doxygen warnings. git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1," Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
2013-03-13Bin pointless "DocMerge" comment linesTor Lillqvist36-198/+0
Change-Id: I8eb2116b39929770f00e30d5ab9ca2c28c988e35
2013-02-23Fix typo seperated/separatedJulien Nabet1-1/+1
Change-Id: I133423de994b1befe246b6c921802428a3528202
2013-02-11fdo#46808, convert io::TextOutputStream service to new-styleNoel Grandin2-12/+50
Change-Id: I12af47afc21c2b646197893a77698f4e0818f94f
2013-02-11fdo#46808, convert io::TextInputStream service to new styleNoel Grandin2-13/+50
Change-Id: Ida4abdd6587399aa8ade88af672bcb23ab7ea0f1
2012-12-21clean up all the UNO IDL module header guardsNoel Grandin3-6/+6
.. so I don't keep tripping over the bad ones during my UNO cleanup work. (1) make them all use a similar syntax, makes it easier to run my automatic checker (2) some of them were just cut'n'paste accidents waiting to happen (3) remove unnecessary header guards in the __including__ file. That is very brittle. Change-Id: I4e679c15161483ad93aeb316a25d6db6d97e9d4e
2012-11-30API CHANGE remove [oneway] method attributesThorsten Behrens3-6/+6
Remove non-functional and broken [oneway] attributes from all idl files. Change idl compiler to no longer digest such idl. Change-Id: Ie14c5012beccb6242d7cd592d434a88091b695d1
2012-11-20sal, cppuhelper, udkapi, offapi: s/@since 3.7/@since 4.0/Michael Stahl1-1/+1
Change-Id: Iefbe31af8d6ec421c6006423b6ee3a6375e3d453
2012-09-14fdo#46808, Add @since tags to new IDL interfacesNoel Grandin1-4/+3
Change-Id: Ib351d92d071f6e93ec5eac93c0ab964cef7e7e2f
2012-09-03fdo#46808, Adapt io::Pipe UNO service to new styleNoel Grandin2-14/+58
Create a merged XPipe interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I682633c6252aab503eb2469c9bd2ba771f10bc4b
2012-08-12Remove comment art from offapi and udkapiJean-Tiare LE BIGOT53-233/+0
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
2012-08-07remove empty ascii boxes and stuff IIThomas Arnhold36-108/+0
Change-Id: I7fc113f8d59f7c82bae6acace7bf4230b4c2bbea
2012-07-30udkapi, offapi: do not use #include "foo":Michael Stahl1-2/+2
Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include <foo> and treats it as a relative path, while the angle brackets always result in absolute paths. Since relative paths result in infinite rebuilds if make is invoked in a different directory, don't use #include "foo" in IDL files. Change-Id: Iedcda3a4be5542389a0be086f14541cda8dc5323
2012-07-02re-base on ALv2 code.Michael Meeks2-49/+31
2012-06-12re-base on ALv2 code.Michael Meeks52-1274/+806
2012-01-26Revert publishing of lots of UNO types.Thorsten Behrens2-2/+2
See issue i#117329 This reverts commit fb2b2be1bf566b5ef4d308332dbbdfe7012f6f1c. This reverts commit 0b494e0cb9eb6652d00397fb6ca8d9b6709e4cb5. This reverts commit 3e396922c2926165d680e8051c3d9247ea4aaf78. This reverts commit 0461d179dddc2caab6315e6f7ec7bb3804dd017a. This reverts commit 0f79c68194206864c993cd0fb01a485d2db2664f. This reverts commit 65162840e329afee6f401f5a91273c2dbd1bbdf8. Conflicts: offapi/com/sun/star/drawing/XSlidePreviewCache.idl offapi/com/sun/star/drawing/framework/XPaneBorderPainter.idl offapi/com/sun/star/rendering/FontInfo.idl offapi/com/sun/star/rendering/XBezierPolyPolygon2D.idl offapi/com/sun/star/rendering/XColorSpace.idl offapi/com/sun/star/report/XFixedLine.idl offapi/com/sun/star/report/XFixedText.idl offapi/com/sun/star/report/XFormattedField.idl offapi/com/sun/star/report/XFunctionsSupplier.idl offapi/com/sun/star/report/XImageControl.idl offapi/com/sun/star/report/XReportControlFormat.idl offapi/com/sun/star/report/XReportDefinition.idl offapi/com/sun/star/xml/crypto/SEInitializer.idl
2012-01-05add mode-lines to .idl filesCaolán McNamara54-0/+161
2011-08-09Add newline at endTor Lillqvist1-1/+1
2011-06-18ause130: #i117218# change .idl handling to gnu makeHans-Joachim Lankenau1-99/+0
2011-04-22Merge commit 'ooo/DEV300_m106' into libreoffice-3-4Jan Holesovsky2-2/+2
Conflicts: offapi/com/sun/star/animations/XAnimationNode.idl offapi/com/sun/star/awt/grid/XGridColumn.idl offapi/com/sun/star/drawing/framework/XPaneBorderPainter.idl offapi/com/sun/star/frame/ModuleManager.idl offapi/com/sun/star/frame/XLayoutManager.idl offapi/com/sun/star/frame/XLayoutManagerListener.idl offapi/com/sun/star/rendering/FontInfo.idl offapi/com/sun/star/rendering/XBezierPolyPolygon2D.idl offapi/com/sun/star/rendering/XCanvas.idl offapi/com/sun/star/rendering/XSprite.idl offapi/com/sun/star/report/ForceNewPage.idl offapi/com/sun/star/report/ReportPrintOption.idl offapi/com/sun/star/report/XFunctionsSupplier.idl offapi/com/sun/star/report/XReportControlFormat.idl offapi/com/sun/star/resource/StringResourceWithLocation.idl offapi/com/sun/star/resource/XStringResourceResolver.idl offapi/com/sun/star/resource/XStringResourceWithLocation.idl offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl offapi/com/sun/star/security/XCertificateContainer.idl offapi/com/sun/star/ui/UIElementFactory.idl offapi/com/sun/star/ui/XImageManager.idl offapi/com/sun/star/ui/XUIConfigurationManager.idl offapi/com/sun/star/ui/XUIElementFactory.idl offapi/com/sun/star/ui/XUIElementSettings.idl offapi/com/sun/star/xml/crypto/SEInitializer.idl offapi/com/sun/star/xml/crypto/XSEInitializer.idl offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl offapi/com/sun/star/xml/crypto/XXMLSecurityContext.idl sal/rtl/source/alloc_arena.c udkapi/com/sun/star/task/XInteractionHandler2.idl
2011-03-27Strip include guards in idl files. Some include in ifndef were still presentJulien Nabet1-4/+0
2011-03-26Strip include guards in idl files in ure/udkapiJulien Nabet53-225/+0
2011-03-15#i117329# - Publishing of UNO types, first wave.Kai Sommerfeld2-2/+2
2011-01-06jsc340: i115337: correct since tagsJuergen Schmidt1-1/+1
2010-11-02jsc340: i115337: cleanup since tagsJuergen Schmidt1-1/+1
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien55-221/+55
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2008-04-11INTEGRATION: CWS changefileheader (1.15.12); FILE MERGEDRüdiger Timm1-23/+19
2008/03/31 16:17:39 rt 1.15.12.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.8.92); FILE MERGEDRüdiger Timm2-46/+36
2008/03/31 16:17:39 rt 1.8.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.7.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.7.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.10.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.10.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.9.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.9.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.2.12); FILE MERGEDRüdiger Timm2-46/+36
2008/03/31 16:17:39 rt 1.2.12.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.11.92); FILE MERGEDRüdiger Timm2-46/+36
2008/03/31 16:17:39 rt 1.11.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.2.26); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.2.26.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.12.92); FILE MERGEDRüdiger Timm4-92/+72
2008/03/31 16:17:39 rt 1.12.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.14.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.14.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.13.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:39 rt 1.13.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.6.92); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:38 rt 1.6.92.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.17.88); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 16:17:38 rt 1.17.88.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.11.92); FILE MERGEDRüdiger Timm9-207/+162
2008/03/31 16:17:38 rt 1.11.92.1: #i87441# Change license header to LPGL v3.