From dd3362c21f4b79dafd5df0e44265fd3a001638df Mon Sep 17 00:00:00 2001 From: Teletha Date: Wed, 23 Oct 2024 14:17:38 +0900 Subject: [PATCH] progress --- README.md | 21 ++++++++++----------- src/project/java/kiss/Project.java | 21 ++++++++++----------- src/test/java/doc/DocumentDoc.java | 7 ++++--- 3 files changed, 24 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index d4962e8a7..ca507d006 100644 --- a/README.md +++ b/README.md @@ -11,23 +11,22 @@ Sinobu is not obsolete framework but utility, which can manipulate objects as a This is extremely lightweight at approximately 120 KB without relying on other libraries, and its various operations are designed to run as fast as other competing libraries. This library aims to simplify and highly condense the functions related to domains that are frequently encountered in real-world development projects, making them easier to use. -- Dependency Injection +- [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) - Object lifecycle management -- JavaBeans-like property based type modeling -- HTTP(S) Client -- Web Socket Client -- JSON -- HTML(XML) -- Reactive Programming (Rx) -- Asynchronous processing -- Parallel processing +- Property based object modeling +- HTTP(S) +- [JSON](https://en.wikipedia.org/wiki/JSON) +- [HTML](https://en.wikipedia.org/wiki/HTML) (including Tag Soup) +- [XML](https://en.wikipedia.org/wiki/XML) +- Reactive Programming ([Rx](http://reactivex.io)) +- Asynchronous & Parallel processing - Multilingualization -- Template Engine (Mustache) +- Template Engine ([Mustache](https://mustache.github.io/mustache.5.html)) - Dynamic plug-in mechanism - Object Persistence - Logging (Garbage-Free) - Virtual Job Scheduler -- Cron Scheduling +- [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to understand by adhering to the following principles. - Keep it stupid simple diff --git a/src/project/java/kiss/Project.java b/src/project/java/kiss/Project.java index e9eb25e58..2d2329ebe 100644 --- a/src/project/java/kiss/Project.java +++ b/src/project/java/kiss/Project.java @@ -23,23 +23,22 @@ public class Project extends bee.api.Project { This is extremely lightweight at approximately 120 KB without relying on other libraries, and its various operations are designed to run as fast as other competing libraries. This library aims to simplify and highly condense the functions related to domains that are frequently encountered in real-world development projects, making them easier to use. - - Dependency Injection + - [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) - Object lifecycle management - - JavaBeans-like property based type modeling - - HTTP(S) Client - - Web Socket Client - - JSON - - HTML(XML) - - Reactive Programming (Rx) - - Asynchronous processing - - Parallel processing + - Property based object modeling + - HTTP(S) + - [JSON](https://en.wikipedia.org/wiki/JSON) + - [HTML](https://en.wikipedia.org/wiki/HTML) (including Tag Soup) + - [XML](https://en.wikipedia.org/wiki/XML) + - Reactive Programming ([Rx](http://reactivex.io)) + - Asynchronous & Parallel processing - Multilingualization - - Template Engine (Mustache) + - Template Engine ([Mustache](https://mustache.github.io/mustache.5.html)) - Dynamic plug-in mechanism - Object Persistence - Logging (Garbage-Free) - Virtual Job Scheduler - - Cron Scheduling + - [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to understand by adhering to the following principles. - Keep it stupid simple diff --git a/src/test/java/doc/DocumentDoc.java b/src/test/java/doc/DocumentDoc.java index 9ccf1b9bb..9c8960c8a 100644 --- a/src/test/java/doc/DocumentDoc.java +++ b/src/test/java/doc/DocumentDoc.java @@ -52,12 +52,11 @@ public class Introduction { * * Sinobu is not obsolete framework but utility, which can manipulate objects as a * extremely-condensed facade. - * This is extremely lightweight at approximately 106 KB without relying on other libraries, + * This is extremely lightweight at approximately 120 KB without relying on other libraries, * and its various operations are designed to run as fast as other competing libraries. * * This library aims to simplify and highly condense the functions related to domains that * are frequently encountered in real-world development projects, making them easier to use. - * Some specific domains are listed below. * * - [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) * - Object lifecycle management @@ -72,7 +71,9 @@ public class Introduction { * - Template Engine ([Mustache](https://mustache.github.io/mustache.5.html)) * - Dynamic plug-in mechanism * - Object persistence - * - Logging + * - Logging (Garbage-Free) + * - Virtual Job Scheduler + * - [Cron](https://en.wikipedia.org/wiki/Cron) Scheduling * * With a few exceptions, Sinobu and its APIs are designed to be simple to use and easy to * understand by adhering to the following principles.