#/bin/bash # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # ########################################### # # Takes all translated xhp files and convert into HTML files # ########################################### # # $1 is Language # $2 is productversion # $3 is location of $(WORKDIR) # $4 is local or website # If local, the filetree should be $(installDir) # If website, filetree should be '/' # $5 is filetree for local lang=$1 productversion=$2 workDir=$(realpath $3) offline=$4 fileTree=$5 outDir=$(realpath $workDir/HelpTargetHTML/$productversion/$lang) sourceDir=$(realpath $workDir/HelpTranslatePartTarget/$lang/helpcontent2/source) ########################################### # # Process translated XHP files # ########################################### xsltparm='--stringparam fileTree '$fileTree' --stringparam local '$offline' --stringparam Language '$lang' --stringparam productversion '$productversion' --stringparam root '$sourceDir'/' echo 'Conversion to HTML started for '$lang for filep in $(find $sourceDir/text -name "*.xhp") do DIR=${filep##*text/} name=${DIR:0:-3} outFile=$outDir'/text/'$name'html' xsltproc $xsltparm -o $outFile online_transform.xsl $filep done exit reoffice-5-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/inc/servuno.hxx
AgeCommit message (Expand)Author
2020-05-09compact namespace in scNoel Grandin
2018-06-11tdf#42949 Fix IWYU warnings in sc/inc/s*Gabor Kelemen
2018-04-26[API CHANGE] deprecate XGraphicObjectResolverTomaž Vajngerl
2018-01-16Add ServiceProvider "com.sun.star.sheet.GlobalSheetSettings"Jens Carl
2018-01-04Add ServiceProvider "com.sun.star.sheet.TableAutoFormats"Jens Carl
2017-12-05Add ServiceProvider "com.sun.star.sheet.FunctionDescriptions"Jens Carl
2017-12-05Add ServiceProvider "com.sun.star.sheet.RecentFunctions"Jens Carl
2017-04-04tdf#83257 [API-CHANGE] Pivot chart implementationTomaž Vajngerl
2016-03-19tdf#84938 replace #defined constant with scoped enum classJochen Nitschke
2015-10-28com::sun::star->css in scNoel Grandin