Skip to content

Commit 517e3c9

Browse files
committed
WEB-3195
Am modificat iconul de twitter
1 parent 57761ca commit 517e3c9

File tree

1,296 files changed

+104847
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,296 files changed

+104847
-1
lines changed

out/webhelp-responsive/branchFilters/branchFilter.html

Lines changed: 296 additions & 0 deletions
Large diffs are not rendered by default.
6.73 KB
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import org.gradle.api.tasks.Exec
2+
3+
task initDOT {
4+
String projectDir = "."
5+
doLast {
6+
if(! new File("${projectDir}/dita-ot/oxygen-publishing-engine/").exists()){
7+
//https://www.oxygenxml.com/InstData/PublishingEngine/oxygen-publishing-engine.zip
8+
//https://archives.oxygenxml.com/Nightly/PublishingEngine/oxygen-publishing-engine.zip
9+
ant.get(src: 'https://www.oxygenxml.com/InstData/PublishingEngine/oxygen-publishing-engine.zip', dest: "${projectDir}/dita-ot.zip", skipexisting: 'true')
10+
ant.unzip(src: "${projectDir}/dita-ot.zip", dest: 'dita-ot')
11+
new File("${projectDir}/dita-ot/oxygen-publishing-engine/licensekey.txt").write(System.getenv( 'LICENSE_KEY' ).replaceAll(" ", "\n"))
12+
}
13+
}
14+
}
15+
16+
task runTransformation(type:Exec, dependsOn: [initDOT]) {
17+
workingDir "${projectDir}/dita-ot/oxygen-publishing-engine/bin"
18+
commandLine "sh", "${projectDir}/dita-ot/oxygen-publishing-engine/bin/dita", "--output=.", "--project", "${projectDir}/../blog-project.xml"
19+
}
20+
21+
task copySite(type: Copy, dependsOn: [runTransformation]) {
22+
from "${projectDir}/dita-ot/oxygen-publishing-engine/bin/site"
23+
into "${projectDir}/../site"
24+
}
25+
26+
task copyResources(type: Copy) {
27+
from "${projectDir}/../resources/"
28+
into "${projectDir}/../site/resources"
29+
}
30+
31+
task dist(dependsOn: [copySite, copyResources])
32+
33+
defaultTasks 'dist'

out/webhelp-responsive/context-help-map.xml

Lines changed: 406 additions & 0 deletions
Large diffs are not rendered by default.

out/webhelp-responsive/cshelp.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Context Sensitive Help</title>
5+
<script src="oxygen-webhelp/app/commons.js"></script>
6+
<script src="oxygen-webhelp/app/context-help.js"></script>
7+
</head>
8+
<body>
9+
</body>
10+
</html>

out/webhelp-responsive/george/enable-massive-contributions.html

Lines changed: 265 additions & 0 deletions
Large diffs are not rendered by default.

out/webhelp-responsive/git-tech-writers/advantages_of_using_git.html

Lines changed: 257 additions & 0 deletions
Large diffs are not rendered by default.

out/webhelp-responsive/git-tech-writers/any-change-branches.html

Lines changed: 241 additions & 0 deletions
Large diffs are not rendered by default.

out/webhelp-responsive/git-tech-writers/centralized_workflow.html

Lines changed: 255 additions & 0 deletions
Large diffs are not rendered by default.
31.7 KB

0 commit comments

Comments
 (0)