Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GetAdocUI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QCD
Tools
GetAdocUI
Commits
3a849104
Commit
3a849104
authored
Apr 18, 2026
by
AP matsuo koji
😲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nativeを追加
parent
76ceac1f
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
74 additions
and
7 deletions
+74
-7
GetADocGUI.exe
Release/GetADocGUI.exe
+0
-0
tmpl_Native.en.adoc
Release/getADoc.Data/adocTPL/tmpl_Native/tmpl_Native.en.adoc
+28
-0
tmpl_Native.ja.adoc
Release/getADoc.Data/adocTPL/tmpl_Native/tmpl_Native.ja.adoc
+28
-0
getADoc.bat
Release/getADoc.Data/getADoc.bat
+10
-7
MainWindow.xaml.cs
Src_UI/MainWindow.xaml.cs
+4
-0
RunBatch.cs
Src_UI/RunBatch.cs
+4
-0
No files found.
Release/GetADocGUI.exe
View file @
3a849104
No preview for this file type
Release/getADoc.Data/adocTPL/tmpl_Native/tmpl_Native.en.adoc
0 → 100644
View file @
3a849104
= @FILENAME@
// If disable,set "!" : ":key: " -> ":!key: ".
:doctype: article
:toc: left
:toclevels: 3
:sectnums:
:sectnumlevels: 4
:data-uri:
:hardbreaks:
:experimental:
:imagesdir: Images
// FreePageSize
+++<style>#header,#content,#footnotes,#footer{max-width:none;}</style>+++
[.text-right]
--
@DATE@ ##YourName##
--
[perface]
== Overview
== Section1Title
== Section2Title
END.
\ No newline at end of file
Release/getADoc.Data/adocTPL/tmpl_Native/tmpl_Native.ja.adoc
0 → 100644
View file @
3a849104
= @FILENAME@
// If disable,set "!" : ":key: " -> ":!key: ".
:doctype: article
:toc: left
:toclevels: 3
:sectnums:
:sectnumlevels: 4
:data-uri:
:hardbreaks:
:experimental:
:imagesdir: Images
// FreePageSize
+++<style>#header,#content,#footnotes,#footer{max-width:none;}</style>+++
[.text-right]
--
@DATE@ ##YourName##
--
[perface]
== Overview
== Section1Title
== Section2Title
END.
\ No newline at end of file
Release/getADoc.Data/getADoc.bat
View file @
3a849104
...
...
@@ -43,7 +43,8 @@ function getTemplateHelp(){
return uHereDoc.hereDoc(function(){/* NoAdjust
Normal/Meeting/QnA/BasicDesign/TroubleReport から指定する。指定が無い場合はNormal
Native/Normal/Meeting/QnA/BasicDesign/TroubleReport から指定する。指定が無い場合はNormal
- Native ネイティブ(Native) config.adoc無し
- Normal 通常(Normal)
- Meeting 議事録(Record of Proceedings)
- QA Q&A
...
...
@@ -177,14 +178,16 @@ if (pm.OpenAdocHelp) {
// configのコピー
var tgtconfigPath = makePath(adocPath.PR(),configPath.FN());
if ( tgtconfigPath.isExist() ) {
if ( !pm.TemplateName.icmp("Native") ) {
if ( tgtconfigPath.isExist() ) {
if (tgtconfigPath.readAllUTF8() != configPath.readAllUTF8()) {
if ((!pm.bForce)&&(!copySure(tgtconfigPath)))
exit(-1);
copyFile(configPath,tgtconfigPath);
}
} else {
} else {
copyFile(configPath,tgtconfigPath);
}
}
if ( pm.TemplateName.icmp("QA") ) {
...
...
Src_UI/MainWindow.xaml.cs
View file @
3a849104
...
...
@@ -74,6 +74,7 @@ namespace GetADoc
//string ForErrorItem = "";
string
DesignItem
=
""
;
string
MeetingMemoItem
=
""
;
string
NativeItem
=
"Native"
;
if
(
ToggleButton
.
IsOn
)
{
NormalItem
=
"Normal"
;
...
...
@@ -95,6 +96,7 @@ namespace GetADoc
//DocStileBox.Items.Add(ForErrorItem);
DocStileBox
.
Items
.
Add
(
DesignItem
);
DocStileBox
.
Items
.
Add
(
MeetingMemoItem
);
DocStileBox
.
Items
.
Add
(
NativeItem
);
//前回値を初期値に設定
DocStileBox
.
SelectedItem
=
DocStileBox
.
Items
[
Properties
.
Settings
.
Default
.
formatSetting
];
...
...
@@ -438,6 +440,7 @@ namespace GetADoc
//DocStileBox.Items.Add("不具合解析");
DocStileBox
.
Items
.
Add
(
"基本設計資料"
);
DocStileBox
.
Items
.
Add
(
"議事録"
);
DocStileBox
.
Items
.
Add
(
"Native"
);
DocStileBox
.
SelectedItem
=
DocStileBox
.
Items
[
SelectNum
];
ToggleButton
.
IsOn
=
false
;
...
...
@@ -480,6 +483,7 @@ namespace GetADoc
//DocStileBox.Items.Add("Troubleshooting");
DocStileBox
.
Items
.
Add
(
"Basic Design"
);
DocStileBox
.
Items
.
Add
(
"Record of proceedings"
);
DocStileBox
.
Items
.
Add
(
"Native"
);
DocStileBox
.
SelectedItem
=
DocStileBox
.
Items
[
SelectNum
];
ToggleButton
.
IsOn
=
true
;
...
...
Src_UI/RunBatch.cs
View file @
3a849104
...
...
@@ -85,6 +85,10 @@ namespace GetADoc
{
processStartInfo
.
Arguments
+=
"/Template Meeting "
;
}
else
if
(
tempType
==
"Native"
)
{
processStartInfo
.
Arguments
+=
"/Templete Native "
;
}
else
{
processStartInfo
.
Arguments
+=
"/Template Normal "
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment