Skip to content

Commit 912673f

Browse files
author
Website Automation
committed
Merge remote-tracking branch 'origin/development' into development
2 parents d2aaa64 + 5c62a4c commit 912673f

File tree

470 files changed

+9660
-663
lines changed

Some content is hidden

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

470 files changed

+9660
-663
lines changed
File renamed without changes.
File renamed without changes.

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.vs/
2+
node_modules
3+
.vscode
4+
yarn.lock
5+
package-lock.json
6+
cireports
7+
package.json
8+
gulpfile.js

.gitlab/.gitkeep

Whitespace-only changes.

.gitlab/merge_request_templates/.gitkeep

Whitespace-only changes.

Jenkinsfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ timestamps
1717
{
1818
checkout scm
1919

20-
def branchCommit = '"' + 'https://gitlab.syncfusion.com/api/v4/projects/' + env.projectId + '/merge_requests/' + env.MergeRequestId + '/changes'
21-
String branchCommitDetails = bat returnStdout: true, script: 'curl -s --request GET --header PRIVATE-TOKEN:' + env.BuildAutomation_PrivateToken + " " + branchCommit
20+
def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files'
21+
String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit
2222

23-
def ChangeFiles= branchCommitDetails.split('\n')[2];
24-
ChangeFiles = ChangeFiles.split('"new_path":')
23+
def ChangeFiles= branchCommitDetails.split('"filename": ');
2524

2625
for (int i= 1; i < ChangeFiles.size();i++)
2726
{
@@ -39,7 +38,7 @@ timestamps
3938
}
4039

4140
//Checkout the ug_spellchecker from development Source
42-
checkout([$class: 'GitSCM', branches: [[name: '*/development']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'ug_spellchecker']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.gitlabCredentialId, url: 'https://gitlab.syncfusion.com/content/ug_spellchecker.git']]])
41+
checkout([$class: 'GitSCM', branches: [[name: '*/development']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'ug_spellchecker']], submoduleCfg: [], userRemoteConfigs: [[credentialsId: env.githubCredentialId, url: 'https://github.com/syncfusion-content/ug_spellchecker.git']]])
4342

4443
}
4544
}
@@ -56,7 +55,7 @@ if(currentBuild.result != 'FAILURE')
5655
{
5756
gitlabCommitStatus("Build")
5857
{
59-
bat 'powershell.exe -ExecutionPolicy ByPass -File '+env.WORKSPACE+"/ug_spellchecker/build.ps1 -Script "+env.WORKSPACE+"/ug_spellchecker/build.cake -Target build -Platform \""+platform+"\" -Targetbranch "+env.gitlabTargetBranch+" -Branch "+'"'+env.gitlabSourceBranch+'"'
58+
bat 'powershell.exe -ExecutionPolicy ByPass -File '+env.WORKSPACE+"/ug_spellchecker/build.ps1 -Script "+env.WORKSPACE+"/ug_spellchecker/build.cake -Target build -Platform \""+platform+"\" -Targetbranch "+env.githubTargetBranch+" -Branch "+'"'+env.githubSourceBranch+'"'
6059
}
6160

6261
def files = findFiles(glob: '**/cireports/errorlogs/*.txt')
@@ -75,7 +74,7 @@ if(currentBuild.result != 'FAILURE')
7574

7675
stage 'Delete Workspace'
7776

78-
def files = findFiles(glob: '**/cireports/spellcheck/*.*')
77+
def files = findFiles(glob: '**/cireports/*.*')
7978

8079
if(files.size() > 0)
8180
{

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
This repository contains Java UG documentation for the Syncfusion File Format products.
1+
# Syncfusion File Formats Java Documentation
2+
3+
This is the GitHub repository for the technical product documentation for Syncfusion File Formats Java components. This documentation is published to http://help.syncfusion.com/java-file-formats
4+
5+
## Contributions Welcome!
6+
7+
We welcome the [pull request](https://docs.github.com/en/github/managing-files-in-a-repository/editing-files-in-another-users-repository) for improving the File Formats Java Components user guide documentation. Your contribution towards this will be greatly appreciated.

java-file-formats-toc.html

Lines changed: 148 additions & 11 deletions
Large diffs are not rendered by default.
36.1 KB
Loading
38.3 KB
Loading

0 commit comments

Comments
 (0)