Commit 847d380f9de6bc74844ffb3e387273504fa894a0

Authored by Arsisakarn Srilatanart
0 parents
Exists in master

Initial commit

.gitignore 0 → 100644
  1 +++ a/.gitignore
... ... @@ -0,0 +1,174 @@
  1 +
  2 +# Created by https://www.gitignore.io/api/java,windows,osx,intellij,eclipse
  3 +
  4 +### Windows ###
  5 +# Windows image file caches
  6 +Thumbs.db
  7 +ehthumbs.db
  8 +
  9 +# Folder config file
  10 +Desktop.ini
  11 +
  12 +# Recycle Bin used on file shares
  13 +$RECYCLE.BIN/
  14 +
  15 +# Windows Installer files
  16 +*.cab
  17 +*.msi
  18 +*.msm
  19 +*.msp
  20 +
  21 +# Windows shortcuts
  22 +*.lnk
  23 +
  24 +
  25 +### OSX ###
  26 +.DS_Store
  27 +.AppleDouble
  28 +.LSOverride
  29 +
  30 +# Icon must end with two \r
  31 +Icon
  32 +
  33 +
  34 +# Thumbnails
  35 +._*
  36 +
  37 +# Files that might appear in the root of a volume
  38 +.DocumentRevisions-V100
  39 +.fseventsd
  40 +.Spotlight-V100
  41 +.TemporaryItems
  42 +.Trashes
  43 +.VolumeIcon.icns
  44 +.com.apple.timemachine.donotpresent
  45 +
  46 +# Directories potentially created on remote AFP share
  47 +.AppleDB
  48 +.AppleDesktop
  49 +Network Trash Folder
  50 +Temporary Items
  51 +.apdisk
  52 +
  53 +
  54 +### Intellij ###
  55 +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  56 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  57 +
  58 +# User-specific stuff:
  59 +.idea/workspace.xml
  60 +.idea/tasks.xml
  61 +.idea/dictionaries
  62 +.idea/vcs.xml
  63 +.idea/jsLibraryMappings.xml
  64 +
  65 +# Sensitive or high-churn files:
  66 +.idea/dataSources.ids
  67 +.idea/dataSources.xml
  68 +.idea/dataSources.local.xml
  69 +.idea/sqlDataSources.xml
  70 +.idea/dynamic.xml
  71 +.idea/uiDesigner.xml
  72 +
  73 +# Gradle:
  74 +.idea/gradle.xml
  75 +.idea/libraries
  76 +
  77 +# Mongo Explorer plugin:
  78 +.idea/mongoSettings.xml
  79 +
  80 +## File-based project format:
  81 +*.iws
  82 +
  83 +## Plugin-specific files:
  84 +
  85 +# IntelliJ
  86 +/out/
  87 +
  88 +# mpeltonen/sbt-idea plugin
  89 +.idea_modules/
  90 +
  91 +# JIRA plugin
  92 +atlassian-ide-plugin.xml
  93 +
  94 +# Crashlytics plugin (for Android Studio and IntelliJ)
  95 +com_crashlytics_export_strings.xml
  96 +crashlytics.properties
  97 +crashlytics-build.properties
  98 +fabric.properties
  99 +
  100 +### Intellij Patch ###
  101 +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  102 +
  103 +# *.iml
  104 +# modules.xml
  105 +
  106 +
  107 +### Eclipse ###
  108 +
  109 +.metadata
  110 +bin/
  111 +tmp/
  112 +*.tmp
  113 +*.bak
  114 +*.swp
  115 +*~.nib
  116 +local.properties
  117 +.settings/
  118 +.loadpath
  119 +.recommenders
  120 +
  121 +# Eclipse Core
  122 +.project
  123 +
  124 +# External tool builders
  125 +.externalToolBuilders/
  126 +
  127 +# Locally stored "Eclipse launch configurations"
  128 +*.launch
  129 +
  130 +# PyDev specific (Python IDE for Eclipse)
  131 +*.pydevproject
  132 +
  133 +# CDT-specific (C/C++ Development Tooling)
  134 +.cproject
  135 +
  136 +# JDT-specific (Eclipse Java Development Tools)
  137 +.classpath
  138 +
  139 +# Java annotation processor (APT)
  140 +.factorypath
  141 +
  142 +# PDT-specific (PHP Development Tools)
  143 +.buildpath
  144 +
  145 +# sbteclipse plugin
  146 +.target
  147 +
  148 +# Tern plugin
  149 +.tern-project
  150 +
  151 +# TeXlipse plugin
  152 +.texlipse
  153 +
  154 +# STS (Spring Tool Suite)
  155 +.springBeans
  156 +
  157 +# Code Recommenders
  158 +.recommenders/
  159 +
  160 +
  161 +### Java ###
  162 +*.class
  163 +
  164 +# Mobile Tools for Java (J2ME)
  165 +.mtj.tmp/
  166 +
  167 +# Package Files #
  168 +## commented out to support storage of libs in git
  169 +# *.jar
  170 +# *.war
  171 +# *.ear
  172 +
  173 +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  174 +hs_err_pid*
... ...
CHANGELOG.txt 0 → 100644
  1 +++ a/CHANGELOG.txt
... ... @@ -0,0 +1,38 @@
  1 +# Change Log
  2 +All notable changes to this project will be documented in this file.
  3 +This project adheres to [Semantic Versioning](http://semver.org/).
  4 +
  5 +## [Unreleased]
  6 +### Added
  7 +- zh-CN and zh-TW translations from @tianshuo.
  8 +- de translation from @mpbzh.
  9 +
  10 +## [1.1.0] - 2015-12-03
  11 +### Added
  12 +- RU translation from @aishek.
  13 +- pt-BR translation from @tallesl.
  14 +- es-ES translation from @ZeliosAriex.
  15 +
  16 +## [1.0.2] - 2015-10-06
  17 +### Changed
  18 +- Remove exclusionary mentions of "open source" since this project can benefit
  19 +both "open" and "closed" source projects equally.
  20 +uld you ever rewrite a change log?".
  21 +
  22 +### Changed
  23 +- Improve argument against commit logs.
  24 +- Start following [SemVer](http://semver.org) properly.
  25 +
  26 +## [1.0.1] - 2015-02-17
  27 +### Changed
  28 +- Update year to match in every README example.
  29 +- Reluctantly stop making fun of Brits only, since most of the world
  30 + writes dates in a strange way.
  31 +
  32 +## [1.0.0] - 2014-05-31
  33 +### Added
  34 +- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG.
  35 +- CNAME file to enable GitHub Pages custom domain
  36 +- README now contains answers to common questions about CHANGELOGs
  37 +- Good examples and basic guidelines, including proper date formatting.
  38 +- Counter-examples: "What makes unicorns cry?"
... ...
E01/.gitkeep 0 → 100644
  1 +++ a/E01/.gitkeep
... ...
EquinoxToolkit/projectname/.gitkeep 0 → 100644
  1 +++ a/EquinoxToolkit/projectname/.gitkeep
... ...
README.md 0 → 100644
  1 +++ a/README.md
... ... @@ -0,0 +1,8 @@
  1 +### Trello:
  2 +http://trello.com/project-id
  3 +
  4 +### Contacts:
  5 +
  6 +1. PM: Name <name@email.com> Mobile: 0801234567
  7 +2. SA: Name <name@email.com> Mobile: 0801234567
  8 +3. QA: Name <name@email.com> Mobile: 0801234567
... ...
T16/archive/.gitkeep 0 → 100644
  1 +++ a/T16/archive/.gitkeep
... ...
T17-T24/archive/.gitkeep 0 → 100644
  1 +++ a/T17-T24/archive/.gitkeep
... ...
T3/archive/.gitkeep 0 → 100644
  1 +++ a/T3/archive/.gitkeep
... ...
T4/archive/.gitkeep 0 → 100644
  1 +++ a/T4/archive/.gitkeep
... ...
T6/test_result/.gitkeep 0 → 100644
  1 +++ a/T6/test_result/.gitkeep
... ...
T6/test_result/F0/.gitkeep 0 → 100644
  1 +++ a/T6/test_result/F0/.gitkeep
... ...
T6/test_result/F1/.gitkeep 0 → 100644
  1 +++ a/T6/test_result/F1/.gitkeep
... ...
T7/archive/.gitkeep 0 → 100644
  1 +++ a/T7/archive/.gitkeep
... ...
code/.gitkeep 0 → 100644
  1 +++ a/code/.gitkeep
... ...
config/.gitkeep 0 → 100644
  1 +++ a/config/.gitkeep
... ...
flow/archive/.gitkeep 0 → 100644
  1 +++ a/flow/archive/.gitkeep
... ...
lib/.gitkeep 0 → 100644
  1 +++ a/lib/.gitkeep
... ...
minos/.gitkeep 0 → 100644
  1 +++ a/minos/.gitkeep
... ...
script/F0/.gitkeep 0 → 100644
  1 +++ a/script/F0/.gitkeep
... ...
script/F1/.gitkeep 0 → 100644
  1 +++ a/script/F1/.gitkeep
... ...