[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1219: Licensify a couple naughty files without license info at the (trunk/src/util)
Author: edmanm
Date: 2006-09-21 01:37:41 -0400 (Thu, 21 Sep 2006)
New Revision: 1219
Modified:
trunk/src/util/html.cpp
trunk/src/util/html.h
Log:
Licensify a couple naughty files without license info at the top.
Modified: trunk/src/util/html.cpp
===================================================================
--- trunk/src/util/html.cpp 2006-09-21 05:34:38 UTC (rev 1218)
+++ trunk/src/util/html.cpp 2006-09-21 05:37:41 UTC (rev 1219)
@@ -1,6 +1,32 @@
+/****************************************************************
+ * Vidalia is distributed under the following license:
+ *
+ * Copyright (C) 2006, Matt Edman, Justin Hipple
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * 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 General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ ****************************************************************/
+/**
+ * \file html.cpp
+ * \version $Id$
+ */
+
#include "html.h"
+
/** Wraps a string in "<p>" tags, converts "\n" to "<br/>" and converts "\n\n"
* to a new paragraph. */
QString
Modified: trunk/src/util/html.h
===================================================================
--- trunk/src/util/html.h 2006-09-21 05:34:38 UTC (rev 1218)
+++ trunk/src/util/html.h 2006-09-21 05:37:41 UTC (rev 1219)
@@ -1,9 +1,35 @@
+/****************************************************************
+ * Vidalia is distributed under the following license:
+ *
+ * Copyright (C) 2006, Matt Edman, Justin Hipple
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * 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 General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ ****************************************************************/
+/**
+ * \file html.h
+ * \version $Id$
+ */
+
#ifndef _HTML_H
#define _HTML_H
#include <QString>
+
/** Wraps a string in "<p>" tags, converts "\n" to "<br/>" and converts "\n\n"
* to a new paragraph. */
QString p(QString str);