-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
115 changed files
with
5,854 additions
and
3,134 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<img align="right" width="64px" src="https://raw.githubusercontent.com/hauke96/simple-task-manager/master/client/src/assets/icon.png"> | ||
|
||
# SimpleTaskManager | ||
|
||
これは、例えば[OpenStreetMap(OSM)](https://openstreetmap.org)のためのシンプルな構造のタスクマネージャです。 | ||
最新バージョンは [stm.hauke-stieler.de](https://stm.hauke-stieler.de)で確認してください。 | ||
|
||
このプロジェクトは、あらゆる種類の地理関連のもの(例えば、OSMでのマッピング、古い建物の写真など)のためのシンプルで汎用的なタスキングマネージャを作成することを目的としています。 | ||
|
||
タスキングマネージャは、複数の人が同じ地域で互いに干渉することなく作業できるようにするアプリケーションです。 | ||
通常、そのような領域は正方形に分割され、一度に1つのマッパーだけが、その範囲を作業します。 | ||
|
||
<img align="center" style="width: 100%; max-width: 1128px;" src="https://raw.githubusercontent.com/hauke96/simple-task-manager/master/screenshot.png"> | ||
|
||
# どのように動作しますか? | ||
|
||
ユーザは、地図上の大きな領域(例:市区)で構成される**プロジェクト**を作成できます。 | ||
この領域は、いわゆる**タスク**より小さな領域(たとえば、1x1kmの大きな正方形)に分割されています。 | ||
ファイル(例えばGeoJSONファイル)から**ジオメトリ**をインポートして、タスクを作成することもできます。 | ||
|
||
一度に1人のユーザーがそのようなタスクの作業ができるようになりました。このユーザーは、**進捗ポイント**を設定することで、タスクの**進捗**を更新できます。 | ||
領域が完全にマッピングされると、ユーザは進捗ポイントを最大値(100%)に設定して終了し、次のタスクを開始することができます。 | ||
|
||
プロジェクトの所有者は、他のユーザをプロジェクトに招待することもできます。 | ||
あるユーザーがタスクで作業している場合、他のユーザーはそのタスクのプロセスを更新できません。 | ||
|
||
# さらに別のタスクマネージャですか? | ||
*(つまり、HOT Tasking Managerの何が問題ですか?)* | ||
|
||
個人的には、HOT Tasking Managerがそれほど好きではない理由がいくつかあります(直感的なUIでない、iD統合、一定時間後にタスクから自動的に割り当てられないなど) | ||
|
||
別の方法としては、例えばMapCraft・タスキング・マネージャがあります。これは非常に古く、すでにリポジトリをコンパイルできない状況です。 | ||
したがって、MapCraftを設定することはできません(依存関係が壊れている古いPHPコードに何時間も費やしたくない場合)。 | ||
|
||
つまり、基本的にはこれは別のタスクマネージャですが、既存のもののクローンではありません。 | ||
|
||
# ドキュメント | ||
|
||
ドキュメントは、[docフォルダ](doc)(deployment,api,security,architecture,operationなど)と、別の[client](client)および[server](server)フォルダ(主にセットアップと開発情報)にあります。 | ||
|
||
現在、エンドユーザーマニュアルやチュートリアルなどはありません。 | ||
|
||
# 貢献 | ||
|
||
現在、実際のガイドラインはありません。**issue**または**プルリクエスト**を自由に作成してください。 | ||
|
||
**コーディングを開始しますか?**開始する方法については、[doc/development/README.md](doc/development/README.md)をご覧ください。 |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
# クライアント | ||
|
||
これは単純なタスクマネージャのWebアプリケーションです。 | ||
主に[Angular](https://angular.io),[OpenLayers](https://openlayers.org/)に基づいており、パッケージマネージャとして`npm`を使用します。 | ||
|
||
# 環境の設定 | ||
|
||
1. `npm`と`node`もインストールします。 | ||
2. このclientフォルダに移動(`cd client`)します。 | ||
3. (`ng`コマンドラインツールを使用するには) Angular CLIをグローバルにインストールする必要があります | ||
```bash | ||
npm install -g @angular/cli | ||
``` | ||
4. すべての依存関係をインストールします。これは、`node_modules`フォルダへのローカルインストールです。 | ||
```bash | ||
npm install | ||
``` | ||
|
||
これで準備ができました。 | ||
クライアントを起動してセットアップをテストします(以下を参照)。 | ||
クライアントの構築と起動はサーバなしで動作しますが、もちろんクライアントはサーバなしでは動作しません)。 | ||
|
||
## クライアントの実行 | ||
|
||
`npm run dev`を実行して、開発サーバーを起動します。 | ||
次に、ブラウザで`http://localhost:4200/`を開きます。 | ||
ソースファイルを変更すると、アプリケーションは自動的に再コンパイルと再読み込みを行います。 | ||
|
||
## テストを実行する | ||
|
||
これは、`npm run test`を使用して実行できます。 | ||
このスクリプトは、テストが実行されるデフォルトブラウザとしてFirefoxを使用します。 | ||
|
||
`ng test--browsers=ChromeHeadless`でChromeを使用することもできます。 | ||
|
||
# ビルド | ||
|
||
**一言でいうと** | ||
* npm run build | ||
|
||
これにより、`.js`と`.css`のファイルと、`index.html`が作成されます。 | ||
すべてを通常のHTTPサーバーにコピーできます。 | ||
|
||
アプリケーションの実行に似ていますが、`npm run build`があります。 | ||
`client/dist/simple-taskmanager/<lang>`に出力されます。ここで<lang>については、英語は`en-US`、日本語は`ja`、ドイツ語は`de`です。 | ||
|
||
**注意:**これには、マシンによっては時間がかかる場合があります(最大数分)。 | ||
|
||
# 設定 | ||
|
||
現在、クライアントは`client/src/environments`で非常に単純な dev-configuration と prod-configurationを使用しています。 | ||
|
||
暗号化(HTTPS)とHTTP-Serverの設定は使用されているHTTP-Server(Apache-HTTP,nginx, etc)に依存します。そのため、それぞれのプロダクトのドキュメントや、`stm-client`Dockerコンテナで使用されているnginx設定の`./client/nginx.conf`を参照してください。 | ||
|
||
# 国際化対応 | ||
|
||
## メッセージカタログを更新する | ||
|
||
**一言でいうと** | ||
* `cd client` | ||
* `ng xi18n --output-path src/locale` | ||
* 新しい/変更エントリを特定の翻訳ファイルにコピーする(例:`messages.xlf`を`messages.ja.xlf`にコピー) | ||
|
||
## 翻訳 | ||
|
||
STMを翻訳するには、*OmegaT*や*Poedit*などの適切なXLF/XLIFFエディタを使用することをお勧めします。 | ||
|
||
### Poedit | ||
|
||
1. 翻訳したい`.xlf`ファイルを開く | ||
2. エントリを翻訳する | ||
3. 保存をクリックするか、CTRL+Sを押す | ||
|
||
### Omega-T | ||
|
||
Poeditの代わりに、[Omega-T](https://omegat.org/)を[Okapiフィルタプラグイン](https://okapiframework.org/wiki/index.php?title=Okapi_Filters_Plugin_for_OmegaT)とともに翻訳につかうことができます。 | ||
|
||
1. Omega-Tを起動し、zh_CNなどのお気に入りのターゲット言語で新しいプロジェクトディレクトリに新しいプロジェクトを作成します。 | ||
2. Omega-Tを設定してOkapiプラグインXLIFFフィルタを有効にし、内部XLIFFフィルタを無効にします。 | ||
3. `client/src/locale/messages.xlf`を`<omegat_project>/source/messages.<langID>.xlf`にコピーします。(たとえば`messages.zh_CN.xlf`) | ||
4. Omega-Tで`ファイル`-`再読み込み`をクリックします。 | ||
5. メッセージを翻訳 | ||
6. `ファイル`-`Omega-T上で`ターゲットファイルを生成する`をクリックします | ||
7. `<omegat>/target/messages.<langID>.xlf`を`client/locale/messages.<langID>.xlf`にコピーします。 | ||
|
||
UIが更新され、source messages.xlfが変更されたら、ステップ3 - 6を繰り返してください。 | ||
|
||
### ローカル化設定を追加する | ||
|
||
`<langID>`で示される新しい言語を、Angularコンパイラに通知するには、`client/angular.json`に次の3つの部分を追加します。 | ||
|
||
```json | ||
"projects": { | ||
"simple-task-manager": { | ||
"i18n": { | ||
"sourceLocale": "en-US", | ||
"locales": { | ||
"ja": "src/locale/messages.ja.xlf", | ||
"de": "src/locale/messages.de.xlf", | ||
"<langID>": "src/locale/messages.<langID>.xlf" | ||
} | ||
}, | ||
"architect": { | ||
``` | ||
|
||
```json | ||
"architect": { | ||
"build": { | ||
"configurations": { | ||
"ja": { | ||
"localize": ["ja"] | ||
}, | ||
"de": { | ||
"localize": ["de"] | ||
}, | ||
"<langID>": { | ||
"localize": ["<langID>"] | ||
}, | ||
``` | ||
|
||
```json | ||
"serve": { | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "simple-task-manager:build:production" | ||
}, | ||
"ja": { | ||
"browserTarget": "simple-task-manager:build:ja" | ||
}, | ||
"de": { | ||
"browserTarget": "simple-task-manager:build:de" | ||
}, | ||
"<langID>": { | ||
"browserTarget": "simple-task-manager:build:<langID>" | ||
} | ||
``` |
This file contains 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
Oops, something went wrong.