summaryrefslogtreecommitdiffstats
path: root/udkapi/com
Commit message (Collapse)AuthorAgeFilesLines
* *api: fix bunch of lists that doxygen warns aboutMichael Stahl2013-06-044-43/+24
| | | | Change-Id: Ic507170e94d08155430601658689b3d7b96e0f80
* *api: fix a bunch of "illegal" and "empty" tagsMichael Stahl2013-06-042-3/+5
| | | | | | Apparently doxygen doesn't like XML-style empty elements. Change-Id: I0fe8105a196fa3cf5b980f0b6f18933adf8a1d53
* *api: fix unterminated tagsMichael Stahl2013-06-041-1/+1
| | | | Change-Id: Iff23e173e4726682c719c5de303fded0bc671bd3
* *api: fix all unknown commandsMichael Stahl2013-06-046-9/+5
| | | | Change-Id: Ied26925485b2be649cabafff338e6d78c7bd17b3
* *api: convert unsupported HTML entitiesMichael Stahl2013-06-042-8/+8
| | | | | | Most of these are just cosmetic, and middot can be replaced by cdot. Change-Id: I39a45a2d5d0f10b5b0e793b6fa5e0c041c4669d5
* *api: convert all unsupported html tagsMichael Stahl2013-06-041-3/+1
| | | | | | | Only useful ones appear to be <tbody> and <thead> which doxygen doesn't support but we only use those in 3 places so who cares. Change-Id: I374f7d208873a8436fe76e0f800ce18df5b188b3
* *api: convert <listing> and @exampleMichael Stahl2013-06-043-14/+10
| | | | | | | | | <listing> is called @code / @endcode in doxygen. @example requires a file name in doxygen. Also adapt various silly examples that use tools String in C++ or manual syntax highlighting in Java etc. Change-Id: I23cff1b688001f438526a6a1364cc5f754b504f7
* *api: clean up multi-line and mal-formed XML tagsMichael Stahl2013-06-0424-158/+130
| | | | | | | | | 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
* *api: convert more <method>Michael Stahl2013-06-041-1/+1
| | | | | | sed -i "s,<method>\([^<]\+\)</method>,\1,g" Change-Id: Ic3eef0c03e512f7d607a87c58f9f01626f5a57a1
* *api: convert more <method>Michael Stahl2013-06-041-1/+1
| | | | | | sed -i "s,<method>\([^<]\+[^)]\)</method>,\1(),g" Change-Id: Ie443efb5b283067bc5475810f6848061900d8401
* *api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>Michael Stahl2013-06-0434-85/+85
| | | | | | sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g' Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
* *api: convert <true/> <false/> <void/>Michael Stahl2013-06-045-10/+10
| | | | | | sed -i 's,<\(true\|false\|void\)/>,`\U\1`,g' Change-Id: I87a6e81ff22b47ea979322d01c49350892d3945f
* *api: convert <atom>Michael Stahl2013-06-0421-47/+47
| | | | | | sed -i 's,<atom>\([^<]\+\)</atom>,`\1`,g' Change-Id: I530fe998b0c422e83c4324807d42700126bc9883
* *api: convert more <method scope="foo">Michael Stahl2013-06-041-1/+1
| | | | | | sed -i 's,<method scope="\([^"]*\)">\([^<]\+\)</method>,\1::\2,g' Change-Id: I09ee9ecae922e0b28730d1689b802e6041b3ceed
* *api: convert <method scope="foo">Michael Stahl2013-06-044-6/+6
| | | | | | sed -i 's,<method scope="\([^"]*\)">\([^<][^)]\+\)</method>,\1::\2(),g' Change-Id: I7ceb805d67a79c297fb5f044a8fb226ec2fb366c
* *api: convert <method>foo()</method>Michael Stahl2013-06-041-1/+1
| | | | | | | | What is sad about this is that autodoc doesn't even support <method>. sed -i "s,<method>\([a-z][^<]\+[^)]\)</method>,\1(),g" Change-Id: I702ef71423ced1d5195f2e0535e73b1bb4d3f6f2
* *api: convert <arg>Michael Stahl2013-06-042-4/+4
| | | | | | | | ... which does not seem to do anything anyway. sed -i "s,<arg>\([^<]\+\)</arg>,\1,g" Change-Id: I90bcf81ea046bc88297ed8eadc560ad31d19830b
* *api: convert <const>Michael Stahl2013-06-0412-27/+27
| | | | | | | | | This one is apparently often abused to link to a constant group, while it can only link to constants within a group. sed -i "s,<const>\([^<]\+\)</const>,\1,g" Change-Id: Ic3d8099751340e4b046298c861bb659beb351eaf
* *api: convert rest of <member scope="foo">Michael Stahl2013-06-0415-32/+32
| | | | | | sed -i 's,<member scope="\([^"]*\)">\([^<]\+\)</member>,\1::\2,g' Change-Id: Idbe0adc5a88e430c99257d4d61e540bf0eeaea8f
* *api: convert remaining <member>Michael Stahl2013-06-0416-34/+34
| | | | | | sed -i "s,<member>\([^<]\+\)</member>,\1,g" Change-Id: I74c80f5aa610477fab28faec52e55c3137984aec
* *api: replace <member>Foo</member>Michael Stahl2013-06-042-5/+5
| | | | | | | | These member variables need a # prefix. sed -i "s,<member>\([^<:]\+[^)]\)</member>,#\1,g" Change-Id: I721b90f4edae32b5a362479bdbd60423f6427364
* *api: convert <member scope="foo">bar</member>Michael Stahl2013-06-0410-25/+25
| | | | | | sed -i 's,<member scope="\([^"]*\)">\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1::\2(),g' Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a
* *api: convert <member>Foo::bar</member>Michael Stahl2013-06-0424-39/+39
| | | | | | | | | Doxygen would probably recognize these without () too but add them for consistency. sed -i "s,<member>\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1(),g" Change-Id: I2615b99265b75633459e35164e54d9da7fe76b85
* *api: convert <member>method</member> to method()Michael Stahl2013-06-044-9/+9
| | | | | | | | | 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
* *api: convert <type scope="bar">Foo</type>Michael Stahl2013-06-0469-145/+145
| | | | | | | | This looks much better now. sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80
* *api: convert <type>Foo</type>Michael Stahl2013-06-04113-266/+266
| | | | | | | | | | 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
* Spelling "separate" (etc) correctly is hardTor Lillqvist2013-05-151-1/+1
|
* fdo#46808, Convert script::InvocationAdapterFactory to new styleNoel Grandin2013-05-141-16/+2
| | | | Change-Id: I2fe24c863f4c43471f46032ed15fcd5b98863fc1
* fix typos (wich instead of which)Philipp Riemer2013-05-062-3/+3
|
* fdo#46808, Use service constructor for uri::ExternalUriReferenceTranslatorNoel Grandin2013-05-061-2/+2
| | | | Change-Id: I723b1baf50b75f6aaea86a4784ee10a3d2196e83
* Mark TypeDescriptionProvider service as "don't create by name"Stephan Bergmann2013-04-251-0/+4
| | | | | | ...had to adapt one test that had picked this service apparently arbitrarily. Change-Id: Iaa17b7c622b9ac3601beb3ba931f7b1d99f649f1
* Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks2013-04-223-63/+15
|
* Further clean-up related to removed library unloading featureStephan Bergmann2013-04-161-23/+3
| | | | Change-Id: I1ec2aa4d0ed0940e7c0a26a18c78f2df4693d278
* fdo#60724 successfull -> successfulThomas Arnhold2013-04-151-1/+1
| | | | Change-Id: I287bef5b7f2baf5aaaab47141267ae2cadfe2451
* fdo#46808, Convert beans::PropertyBag to new styleNoel Grandin2013-04-082-12/+54
| | | | Change-Id: Ibb2466af4c9289cba93b8330d10db033d296bfc1
* Forbid old-style services/singletons inheriting new-style servicesStephan Bergmann2013-04-031-4/+4
| | | | | | | ...does not make sense. Adapted some old-style services accordingly, where the inherited service had been changed to new-style after the fact. Change-Id: I5f3e4ddf99160778a319062a6c84f83529ff177b
* Bin DOCUMENTATION OMITTED commentsTor Lillqvist2013-03-133-25/+0
| | | | | | | No need to shout. The lack of documentation is obvious anyway to somebody looking for it. Change-Id: I4f21661c8bff87170bc4e272da29f060eec0dda6
* Bin pointless "DocMerge" comment linesTor Lillqvist2013-03-1390-431/+0
| | | | Change-Id: I8eb2116b39929770f00e30d5ab9ca2c28c988e35
* fdo#60724 change spelling error REMOVEABLE -> REMOVABLEKenneth Beck2013-03-061-3/+3
| | | | | | | | | Only applies to PropertyAttribute::REMOVEABLE, and all instances in comments. All other instances of the misspelling have remained the same. Example: AF_REMOVEABLE Change-Id: I391f4101bbc3e06689318235a37d616065bc1686 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
* Typo fix: informations -> information and a few other adjacent typos.Gregg King2013-03-021-2/+2
| | | | | | | | | FDO:60724 Change-Id: I73ad9f1c37cbbcf28d996ed73c75cf09553e499b Reviewed-on: https://gerrit.libreoffice.org/2479 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
* Fix typo accessable/accessibleJulien Nabet2013-02-232-4/+4
| | | | Change-Id: I2f6d00a6361243a52a593acaaf2bf624d8a2730e
* Fix typo seperated/separatedJulien Nabet2013-02-234-4/+4
| | | | Change-Id: I133423de994b1befe246b6c921802428a3528202
* fdo#46808, convert io::TextOutputStream service to new-styleNoel Grandin2013-02-112-12/+50
| | | | Change-Id: I12af47afc21c2b646197893a77698f4e0818f94f
* fdo#46808, convert io::TextInputStream service to new styleNoel Grandin2013-02-112-13/+50
| | | | Change-Id: Ida4abdd6587399aa8ade88af672bcb23ab7ea0f1
* fdo#46808, Use singleton util::theMacroExpander new-style constructorNoel Grandin2013-02-112-7/+4
| | | | | | And deprecate the old-style service util::MacroExpander Change-Id: Ifcefe31a8f8c68c6d44d6ec19616727eb607e1cd
* fdo#46808, Adapt java::JavaVirtualMachine UNO service to new styleNoel Grandin2013-02-111-14/+3
| | | | Change-Id: Ib0329b9cdc4290ce98c4182e8466c1b44b408341
* API CHANGE: Make TypeDescriptionManager/Provider more consistentStephan Bergmann2013-01-302-9/+20
| | | | | | | | | | | | ...by letting their getByHierarchicalName methods return information about UNO constants as X(Constant)TypeDescription values, just as for (alomst -- see the odd enum member case) all other entities. This will make future changes in this area easier. The only affected client I could find so far is the core reflection service, but there might be more that I overlooked. Change-Id: I6731f2914773d49e33eeaec6e256ff2e5409ad2d
* clean up all the UNO IDL module header guardsNoel Grandin2012-12-2115-30/+31
| | | | | | | | | | .. 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
* API CHANGE remove [oneway] method attributesThorsten Behrens2012-11-3012-24/+24
| | | | | | | Remove non-functional and broken [oneway] attributes from all idl files. Change idl compiler to no longer digest such idl. Change-Id: Ie14c5012beccb6242d7cd592d434a88091b695d1
* fdo#57655: Improve wordingStephan Bergmann2012-11-291-1/+1
| | | | Change-Id: I364155ffc76f6917e4d06c6231401609f75f3ed5