Commit 58f65a96b5ef72907d870a77a9a2c282b15fbbea
1 parent
1fa59eb4
Exists in
master
Remanejamento do site do projeto
Showing
21 changed files
with
580 additions
and
577 deletions
Show diff stats
documentation/pom.xml
impl/core/pom.xml
... | ... | @@ -74,10 +74,6 @@ |
74 | 74 | <artifactId>maven-source-plugin</artifactId> |
75 | 75 | </plugin> |
76 | 76 | <plugin> |
77 | - <groupId>org.apache.maven.plugins</groupId> | |
78 | - <artifactId>maven-site-plugin</artifactId> | |
79 | - </plugin> | |
80 | - <plugin> | |
81 | 77 | <groupId>org.codehaus.mojo</groupId> |
82 | 78 | <artifactId>cobertura-maven-plugin</artifactId> |
83 | 79 | </plugin> | ... | ... |
pom.xml
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | <relativePath>../build/parent/build/pom.xml</relativePath> |
51 | 51 | </parent> |
52 | 52 | |
53 | - <name>Demoiselle Framework Build</name> | |
53 | + <name>Demoiselle Framework Build Aggregator</name> | |
54 | 54 | <description> |
55 | 55 | A liberação de versões do framework deve ser feita a partir deste build, que fará automaticamente o build |
56 | 56 | de todos os artefatos com versionamento sincronizado. Jamais gere uma versão do framework sem utilizar este build. |
... | ... | @@ -60,13 +60,20 @@ |
60 | 60 | <module>impl</module> |
61 | 61 | <module>parent</module> |
62 | 62 | <module>archetype</module> |
63 | - <module>documentation</module> | |
63 | +<!-- <module>documentation</module> --> | |
64 | 64 | </modules> |
65 | 65 | |
66 | 66 | <build> |
67 | 67 | <plugins> |
68 | 68 | <plugin> |
69 | 69 | <groupId>org.apache.maven.plugins</groupId> |
70 | + <artifactId>maven-site-plugin</artifactId> | |
71 | + <configuration> | |
72 | + <skip>false</skip> | |
73 | + </configuration> | |
74 | + </plugin> | |
75 | + <plugin> | |
76 | + <groupId>org.apache.maven.plugins</groupId> | |
70 | 77 | <artifactId>maven-release-plugin</artifactId> |
71 | 78 | </plugin> |
72 | 79 | <plugin> | ... | ... |
... | ... | @@ -0,0 +1,47 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + Core | |
38 | + | |
39 | +Core | |
40 | + | |
41 | + O core do Demoiselle contém aquelas funcionalidades que são comuns a todas as extensões e aplicações. | |
42 | + Ele é simples, leve e formado majoritariamente por interfaces e poucas implementações, e é a base do framework. | |
43 | + Sem ele, as extensões e a própria aplicação não funcionam. | |
44 | + | |
45 | + É o core que possibilita a integração entre as camadas, criação de estereótipos, utilização de | |
46 | + recursos transacionais, tratamento de exceção, mensagens entre outras funcionalidades importantes em uma aplicação | |
47 | + tradicional. | ... | ... |
... | ... | @@ -0,0 +1,47 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + Documentação | |
38 | + | |
39 | +Documentação | |
40 | + | |
41 | +*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
42 | +| {{{http://demoiselle.sourceforge.net/docs/quickstart}QuickStart}} | Tutorial do tipo "passo a passo" que ilustra de forma rápida e prática o Demoiselle Framework 2.0 | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/pdf/demoiselle-quickstart.pdf}PDF}} | | |
43 | +*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
44 | +| {{{http://demoiselle.sourceforge.net/docs/reference}Reference Guide}} | Guia de referência destinado a todos que desejem conhecer melhor o framework e suas funcionalidades | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/pdf/demoiselle-reference.pdf}PDF}} | | |
45 | +*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
46 | +| {{{http://demoiselle.sourceforge.net/docs/what-is-new}O que mudou?}} | Documento que exemplifica as mudanças nas funcionalidades do framework | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/pdf/demoiselle-what-is-new.pdf}PDF}} | | |
47 | +*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | ... | ... |
... | ... | @@ -0,0 +1,43 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + Sobre o Demoiselle 2 | |
38 | + | |
39 | +Sobre o Demoiselle 2 | |
40 | + | |
41 | + A versão 2 do framework Demoiselle não possui um core monolítico, onde todas as funcionalidades estão concentradas em um único pacote, | |
42 | + pois não queremos que os desenvolvedores que utilizam o Demoiselle sejam obrigados a ter em seus projetos funcionalidades que não vão | |
43 | + utilizar. Por esse motivo, esta versão do framework foi dividida em Core, Extensões e componentes. | ... | ... |
... | ... | @@ -0,0 +1,42 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + JPA extension | |
38 | + | |
39 | +JPA extension | |
40 | + | |
41 | + Esta extensão habilita o uso de JPA para tratar a persistência. Nela são disponibilidos uma fábrica de EntityManager, | |
42 | + um mecanismo de transação para JPA e um template para o DAO. | ... | ... |
... | ... | @@ -0,0 +1,42 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + JSF extension | |
38 | + | |
39 | +JSF extension | |
40 | + | |
41 | + Prepara a aplicação para utilizar o JSF. Disponibiliza automaticamente as configurações | |
42 | + necessárias para o JSF. Templates de CRUD também são disponibilizados. | ... | ... |
... | ... | @@ -0,0 +1,43 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + JTA extension | |
38 | + | |
39 | +JTA extension | |
40 | + | |
41 | + Esta extensão é destinada à aplicações que utilizem JTA como estratégia de transação. | |
42 | + | |
43 | + | ... | ... |
... | ... | @@ -0,0 +1,188 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + Notas de Versão | |
38 | + | |
39 | +Notas de Versão | |
40 | + | |
41 | +* v2.2.0 | |
42 | + | |
43 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=711}0000711}} [Bug] FileRenderer implementando Serializable. | |
44 | + | |
45 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=697}0000697}} [Bug] Correção do Nullpointer ao executar Beans.getReference(Logger.class). | |
46 | + | |
47 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=693}0000693}} [Bug] SecurityContext criava várias instâncias de Authenticator e Authorizer. | |
48 | + | |
49 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=721}0000721}} [Improvement] Criação de casos de teste unitário no arquétipo jsf-jpa. | |
50 | + | |
51 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=673}0000673}} [Improvement] SecurityContext.isLoggedIn() verifica se authenticator.getUser() está nulo. | |
52 | + | |
53 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=680}0000680}} [Improvement] As extensões JUnit, Vaadin, Shiro viraram componentes. | |
54 | + | |
55 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=681}0000681}} [Improvement] Arquétipo Vaadin migrado para componente. | |
56 | + | |
57 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=682}0000682}} [Improvement] Parent POM Vaadin migrado para componente. | |
58 | + | |
59 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=683}0000683}} [Improvement] Remoção do código depreciado na versão 2.1. | |
60 | + | |
61 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=706}0000706}} [Improvement] Atualização da versão do hibernate-validator. | |
62 | + | |
63 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=703}0000703}} [Improvement] Atualização do repositório do primefaces. | |
64 | + | |
65 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=696}0000696}} [Improvement] Correção da mensagem de sessão invalidada anteriormente. | |
66 | + | |
67 | + | |
68 | +* {{{../2.1.2/}v2.1.2}} | |
69 | + | |
70 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=667}0000667}} [Bug] Correção na renderização de tabelas JSF do arquétipo demoiselle-jsf-jpa. | |
71 | + | |
72 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=654}0000654}} [Bug] Erro no arquétipo jsf-jpa: Property 'label.confirm.delete' not found. | |
73 | + | |
74 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=663}0000663}} [Bug] Comandos JPA em ambientes JTA não se uniam à transação antes de executar o comando. | |
75 | + | |
76 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=666}0000666}} [Bug] Correção do erro "You cannot set autocommit during a managed transaction!". | |
77 | + | |
78 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=661}0000661}} [Improvement] Depreciação do pacote "br.gov.frameworkdemoiselle.event". | |
79 | + | |
80 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=664}0000664}} [Improvement] Depreciação do estereótipo @Presenter da extensão Vaadin. | |
81 | + | |
82 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=662}0000662}} [Improvement] Depreciação das exceções do pacote "br.gov.frameworkdemoiselle.exception". | |
83 | + | |
84 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=660}0000660}} [Task] Organização do código interno. | |
85 | + | |
86 | +* {{{../2.1.1/}v2.1.1}} | |
87 | + | |
88 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=621}0000621}} [Bug] Erro em Classe que usa @Configuration. | |
89 | + | |
90 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=623}0000623}} [Bug] Telas de edição com Id do tipo String. | |
91 | + | |
92 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=624}0000624}} [Bug] Erros em arquivos do Arquétipo JPA-JSF. | |
93 | + | |
94 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=625}0000625}} [Bug] Correção do erro ao executar Maven Test no demoiselle-junit. | |
95 | + | |
96 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=638}0000638}} [Bug] Ambiguidade em classes de configuração. | |
97 | + | |
98 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=643}0000643}} [Bug] Mudança de URL no repositório JBoss. | |
99 | + | |
100 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=651}0000651}} [Bug] Correção do nome da interface Authorizator para Authorizer. | |
101 | + | |
102 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=636}0000636}} [Improvement] Possibilidade de desabilitar o redirecionamento no login e logout. | |
103 | + | |
104 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=637}0000637}} [Improvement] Mudança no redirecionamento ao realizar logout. | |
105 | + | |
106 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=641}0000641}} [Improvement] Substituição da propriedade frameworkdemoiselle.security.welcome.page. | |
107 | + | |
108 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=646}0000646}} [Improvement] Melhorias de Testes e Código. | |
109 | + | |
110 | +* {{{../2.1.0/}v2.1.0}} | |
111 | + | |
112 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=601}0000601}} [Bug] Falha ao realizar operações no banco de dados com JPATransaction. | |
113 | + | |
114 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=598}0000598}} [Bug] ClassNotFoundException: br.gov.frameworkdemoiselle.transaction.JTATransaction. | |
115 | + | |
116 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=597}0000597}} [Bug] Unsatisfied dependencies for type UserTransaction. | |
117 | + | |
118 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=584}0000584}} [Bug] Falha no tratamento de exceção no MB quando em método com retorno String. | |
119 | + | |
120 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=582}0000582}} [Bug] Erro "No active contexts" ao reiniciar uma aplicação contendo @Shutdown. | |
121 | + | |
122 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=596}0000596}} [Improvement] Mudança no nome dos eventos LoginSuccessful e LogoutSuccessful. | |
123 | + | |
124 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=595}0000595}} [Improvement] Fechamento automático dos EntityManager e EntityManagerFactory. | |
125 | + | |
126 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=594}0000594}} [Improvement] Flush automático do EntityManager no commit da transação JTA. | |
127 | + | |
128 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=593}0000593}} [Improvement] Criação da extensão JTA. | |
129 | + | |
130 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=592}0000592}} [Improvement] Renomear Classes de Eventos da extensão Vaadin. | |
131 | + | |
132 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=591}0000591}} [Improvement] Mudança na Estrutura de Pacotes da extensão Vaadin. | |
133 | + | |
134 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=577}0000577}} [Improvement] Novo arquétipo demoiselle-minimal. | |
135 | + | |
136 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=579}0000579}} [Improvement] Inclusão do demoiselle-junit no arquétipo jsf-jpa. | |
137 | + | |
138 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=578}0000578}} [Improvement] Classe utilitária para redirecionamento JSF2 no demoiselle-jsf. | |
139 | + | |
140 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=573}0000573}} [Improvement] Fábrica para obter Response. | |
141 | + | |
142 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=457}0000457}} [New Feature] Especificação Demoiselle 2.0 - Segurança. | |
143 | + | |
144 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=583}0000583}} [New Feature] Extensão para controle de acesso com o Apache Shiro. | |
145 | + | |
146 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=524}0000524}} [New Feature] Extensão para camada de apresentação com Vaadin | |
147 | + | |
148 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=580}0000580}} [Task] Parent POM demoiselle-app-parent renomeado para demoiselle-minimal-parent. | |
149 | + | |
150 | +* {{{../2.0.2/}v2.0.2}} | |
151 | + | |
152 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=558}0000558}} [Bug] Abafando Exception do JPA ConfigurationException("??????????????????????"). | |
153 | + | |
154 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=557}0000557}} [Bug] NullPointerException ao executar Beans.getReference(EntityManager.class). | |
155 | + | |
156 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=566}0000566}} [Bug] Erro ao utilizar o demoiselle-junit com o demoiselle-jsf. | |
157 | + | |
158 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=563}0000563}} [Bug] Não é possível trabalhar com duas persistence-unit. | |
159 | + | |
160 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=562}0000562}} [Improvement] Alterar o arquétipo para suportar o Tomcat. | |
161 | + | |
162 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=560}0000560}} [Task] Criar Testes Unitários para a fábrica de EntityManager. | |
163 | + | |
164 | +* {{{../2.0.1/}v2.0.1}} | |
165 | + | |
166 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=538}0000538}} [Bug] Possível loop infinito em ResourceBundleFactory. | |
167 | + | |
168 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=521}0000521}} [Bug] Dependencia indevida do componente demoiselle-validation-1.0.0-SNAPSHOT. | |
169 | + | |
170 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=517}0000517}} [Bug] Tratamento de exceções não funciona com o Weld 1.1.0-CR4. | |
171 | + | |
172 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=523}0000523}} [Improvement] Possibilitar injeção com jUnit. | |
173 | + | |
174 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=522}0000522}} [Improvement] Renomear a extensão Swing para SE. | |
175 | + | |
176 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=518}0000518}} [Improvement] Possibilitar o deploy de aplicações JSF em servidores Tomcat 6 e 7. | |
177 | + | |
178 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=534}0000534}} [Task] Disponibilizar o site do framework. | |
179 | + | |
180 | +* v2.0.0 | |
181 | + | |
182 | + * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=456}0000456}} [New Feature] Especificação Demoiselle 2.0. | |
183 | + | |
184 | +* {{{../latest1x.php}v1.x.x}} | |
185 | + | |
186 | + * Para versões anteriores {{{../latest1x.php}clique aqui}}. | |
187 | + | |
188 | + | |
0 | 189 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,41 @@ |
1 | +~~ Demoiselle Framework | |
2 | +~~ Copyright (C) 2010 SERPRO | |
3 | +~~ ============================================================================ | |
4 | +~~ This file is part of Demoiselle Framework. | |
5 | +~~ | |
6 | +~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | +~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | +~~ as published by the Free Software Foundation. | |
9 | +~~ | |
10 | +~~ This program is distributed in the hope that it will be useful, | |
11 | +~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | +~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | +~~ GNU General Public License for more details. | |
14 | +~~ | |
15 | +~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | +~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | +~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | +~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | +~~ ============================================================================ | |
20 | +~~ Este arquivo é parte do Framework Demoiselle. | |
21 | +~~ | |
22 | +~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | +~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | +~~ do Software Livre (FSF). | |
25 | +~~ | |
26 | +~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | +~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | +~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | +~~ para maiores detalhes. | |
30 | +~~ | |
31 | +~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | +~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | +~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | +~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | + | |
36 | + ------ | |
37 | + SE extension | |
38 | + | |
39 | +SE extension | |
40 | + | |
41 | + Extende o framework para uso em plataformas SE, o famoso mundo desktop. | ... | ... |
... | ... | @@ -0,0 +1,77 @@ |
1 | +<!-- | |
2 | + Demoiselle Framework | |
3 | + Copyright (C) 2010 SERPRO | |
4 | + ============================================================================ | |
5 | + This file is part of Demoiselle Framework. | |
6 | + | |
7 | + Demoiselle Framework is free software; you can redistribute it and/or | |
8 | + modify it under the terms of the GNU Lesser General Public License version 3 | |
9 | + as published by the Free Software Foundation. | |
10 | + | |
11 | + This program is distributed in the hope that it will be useful, | |
12 | + but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | + GNU General Public License for more details. | |
15 | + | |
16 | + You should have received a copy of the GNU Lesser General Public License version 3 | |
17 | + along with this program; if not, see <http://www.gnu.org/licenses/> | |
18 | + or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
19 | + Fifth Floor, Boston, MA 02110-1301, USA. | |
20 | + ============================================================================ | |
21 | + Este arquivo é parte do Framework Demoiselle. | |
22 | + | |
23 | + O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
24 | + modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
25 | + do Software Livre (FSF). | |
26 | + | |
27 | + Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
28 | + GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
29 | + APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
30 | + para maiores detalhes. | |
31 | + | |
32 | + Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
33 | + "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
34 | + ou escreva para a Fundação do Software Livre (FSF) Inc., | |
35 | + 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
36 | +--> | |
37 | +<project> | |
38 | + <bannerLeft> | |
39 | + <name>${project.name}</name> | |
40 | + <src>images/logo-l.png</src> | |
41 | + <href>${project.url}</href> | |
42 | + </bannerLeft> | |
43 | + | |
44 | + <bannerRight> | |
45 | + <src>images/logo-r.png</src> | |
46 | + </bannerRight> | |
47 | + | |
48 | + <publishDate position="left" format="dd/MM/yyyy HH:mm:ss" /> | |
49 | + <version position="left" /> | |
50 | + | |
51 | + <skin> | |
52 | + <groupId>br.gov.frameworkdemoiselle.component</groupId> | |
53 | + <artifactId>demoiselle-default-skin</artifactId> | |
54 | + <version>2.0.1</version> | |
55 | + </skin> | |
56 | + | |
57 | + <body> | |
58 | + <links> | |
59 | + <item name="Projeto" href="http://sourceforge.net/projects/demoiselle" /> | |
60 | + <item name="Portal" href="http://www.frameworkdemoiselle.gov.br" /> | |
61 | + </links> | |
62 | + | |
63 | + <menu name="Demoiselle 2"> | |
64 | + <item name="Sobre" href="index.html" /> | |
65 | + <item name="Documentação" href="http://demoiselle.sourceforge.net/docs" /> | |
66 | + <item name="Notas de Versão" href="release-notes.html" /> | |
67 | + </menu> | |
68 | + | |
69 | + <menu name="Módulos"> | |
70 | + <item name="Core" href="/core.html" /> | |
71 | + <item name="JPA extension" href="/jpa.html" /> | |
72 | + <item name="JSF extension" href="/jsf.html" /> | |
73 | + <item name="SE extension" href="/se.html" /> | |
74 | + <item name="JTA extension" href="/jta.html" /> | |
75 | + </menu> | |
76 | + </body> | |
77 | +</project> | ... | ... |
src/site/apt/core.apt
... | ... | @@ -1,47 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - Core | |
38 | - | |
39 | -Core | |
40 | - | |
41 | - O core do Demoiselle contém aquelas funcionalidades que são comuns a todas as extensões e aplicações. | |
42 | - Ele é simples, leve e formado majoritariamente por interfaces e poucas implementações, e é a base do framework. | |
43 | - Sem ele, as extensões e a própria aplicação não funcionam. | |
44 | - | |
45 | - É o core que possibilita a integração entre as camadas, criação de estereótipos, utilização de | |
46 | - recursos transacionais, tratamento de exceção, mensagens entre outras funcionalidades importantes em uma aplicação | |
47 | - tradicional. |
src/site/apt/documentation.apt
... | ... | @@ -1,47 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - Documentação | |
38 | - | |
39 | -Documentação | |
40 | - | |
41 | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
42 | -| {{{http://demoiselle.sourceforge.net/docs/quickstart}QuickStart}} | Tutorial do tipo "passo a passo" que ilustra de forma rápida e prática o Demoiselle Framework 2.0 | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/quickstart/2.0.3/pdf/demoiselle-quickstart.pdf}PDF}} | | |
43 | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
44 | -| {{{http://demoiselle.sourceforge.net/docs/reference}Reference Guide}} | Guia de referência destinado a todos que desejem conhecer melhor o framework e suas funcionalidades | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/reference/2.1.1/pdf/demoiselle-reference.pdf}PDF}} | | |
45 | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* | |
46 | -| {{{http://demoiselle.sourceforge.net/docs/what-is-new}O que mudou?}} | Documento que exemplifica as mudanças nas funcionalidades do framework | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/html/}HTML}} | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/html_single/}HTML simples}} | {{{http://demoiselle.sourceforge.net/docs/what-is-new/2.0.1/pdf/demoiselle-what-is-new.pdf}PDF}} | | |
47 | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* |
src/site/apt/index.apt
... | ... | @@ -1,43 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - Sobre o Demoiselle 2 | |
38 | - | |
39 | -Sobre o Demoiselle 2 | |
40 | - | |
41 | - A versão 2 do framework Demoiselle não possui um core monolítico, onde todas as funcionalidades estão concentradas em um único pacote, | |
42 | - pois não queremos que os desenvolvedores que utilizam o Demoiselle sejam obrigados a ter em seus projetos funcionalidades que não vão | |
43 | - utilizar. Por esse motivo, esta versão do framework foi dividida em Core, Extensões e componentes. |
src/site/apt/jpa.apt
... | ... | @@ -1,42 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - JPA extension | |
38 | - | |
39 | -JPA extension | |
40 | - | |
41 | - Esta extensão habilita o uso de JPA para tratar a persistência. Nela são disponibilidos uma fábrica de EntityManager, | |
42 | - um mecanismo de transação para JPA e um template para o DAO. |
src/site/apt/jsf.apt
... | ... | @@ -1,42 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - JSF extension | |
38 | - | |
39 | -JSF extension | |
40 | - | |
41 | - Prepara a aplicação para utilizar o JSF. Disponibiliza automaticamente as configurações | |
42 | - necessárias para o JSF. Templates de CRUD também são disponibilizados. |
src/site/apt/jta.apt
... | ... | @@ -1,43 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - JTA extension | |
38 | - | |
39 | -JTA extension | |
40 | - | |
41 | - Esta extensão é destinada à aplicações que utilizem JTA como estratégia de transação. | |
42 | - | |
43 | - |
src/site/apt/release-notes.apt
... | ... | @@ -1,188 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - Notas de Versão | |
38 | - | |
39 | -Notas de Versão | |
40 | - | |
41 | -* v2.2.0 | |
42 | - | |
43 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=711}0000711}} [Bug] FileRenderer implementando Serializable. | |
44 | - | |
45 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=697}0000697}} [Bug] Correção do Nullpointer ao executar Beans.getReference(Logger.class). | |
46 | - | |
47 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=693}0000693}} [Bug] SecurityContext criava várias instâncias de Authenticator e Authorizer. | |
48 | - | |
49 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=721}0000721}} [Improvement] Criação de casos de teste unitário no arquétipo jsf-jpa. | |
50 | - | |
51 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=673}0000673}} [Improvement] SecurityContext.isLoggedIn() verifica se authenticator.getUser() está nulo. | |
52 | - | |
53 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=680}0000680}} [Improvement] As extensões JUnit, Vaadin, Shiro viraram componentes. | |
54 | - | |
55 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=681}0000681}} [Improvement] Arquétipo Vaadin migrado para componente. | |
56 | - | |
57 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=682}0000682}} [Improvement] Parent POM Vaadin migrado para componente. | |
58 | - | |
59 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=683}0000683}} [Improvement] Remoção do código depreciado na versão 2.1. | |
60 | - | |
61 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=706}0000706}} [Improvement] Atualização da versão do hibernate-validator. | |
62 | - | |
63 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=703}0000703}} [Improvement] Atualização do repositório do primefaces. | |
64 | - | |
65 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=696}0000696}} [Improvement] Correção da mensagem de sessão invalidada anteriormente. | |
66 | - | |
67 | - | |
68 | -* {{{../2.1.2/}v2.1.2}} | |
69 | - | |
70 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=667}0000667}} [Bug] Correção na renderização de tabelas JSF do arquétipo demoiselle-jsf-jpa. | |
71 | - | |
72 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=654}0000654}} [Bug] Erro no arquétipo jsf-jpa: Property 'label.confirm.delete' not found. | |
73 | - | |
74 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=663}0000663}} [Bug] Comandos JPA em ambientes JTA não se uniam à transação antes de executar o comando. | |
75 | - | |
76 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=666}0000666}} [Bug] Correção do erro "You cannot set autocommit during a managed transaction!". | |
77 | - | |
78 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=661}0000661}} [Improvement] Depreciação do pacote "br.gov.frameworkdemoiselle.event". | |
79 | - | |
80 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=664}0000664}} [Improvement] Depreciação do estereótipo @Presenter da extensão Vaadin. | |
81 | - | |
82 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=662}0000662}} [Improvement] Depreciação das exceções do pacote "br.gov.frameworkdemoiselle.exception". | |
83 | - | |
84 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=660}0000660}} [Task] Organização do código interno. | |
85 | - | |
86 | -* {{{../2.1.1/}v2.1.1}} | |
87 | - | |
88 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=621}0000621}} [Bug] Erro em Classe que usa @Configuration. | |
89 | - | |
90 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=623}0000623}} [Bug] Telas de edição com Id do tipo String. | |
91 | - | |
92 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=624}0000624}} [Bug] Erros em arquivos do Arquétipo JPA-JSF. | |
93 | - | |
94 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=625}0000625}} [Bug] Correção do erro ao executar Maven Test no demoiselle-junit. | |
95 | - | |
96 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=638}0000638}} [Bug] Ambiguidade em classes de configuração. | |
97 | - | |
98 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=643}0000643}} [Bug] Mudança de URL no repositório JBoss. | |
99 | - | |
100 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=651}0000651}} [Bug] Correção do nome da interface Authorizator para Authorizer. | |
101 | - | |
102 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=636}0000636}} [Improvement] Possibilidade de desabilitar o redirecionamento no login e logout. | |
103 | - | |
104 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=637}0000637}} [Improvement] Mudança no redirecionamento ao realizar logout. | |
105 | - | |
106 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=641}0000641}} [Improvement] Substituição da propriedade frameworkdemoiselle.security.welcome.page. | |
107 | - | |
108 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=646}0000646}} [Improvement] Melhorias de Testes e Código. | |
109 | - | |
110 | -* {{{../2.1.0/}v2.1.0}} | |
111 | - | |
112 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=601}0000601}} [Bug] Falha ao realizar operações no banco de dados com JPATransaction. | |
113 | - | |
114 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=598}0000598}} [Bug] ClassNotFoundException: br.gov.frameworkdemoiselle.transaction.JTATransaction. | |
115 | - | |
116 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=597}0000597}} [Bug] Unsatisfied dependencies for type UserTransaction. | |
117 | - | |
118 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=584}0000584}} [Bug] Falha no tratamento de exceção no MB quando em método com retorno String. | |
119 | - | |
120 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=582}0000582}} [Bug] Erro "No active contexts" ao reiniciar uma aplicação contendo @Shutdown. | |
121 | - | |
122 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=596}0000596}} [Improvement] Mudança no nome dos eventos LoginSuccessful e LogoutSuccessful. | |
123 | - | |
124 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=595}0000595}} [Improvement] Fechamento automático dos EntityManager e EntityManagerFactory. | |
125 | - | |
126 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=594}0000594}} [Improvement] Flush automático do EntityManager no commit da transação JTA. | |
127 | - | |
128 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=593}0000593}} [Improvement] Criação da extensão JTA. | |
129 | - | |
130 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=592}0000592}} [Improvement] Renomear Classes de Eventos da extensão Vaadin. | |
131 | - | |
132 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=591}0000591}} [Improvement] Mudança na Estrutura de Pacotes da extensão Vaadin. | |
133 | - | |
134 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=577}0000577}} [Improvement] Novo arquétipo demoiselle-minimal. | |
135 | - | |
136 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=579}0000579}} [Improvement] Inclusão do demoiselle-junit no arquétipo jsf-jpa. | |
137 | - | |
138 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=578}0000578}} [Improvement] Classe utilitária para redirecionamento JSF2 no demoiselle-jsf. | |
139 | - | |
140 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=573}0000573}} [Improvement] Fábrica para obter Response. | |
141 | - | |
142 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=457}0000457}} [New Feature] Especificação Demoiselle 2.0 - Segurança. | |
143 | - | |
144 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=583}0000583}} [New Feature] Extensão para controle de acesso com o Apache Shiro. | |
145 | - | |
146 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=524}0000524}} [New Feature] Extensão para camada de apresentação com Vaadin | |
147 | - | |
148 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=580}0000580}} [Task] Parent POM demoiselle-app-parent renomeado para demoiselle-minimal-parent. | |
149 | - | |
150 | -* {{{../2.0.2/}v2.0.2}} | |
151 | - | |
152 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=558}0000558}} [Bug] Abafando Exception do JPA ConfigurationException("??????????????????????"). | |
153 | - | |
154 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=557}0000557}} [Bug] NullPointerException ao executar Beans.getReference(EntityManager.class). | |
155 | - | |
156 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=566}0000566}} [Bug] Erro ao utilizar o demoiselle-junit com o demoiselle-jsf. | |
157 | - | |
158 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=563}0000563}} [Bug] Não é possível trabalhar com duas persistence-unit. | |
159 | - | |
160 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=562}0000562}} [Improvement] Alterar o arquétipo para suportar o Tomcat. | |
161 | - | |
162 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=560}0000560}} [Task] Criar Testes Unitários para a fábrica de EntityManager. | |
163 | - | |
164 | -* {{{../2.0.1/}v2.0.1}} | |
165 | - | |
166 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=538}0000538}} [Bug] Possível loop infinito em ResourceBundleFactory. | |
167 | - | |
168 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=521}0000521}} [Bug] Dependencia indevida do componente demoiselle-validation-1.0.0-SNAPSHOT. | |
169 | - | |
170 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=517}0000517}} [Bug] Tratamento de exceções não funciona com o Weld 1.1.0-CR4. | |
171 | - | |
172 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=523}0000523}} [Improvement] Possibilitar injeção com jUnit. | |
173 | - | |
174 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=522}0000522}} [Improvement] Renomear a extensão Swing para SE. | |
175 | - | |
176 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=518}0000518}} [Improvement] Possibilitar o deploy de aplicações JSF em servidores Tomcat 6 e 7. | |
177 | - | |
178 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=534}0000534}} [Task] Disponibilizar o site do framework. | |
179 | - | |
180 | -* v2.0.0 | |
181 | - | |
182 | - * {{{http://sourceforge.net/apps/mantisbt/demoiselle/view.php?id=456}0000456}} [New Feature] Especificação Demoiselle 2.0. | |
183 | - | |
184 | -* {{{../latest1x.php}v1.x.x}} | |
185 | - | |
186 | - * Para versões anteriores {{{../latest1x.php}clique aqui}}. | |
187 | - | |
188 | - | |
189 | 0 | \ No newline at end of file |
src/site/apt/se.apt
... | ... | @@ -1,41 +0,0 @@ |
1 | -~~ Demoiselle Framework | |
2 | -~~ Copyright (C) 2010 SERPRO | |
3 | -~~ ============================================================================ | |
4 | -~~ This file is part of Demoiselle Framework. | |
5 | -~~ | |
6 | -~~ Demoiselle Framework is free software; you can redistribute it and/or | |
7 | -~~ modify it under the terms of the GNU Lesser General Public License version 3 | |
8 | -~~ as published by the Free Software Foundation. | |
9 | -~~ | |
10 | -~~ This program is distributed in the hope that it will be useful, | |
11 | -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | -~~ GNU General Public License for more details. | |
14 | -~~ | |
15 | -~~ You should have received a copy of the GNU Lesser General Public License version 3 | |
16 | -~~ along with this program; if not, see <http://www.gnu.org/licenses/> | |
17 | -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
18 | -~~ Fifth Floor, Boston, MA 02110-1301, USA. | |
19 | -~~ ============================================================================ | |
20 | -~~ Este arquivo é parte do Framework Demoiselle. | |
21 | -~~ | |
22 | -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
23 | -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
24 | -~~ do Software Livre (FSF). | |
25 | -~~ | |
26 | -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
27 | -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
28 | -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
29 | -~~ para maiores detalhes. | |
30 | -~~ | |
31 | -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
32 | -~~ "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
33 | -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., | |
34 | -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
35 | - | |
36 | - ------ | |
37 | - SE extension | |
38 | - | |
39 | -SE extension | |
40 | - | |
41 | - Extende o framework para uso em plataformas SE, o famoso mundo desktop. |
src/site/site.xml
... | ... | @@ -1,77 +0,0 @@ |
1 | -<!-- | |
2 | - Demoiselle Framework | |
3 | - Copyright (C) 2010 SERPRO | |
4 | - ============================================================================ | |
5 | - This file is part of Demoiselle Framework. | |
6 | - | |
7 | - Demoiselle Framework is free software; you can redistribute it and/or | |
8 | - modify it under the terms of the GNU Lesser General Public License version 3 | |
9 | - as published by the Free Software Foundation. | |
10 | - | |
11 | - This program is distributed in the hope that it will be useful, | |
12 | - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | - GNU General Public License for more details. | |
15 | - | |
16 | - You should have received a copy of the GNU Lesser General Public License version 3 | |
17 | - along with this program; if not, see <http://www.gnu.org/licenses/> | |
18 | - or write to the Free Software Foundation, Inc., 51 Franklin Street, | |
19 | - Fifth Floor, Boston, MA 02110-1301, USA. | |
20 | - ============================================================================ | |
21 | - Este arquivo é parte do Framework Demoiselle. | |
22 | - | |
23 | - O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou | |
24 | - modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação | |
25 | - do Software Livre (FSF). | |
26 | - | |
27 | - Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA | |
28 | - GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou | |
29 | - APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português | |
30 | - para maiores detalhes. | |
31 | - | |
32 | - Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título | |
33 | - "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/> | |
34 | - ou escreva para a Fundação do Software Livre (FSF) Inc., | |
35 | - 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. | |
36 | ---> | |
37 | -<project> | |
38 | - <bannerLeft> | |
39 | - <name>${project.name}</name> | |
40 | - <src>images/logo-l.png</src> | |
41 | - <href>${project.url}</href> | |
42 | - </bannerLeft> | |
43 | - | |
44 | - <bannerRight> | |
45 | - <src>images/logo-r.png</src> | |
46 | - </bannerRight> | |
47 | - | |
48 | - <publishDate position="left" format="dd/MM/yyyy HH:mm:ss" /> | |
49 | - <version position="left" /> | |
50 | - | |
51 | - <skin> | |
52 | - <groupId>br.gov.frameworkdemoiselle.component</groupId> | |
53 | - <artifactId>demoiselle-default-skin</artifactId> | |
54 | - <version>2.0.1</version> | |
55 | - </skin> | |
56 | - | |
57 | - <body> | |
58 | - <links> | |
59 | - <item name="Projeto" href="http://sourceforge.net/projects/demoiselle" /> | |
60 | - <item name="Portal" href="http://www.frameworkdemoiselle.gov.br" /> | |
61 | - </links> | |
62 | - | |
63 | - <menu name="Demoiselle 2"> | |
64 | - <item name="Sobre" href="index.html" /> | |
65 | - <item name="Documentação" href="http://demoiselle.sourceforge.net/docs" /> | |
66 | - <item name="Notas de Versão" href="release-notes.html" /> | |
67 | - </menu> | |
68 | - | |
69 | - <menu name="Módulos"> | |
70 | - <item name="Core" href="/core.html" /> | |
71 | - <item name="JPA extension" href="/jpa.html" /> | |
72 | - <item name="JSF extension" href="/jsf.html" /> | |
73 | - <item name="SE extension" href="/se.html" /> | |
74 | - <item name="JTA extension" href="/jta.html" /> | |
75 | - </menu> | |
76 | - </body> | |
77 | -</project> |