From 5221f7c6bbe8449e4255322a8886906d76f71c65 Mon Sep 17 00:00:00 2001 From: Cleverson Sacramento Date: Mon, 15 Sep 2014 11:17:02 -0300 Subject: [PATCH] Criação do CacheFilter na extensão REST --- impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/CacheFilter.java | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/ServletFilter.java | 13 ------------- site/apt/core.apt | 47 ----------------------------------------------- site/apt/documentation.apt | 47 ----------------------------------------------- site/apt/index.apt | 43 ------------------------------------------- site/apt/jpa.apt | 42 ------------------------------------------ site/apt/jsf.apt | 42 ------------------------------------------ site/apt/jta.apt | 43 ------------------------------------------- site/apt/rest.apt | 42 ------------------------------------------ site/apt/se.apt | 41 ----------------------------------------- site/apt/servlet.apt | 43 ------------------------------------------- site/site.xml | 79 ------------------------------------------------------------------------------- 12 files changed, 71 insertions(+), 482 deletions(-) create mode 100644 impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/CacheFilter.java delete mode 100644 site/apt/core.apt delete mode 100644 site/apt/documentation.apt delete mode 100644 site/apt/index.apt delete mode 100644 site/apt/jpa.apt delete mode 100644 site/apt/jsf.apt delete mode 100644 site/apt/jta.apt delete mode 100644 site/apt/rest.apt delete mode 100644 site/apt/se.apt delete mode 100644 site/apt/servlet.apt delete mode 100755 site/site.xml diff --git a/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/CacheFilter.java b/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/CacheFilter.java new file mode 100644 index 0000000..6ca8b1b --- /dev/null +++ b/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/CacheFilter.java @@ -0,0 +1,71 @@ +/* + * Demoiselle Framework + * Copyright (C) 2010 SERPRO + * ---------------------------------------------------------------------------- + * This file is part of Demoiselle Framework. + * + * Demoiselle Framework is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License version 3 + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License version 3 + * along with this program; if not, see + * or write to the Free Software Foundation, Inc., 51 Franklin Street, + * Fifth Floor, Boston, MA 02110-1301, USA. + * ---------------------------------------------------------------------------- + * Este arquivo é parte do Framework Demoiselle. + * + * O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou + * modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação + * do Software Livre (FSF). + * + * Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA + * GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou + * APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português + * para maiores detalhes. + * + * Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título + * "LICENCA.txt", junto com esse programa. Se não, acesse + * ou escreva para a Fundação do Software Livre (FSF) Inc., + * 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. + */ +package br.gov.frameworkdemoiselle.util; + +import java.io.IOException; + +import javax.servlet.Filter; +import javax.servlet.FilterChain; +import javax.servlet.FilterConfig; +import javax.servlet.ServletException; +import javax.servlet.ServletRequest; +import javax.servlet.ServletResponse; +import javax.servlet.http.HttpServletResponse; + +public class CacheFilter implements Filter { + + private String value; + + @Override + public void init(FilterConfig config) throws ServletException { + value = config.getInitParameter("value"); + } + + @Override + public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, + ServletException { + if (response instanceof HttpServletResponse) { + ((HttpServletResponse) response).setHeader("Cache-Control", value); + } + + chain.doFilter(request, response); + } + + @Override + public void destroy() { + } +} diff --git a/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/ServletFilter.java b/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/ServletFilter.java index 613e251..20f64c2 100644 --- a/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/ServletFilter.java +++ b/impl/extension/servlet/src/main/java/br/gov/frameworkdemoiselle/util/ServletFilter.java @@ -50,11 +50,6 @@ import javax.servlet.http.HttpServletResponse; import br.gov.frameworkdemoiselle.internal.producer.HttpServletRequestProducer; import br.gov.frameworkdemoiselle.internal.producer.HttpServletResponseProducer; -/** - * Implements the {@link javax.servlet.Filter} interface. - * - * @author SERPRO - */ public class ServletFilter implements Filter { @Override @@ -66,14 +61,6 @@ public class ServletFilter implements Filter { ServletException { setDelegate(request, response); chain.doFilter(request, response); - - // if (request instanceof HttpServletRequest) { - // Object attribute = ((HttpServletRequest) request).getAttribute("x"); - // ((HttpServletResponse) response).setHeader("Set-Cookie", ""); - // ((HttpServletResponse) response).setHeader("XXXX", "CCCC"); - // response.getWriter().flush(); - // response.getWriter().close(); - // } } private void setDelegate(ServletRequest request, ServletResponse response) { diff --git a/site/apt/core.apt b/site/apt/core.apt deleted file mode 100644 index 66681f8..0000000 --- a/site/apt/core.apt +++ /dev/null @@ -1,47 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - Core - -Core - - O core do Demoiselle contém aquelas funcionalidades que são comuns a todas as extensões e aplicações. - Ele é simples, leve e formado majoritariamente por interfaces e poucas implementações, e é a base do framework. - Sem ele, as extensões e a própria aplicação não funcionam. - - É o core que possibilita a integração entre as camadas, criação de estereótipos, utilização de - recursos transacionais, tratamento de exceção, mensagens entre outras funcionalidades importantes em uma aplicação - tradicional. diff --git a/site/apt/documentation.apt b/site/apt/documentation.apt deleted file mode 100644 index 67e4750..0000000 --- a/site/apt/documentation.apt +++ /dev/null @@ -1,47 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - Documentação - -Documentação - -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* -| {{{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}} | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* -| {{{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}} | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* -| {{{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}} | -*-----------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------* diff --git a/site/apt/index.apt b/site/apt/index.apt deleted file mode 100644 index 96ef26d..0000000 --- a/site/apt/index.apt +++ /dev/null @@ -1,43 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - Sobre o Demoiselle 2 - -Sobre o Demoiselle 2 - - 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, - pois não queremos que os desenvolvedores que utilizam o Demoiselle sejam obrigados a ter em seus projetos funcionalidades que não vão - utilizar. Por esse motivo, esta versão do framework foi dividida em Core, Extensões e componentes. diff --git a/site/apt/jpa.apt b/site/apt/jpa.apt deleted file mode 100644 index 847d415..0000000 --- a/site/apt/jpa.apt +++ /dev/null @@ -1,42 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - JPA extension - -JPA extension - - Esta extensão habilita o uso de JPA para tratar a persistência. Nela são disponibilizados uma fábrica de EntityManager, - um mecanismo de transação para JPA e um template para o DAO. diff --git a/site/apt/jsf.apt b/site/apt/jsf.apt deleted file mode 100644 index 879b3e5..0000000 --- a/site/apt/jsf.apt +++ /dev/null @@ -1,42 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - JSF extension - -JSF extension - - Prepara a aplicação para utilizar o JSF. Disponibiliza automaticamente as configurações - necessárias para o JSF. Templates de CRUD também são disponibilizados. diff --git a/site/apt/jta.apt b/site/apt/jta.apt deleted file mode 100644 index 12379b5..0000000 --- a/site/apt/jta.apt +++ /dev/null @@ -1,43 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - JTA extension - -JTA extension - - Esta extensão é destinada à aplicações que utilizem JTA como estratégia de transação. - - diff --git a/site/apt/rest.apt b/site/apt/rest.apt deleted file mode 100644 index c87e51e..0000000 --- a/site/apt/rest.apt +++ /dev/null @@ -1,42 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - REST extension - -REST extension - - Esta extensão habilita o uso da especificação JAX-RS para expor serviços. Nela são disponibilizadas exceções, - mapeadores de exceção, interceptadores para validação. diff --git a/site/apt/se.apt b/site/apt/se.apt deleted file mode 100644 index b434adc..0000000 --- a/site/apt/se.apt +++ /dev/null @@ -1,41 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - SE extension - -SE extension - - Extende o framework para uso em plataformas SE, o famoso mundo desktop. diff --git a/site/apt/servlet.apt b/site/apt/servlet.apt deleted file mode 100644 index 394605d..0000000 --- a/site/apt/servlet.apt +++ /dev/null @@ -1,43 +0,0 @@ -~~ Demoiselle Framework -~~ Copyright (C) 2010 SERPRO -~~ ============================================================================ -~~ This file is part of Demoiselle Framework. -~~ -~~ Demoiselle Framework is free software; you can redistribute it and/or -~~ modify it under the terms of the GNU Lesser General Public License version 3 -~~ as published by the Free Software Foundation. -~~ -~~ This program is distributed in the hope that it will be useful, -~~ but WITHOUT ANY WARRANTY; without even the implied warranty of -~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -~~ GNU General Public License for more details. -~~ -~~ You should have received a copy of the GNU Lesser General Public License version 3 -~~ along with this program; if not, see -~~ or write to the Free Software Foundation, Inc., 51 Franklin Street, -~~ Fifth Floor, Boston, MA 02110-1301, USA. -~~ ============================================================================ -~~ Este arquivo é parte do Framework Demoiselle. -~~ -~~ O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou -~~ modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação -~~ do Software Livre (FSF). -~~ -~~ Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA -~~ GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou -~~ APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português -~~ para maiores detalhes. -~~ -~~ Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título -~~ "LICENCA.txt", junto com esse programa. Se não, acesse -~~ ou escreva para a Fundação do Software Livre (FSF) Inc., -~~ 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. - - ------ - Servlet extension - -Servlet extension - - Esta extensão possibilita a injeção de elementos da especificação Servlet. Nela são disponibilidos fábricas de - HttpServletResponse, HttpServletRequest, HttpSession; implementação do mecanismo de controle de acesso que delega - a responsabilidade para o login-config definido no web.xml; além de filtros e listeners. diff --git a/site/site.xml b/site/site.xml deleted file mode 100755 index c26baad..0000000 --- a/site/site.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - ${project.name} - images/logo-l.png - ${project.url} - - - - images/logo-r.png - - - - - - - br.gov.frameworkdemoiselle.component - demoiselle-default-skin - 2.0.1 - - - - - - - - - - - - - - - - - - - - - - - - - -- libgit2 0.21.2