summaryrefslogtreecommitdiff
path: root/source/text/sbasic
AgeCommit message (Collapse)Author
2017-05-08Typo: “common area” → “common era”Adolfo Jayme Barrientos
Change-Id: Ie9c3dfce3b5981defffad11eea3df4bd63d34148
2017-05-04Remove erroneous commit of source/text/sbasic/shared/03030108.xhp.rejEike Rathke
Change-Id: I2d5cb2f514d1a1564868d0abf442cd01ff28e7c7
2017-05-04CDateFromIso: also with separators; date range and year representationEike Rathke
Change-Id: Ifd83a84b300074be10fe039ba2e30b94f6bf1327
2017-05-04CDateFromIso: also with separators; date range and year representationEike Rathke
Change-Id: Ib946c3654805f8ae4bff1c7e3a0a26083bfb8df6
2017-05-03Fix typo in year rangeEike Rathke
Change-Id: If739f647f463795c3264a557bf83a8f6dbfb49fb
2017-05-03CDateToIso: details about format, date range and year representationEike Rathke
Change-Id: Id50e465356bde9f99afc2225d82d01f0225bd957
2017-01-30update helpids for .ui conversionCaolán McNamara
Change-Id: I88db8390a188e3d6b60dead17428826eb36a0232
2017-01-30update helpids for .ui conversionCaolán McNamara
Change-Id: I685964b0b111eaa548bba3b880bcbac9cd84a217
2017-01-25Basic: remove ^MLaurent Balland-Poirier
Remove ^M characters at end of line remove tabulation characters Change-Id: I96345f88c732ad5c40a6143437cccf064aca0738 Reviewed-on: https://gerrit.libreoffice.org/33387 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2016-12-27Fix syntax of example in 03104300.xhpOlivier
A function result is allways assigned to a variable Change-Id: Id422f9018cacca1eb2022c03568d8aad9edfe8fd Reviewed-on: https://gerrit.libreoffice.org/32461 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2016-09-15Change file extensions in examples: sxw -> odt, sxc -> odsGabor Kelemen
Some examples still used the old StarOffice extensions. Change-Id: Id6f7a28f0ff8511181f3641d8ad9f6f5896cef68 Reviewed-on: https://gerrit.libreoffice.org/28925 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2016-06-21remove "-" between FileAttr-Function and FileLen-FunctionChristian Lohmaier
to be consistent with the rest of the functions reported via pootle-feedback Change-Id: I6e95109a8cf4145dc84ab0f3ad699d74ee05d932
2016-06-16Recover lost basic in help indentationCaolán McNamara
regression from... commit 6614bedceadcc07ec082c5e926107f27903bda5c Date: Mon Jan 25 20:07:10 2016 +0100 fix validation errors by round-trip through helpauthoring extension with git show 6614bedceadcc07ec082c5e926107f27903bda5c | ~/recoverindent.py import fileinput import re import sys added = [] removed = [] filename = "" def processlastfile(filename, added, removed): if len(added) != len(removed): print "BROKEN" sys.exit(-2) if len(removed): f = open(filename, "rw") linestring = open(filename, "r").read() start = 0 for x in range(0, len(added)): if added[x] == removed[x]: continue if added[x].strip() != removed[x].strip(): print "BROKEN" sys.exit(-2) if filename == "source/text/sbasic/shared/03080301.xhp" and x == 6: print "skipping special hunk", removed[x], "in source/text/sbasic/shared/03080301.xhp" else: start = linestring.find(added[x], start) if start == -1: print "BROKEN" sys.exit(-2) linestring = linestring[0:start] + removed[x] + linestring[start + len(added[x]):] start = start + len(removed[x]) open(filename, "w").write(linestring) for line in fileinput.input(): if line.startswith("--- a/"): if filename is not "": processlastfile(filename, added, removed) added = [] removed = [] filename = line[6:-1] elif "role=\"bascode\"" in line: m = re.search('>(.+?)<', line) code = m.group(1) if line.startswith("-"): removed.append(code) else: added.append(code) processlastfile(filename, added, removed) which puts the code back the way it was, except for one string which had changed and was fixed manually afterwards Change-Id: Ic67abf36bb5d27be58a51ebbf5022830f56dcb37
2016-05-22Do not translate numbers ... (2)Olivier Hallot
Change-Id: Iff0930493bed0a839869a02518aa879cc6d11068 Reviewed-on: https://gerrit.libreoffice.org/25276 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
2016-05-22Do not translate numbers...Olivier Hallot
Change-Id: I87d272719a0a666744951d82f7c522b6cd554bc7 Reviewed-on: https://gerrit.libreoffice.org/25275 Reviewed-by: Olivier Hallot <ohallot@collabora.co.uk> Tested-by: Olivier Hallot <ohallot@collabora.co.uk>
2016-05-14tdf#99809 Add back some syntax highlighting tags…Adolfo Jayme Barrientos
… accidentally removed in 8799ced9da7b7aeb37fadf700e062cc3255ebfe0 Change-Id: I799b62bb169dbc0505ed03deef6e460d75a66e9d
2016-05-13tdf#99809: BASIC: Update Rnd function and Randomize statementJohnny_M
BASIC's Rnd function and Randomize statement were updated on tdf#70474 and tdf#90110. (See https://gerrit.libreoffice.org/#/c/15818/ for the latter change.) Their documentation needs to be updated accordingly. Change-Id: I17f6a04858a20a969dc427be43dd903aedc04ecb Reviewed-on: https://gerrit.libreoffice.org/24943 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2016-03-31Fixed a dead link to api.libreoffice.org.Jan Holesovsky
Thanks to Juergen Klatt.
2016-01-25fix validation errors by round-trip through helpauthoring extensionChristian Lohmaier
lots of missing attributes "id" and "xml-lang" (extension patched to keep bascode tag) Change-Id: I9c5600b6fa133a6b1062803eadb976e043db7a4a
2016-01-25link is no valid child of emphChristian Lohmaier
Change-Id: I24009c8eb766d2e99ff96b8ba803e0d92ee73387
2016-01-25switchinline is none of emph's allowed childrenChristian Lohmaier
fixed with following sed expression: 's#<emph>\(<switchinline[^>]*><caseinline[^>]*>\)\([^>]*\)\(</caseinline><defaultinline>\)\([^<]*\)\(</defaultinline></switchinline>\)\([^<]*</emph>\)#\1<emph>\2</emph>\3<emph>\4</emph>\5<emph>\6#g' Change-Id: I03d36f4c52e78ca48fc2f94b275ffad7329071e3
2015-11-12Killed the last remnants of the 'lastedited' element.Jan Holesovsky
2015-11-12The 'lastedited' element is useless, we have git.Jan Holesovsky
2015-09-17Fix embed file reference in Basic IDE help pageOlivier Hallot
Change-Id: If04c7c562983bd81afc8f168677c8be4c308f566 Reviewed-on: https://gerrit.libreoffice.org/18667 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2015-09-02Revert "Remove metadata from embeded xhp files"Olivier Hallot
This reverts commit 29a98d01958bc84710cfedf1e61ddee700df1ff4. Change-Id: I8d96c2b88c29ee286a6915ff528fb65f18de9f7b Reviewed-on: https://gerrit.libreoffice.org/18280 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2015-09-02Remove metadata from embeded xhp filesOlivier Hallot
These help files are embeded into other files and don't need metadata. It will also remove some trings from translation. Change-Id: Ia95352b71b8a716b9c93cf21baed484ae9e94d38 Reviewed-on: https://gerrit.libreoffice.org/18255 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2015-08-31Add example to Basic IDE Options help pageOlivier Hallot
Change-Id: I387ad0c22972392cd5eb1c865e59e94456395d9b Reviewed-on: https://gerrit.libreoffice.org/18164 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-08-26Fix typoOlivier Hallot
Change-Id: I1620c3507722d8aeef11d0480f07bc104b9a7f95 Reviewed-on: https://gerrit.libreoffice.org/18032 Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
2015-08-25TDF#80588 Help page for Basic IDE OptionsOlivier Hallot
Help page for Basic IDE Option in Tools - LibreOffice - Basic IDE Options Before merging this patch it is necessary to verify correctness of the help page contents. Change-Id: Ic80410910ed3eadb02c4fd49c02fc5f1dce053db Reviewed-on: https://gerrit.libreoffice.org/17356 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-08-05missing space Open Statement[Runtime] → Open Statement [Runtime]Christian Lohmaier
Change-Id: If90b4d89c0dc7172b417b30dd242278386813244
2015-02-02fix some ahelp ids of hid . where the current context is empty or wrongCaolán McNamara
related fdo#88970 Change-Id: Ib5aa5f5b608252216817b0e6f38c944e37786df5
2014-07-25remove redundant dollars at InputBox function and fix invalid Basic examplesStanislav Horacek
Change-Id: Idd6f14e127ba5e3939849b0baf7ec499e69e8695 Reviewed-on: https://gerrit.libreoffice.org/10517 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-20fix help xml syntax in access2base.xhpAndras Timar
Change-Id: Id1cc4ed9a9be1db0c4ffda0196439ae39c5643bf
2014-02-11update help ids for manage languages dialogCaolán McNamara
Change-Id: I7975c7ee7ccce9e6563cb0181441deeae08ee109
2014-01-23update help ids for event assign .ui conversionCaolán McNamara
Change-Id: I4457daf43c968cf103cd3b07b3b7bf885d3b7a43
2014-01-06update help ids for macro and dialog tabpage .ui conversionCaolán McNamara
Change-Id: If959d52daf88c6d205cddb691b2426e33c741b88
2014-01-06update help ids for lib page .ui conversionCaolán McNamara
Change-Id: I22fff4675a0b097b39bd23f87c19c61e615ef430
2014-01-03update help ids for default language dialog .ui conversionCaolán McNamara
Change-Id: I56cc822b5c0175dcc8c93cd5a01f8c6d00d96ba7
2014-01-03update help ids for import lib dialogCaolán McNamara
Change-Id: I9603fbd28374686d9dafff80160ca295f4419718
2014-01-02update help ids for basic manage breakpoints dialogCaolán McNamara
Change-Id: I823df9129adf5da840017612245ad62d74814413
2013-12-31update help ids for new lib dialog .ui conversionCaolán McNamara
Change-Id: I0b590ce16c7bbb9fa74a7c4a3d5157a7b89a69d8
2013-11-05basic code not localisableLionel Elie Mamane
Change-Id: Ifcc4985afac1f62787d317352bdb45a490d71963
2013-11-05fixup confusion between CDateToUnoTime and CDateToUnoDateTimeLionel Elie Mamane
Change-Id: Ie3a13726086da113835f54f4eb1c68201edd44f9
2013-11-05wrong titleLionel Elie Mamane
Change-Id: I776db2914bb4e51af35d7c4610d457892b36e9b5
2013-11-05there is also a "Converting Time Values" help pageLionel Elie Mamane
Change-Id: I742102ee90942f7d3303e971cffd15282853c0fb
2013-11-05fixup examples of CDate(From|To)Uno(Date|Time|DateTime)Lionel Elie Mamane
Change-Id: I547317d52bf08bcfb0954267e25ce5f2881d1c75
2013-11-05janitorial: space outside of emphLionel Elie Mamane
Change-Id: I624e4d61a7482e316297feb78f30b20b57ce39b7
2013-11-05add UNO Date/Time conversion functions to "Converting Date Values" help pageLionel Elie Mamane
Change-Id: I67608ec843a45b5a342c82a816174acb9391ca73
2013-11-05Access2Base - Help fileJean-Pierre Ledure
Summary description + reference to official doc site 1 entry in index 1 entry in Macros & Programming - Guides Change-Id: I26587292b4daff035779fc197522af7dc600279a Reviewed-on: https://gerrit.libreoffice.org/6522 Tested-by: Lionel Elie Mamane <lionel@mamane.lu> Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
2013-11-03missing spaces in new help textAndras Timar
Change-Id: Idd049b01ac7fd83bc49d907788924a28fc50b7cd