Skip to content

Commit f0d6605

Browse files
munendrasndecebals
authored andcommitted
Add missing content-type entries to artifacts (#64)
1 parent 185fe8f commit f0d6605

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

_posts/2015-03-17-artifacts.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ order: 20
1414
- [Pippo Tomcat]({{ site.codeurl }}/pippo-server-parent/pippo-tomcat) `pippo-tomcat` (jar)
1515
- [Pippo Undertow]({{ site.codeurl }}/pippo-server-parent/pippo-undertow) `pippo-undertow` (jar)
1616
- JSON
17-
- Pippo Gson `pippo-gson` (jar)
18-
- Pippo Fastjson `pippo-fastjson` (jar)
17+
- [Pippo Gson]({{ site.codeurl }}/pippo-content-type-parent/pippo-gson) `pippo-gson` (jar)
18+
- [Pippo Fastjson]({{ site.codeurl }}/pippo-content-type-parent/pippo-fastjson) `pippo-fastjson` (jar)
19+
- [Pippo Jackson]({{ site.codeurl }}/pippo-content-type-parent/pippo-jackson) `pippo-jackson` (jar)
1920
- XML
20-
- Pippo JAXB *default*
21-
- Pippo XStream `pippo-xstream` (jar)
21+
- [Pippo JAXB]({{ site.codeurl }}/pippo-content-type-parent/pippo-jaxb) `pippo-jaxb` (jar) *default*
22+
- [Pippo XStream]({{ site.codeurl }}/pippo-content-type-parent/pippo-xstream) `pippo-xstream` (jar)
23+
- CSV
24+
- [Pippo CSV]({{ site.codeurl }}/pippo-content-type-parent/pippo-csv) `pippo-csv` (jar)
2225
- YAML
23-
- Pippo SnakeYaml `pippo-snakeyaml` (jar)
26+
- [Pippo SnakeYaml]({{ site.codeurl }}/pippo-content-type-parent/pippo-snakeyaml) `pippo-snakeyaml` (jar)
2427
- Template Engine
2528
- [Pippo Freemarker]({{ site.codeurl }}/pippo-template-parent/pippo-freemarker) `pippo-freemarker` (jar)
2629
- [Pippo Groovy]({{ site.codeurl }}/pippo-template-parent/pippo-groovy) `pippo-groovy` (jar)
@@ -30,8 +33,8 @@ order: 20
3033
- [Pippo Velocity]({{ site.codeurl }}/pippo-template-parent/pippo-velocity) `pippo-velocity` (jar)
3134
- IoC/DI
3235
- Pippo IoC `pippo-ioc` (jar)
33-
- Pippo Spring `pippo-spring` (jar)
34-
- Pippo Guice `pippo-guice` (jar)
36+
- [Pippo Spring]({{ site.codeurl }}/pippo-controller-parent/pippo-spring) `pippo-spring` (jar)
37+
- [Pippo Guice]({{ site.codeurl }}/pippo-controller-parent/pippo-guice) `pippo-guice` (jar)
3538
- Metric Collection
3639
- [Pippo Metrics]({{ site.codeurl }}/pippo-metrics-parent/pippo-metrics) `pippo-metrics` (jar)
3740
- [Pippo Metrics Ganglia Reporter]({{ site.codeurl }}/pippo-metrics-parent/pippo-metrics-ganglia) `pippo-metrics-ganglia` (jar)

_posts/2015-03-17-mailing-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ date: 2015-03-17 17:45:33
66
order: 40
77
---
88

9-
Much of the conversation between developers and users is managed through [mailing list] (http://groups.google.com/group/pippo-java).
9+
Much of the conversation between developers and users is managed through [mailing list](http://groups.google.com/group/pippo-java).

_posts/2015-04-02-content-types.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ order: 55
77
---
88

99
When we send a Response to the client we must specify the content type. In most cases the content type is __html__ (`text/html`) but are situations (for example a REST application/module)
10-
when we want to return __plain text__ (`text/plain`) or __json__ (`application/json`) or __xml__ (`application/xml`) or __yaml__ (`application/x-yaml`).
10+
when we want to return __plain text__ (`text/plain`) or __json__ (`application/json`) or __xml__ (`application/xml`) or __yaml__ (`application/x-yaml`) or __csv__(`text/csv`).
1111
To resolve these situations Pippo comes with a nice concept [ContentTypeEngine]({{ site.coreurl }}/src/main/java/ro/pippo/core/ContentTypeEngine.java).
1212
Pippo comes bultin (direct or via modules) with the following content type engines:
1313

1414
- plain text ([TextPlainEngine]({{ site.coreurl }}/src/main/java/ro/pippo/core/TextPlainEngine.java))
1515
- xml ([JaxbEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-jaxb/src/main/java/ro/pippo/jaxb/JaxbEngine.java), [XstreamEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-xstream/src/main/java/ro/pippo/xstream/XstreamEngine.java), [JacksonXmlEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-jackson/src/main/java/ro/pippo/jackson/JacksonXmlEngine.java))
1616
- json ([GsonEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-gson/src/main/java/ro/pippo/gson/GsonEngine.java), [FastjsonEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-fastjson/src/main/java/ro/pippo/fastjson/FastjsonEngine.java), [JacksonJsonEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-jackson/src/main/java/ro/pippo/jackson/JacksonJsonEngine.java))
1717
- yaml ([SnakeYamlEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-snakeyaml/src/main/java/ro/pippo/snakeyaml/SnakeYamlEngine.java), [JacksonYamlEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-jackson/src/main/java/ro/pippo/jackson/JacksonYamlEngine.java))
18+
- csv ([CsvEngine]({{ site.codeurl }}/pippo-content-type-parent/pippo-csv/src/main/java/ro/pippo/csv/CsvEngine.java))
1819

1920
If you want to develop a new engine of content type you can do it very easily. All you have to do is to implement ContentTypeEngine.
2021

0 commit comments

Comments
 (0)