This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a) the serial number is 64 57 00 b7 00 00 02 f6 (dec is 7230248512745636598); | |
| b) the certificate is signed with SM2 and the SM3 hash algorithm; | |
| c) the issuer's distinguished name is CN=OSCCA SM2 CA, C=CN; | |
| d) and the subject's distinguished name is CN=用户名字, OU=部门名称,O=组织名称,S=省份名称,C=CN; | |
| e) the certificate was issued on March 22, 2011 and expired on March 29,2014; | |
| f) the certificate contains a 256 bit SM2 EC public key; | |
| g) the certificate is an end entity certificate (not a CA certificate); | |
| h) the certificate include an authority key identifier ,subject KeyIdentifier and basic constraints extensions; | |
| i) the certificate includes a critical key usage extension specifying the public is intended for generation of digital signatures; | |
| j) the certificate include a extend key usage extensions; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install PlantUML | |
| PLANTUML_URL="${PLANTUML_URL:-http://sourceforge.net/projects/plantuml/files/plantuml.jar/download}" | |
| apt-get install -y default-jre | |
| if [ -f "/opt/plantuml/plantuml.jar" ]; then | |
| echo '[plantuml] PlantUML already installed.' | |
| else | |
| echo '[plantuml] Installing PlantUML...' | |
| apt-get install -y graphviz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: macos | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: |
There is not a MacOS-native executable of Enterprise Architect on Mac. In order to run it, it is possible to use Wine, a software to run windows applications on Linux and Mac. Sparx has a webinar and a documentation page explaining how to install EA into Linux using Wine. However, these instructions do not provide a step-by-step guide for MacOS
The following are instructions to install EA on MacOs using Homebrew.
- install homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| termsdef: 定义 | |
| termsdefsymbolsabbrev: 定义 | |
| termsdefsymbols: 定义 | |
| termsdefabbrev: 定义 | |
| termnote: 注 % | |
| normref: 规范性参考文献 | |
| symbolsabbrev: 缩略语与缩写 | |
| abbrev: 缩略语与缩写 | |
| symbols: 缩略语与缩写 | |
| conventions: 惯例 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| term_def_boilerplate: | |
| scope: 范围 | |
| symbolsabbrev: 符号与缩写 | |
| abbrev: 缩写 | |
| symbols: 符号 | |
| table_of_contents: 目录 | |
| introduction: 引言 | |
| foreword: 前言 | |
| abstract: 摘要 | |
| acknowledgements: 致谢 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| term_def_boilerplate: | |
| scope: مجال التطبيق | |
| symbolsabbrev: الرموز والاختصارات | |
| abbrev: الاختصارات | |
| symbols: الرموز | |
| table_of_contents: جدول المحتويات | |
| introduction: مقدمة | |
| foreword: تمهيد | |
| abstract: ملخص | |
| acknowledgements: شكر |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "symmetric": [ | |
| "aes": { | |
| "key-length": [ | |
| { | |
| /* anything less will score "unacceptable" */ | |
| "predicate": "min", | |
| "levels": [ | |
| { | |
| "level": 2, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # This script is developed for Metanorma users that need to fix Lucid-generated | |
| # SVGs. Lucid-generated SVGs have `<use>` elements reference invalid IDs, which | |
| # result in invalid SVG XML. Metanorma PDFs and Word outputs rely on valid SVG | |
| # XML files otherwise the PDF output will omit broken SVGs, and the Word output | |
| # will have EMF files that have areas of the figures appear in black. | |
| # | |
| # The issue is described at: | |
| # https://community.lucid.co/lucid-for-engineering-19/svg-export-results-in-invalid-idref-on-a-use-element-8050 |