[Openlanhouse-development] SF.net SVN: openlanhouse:[292] trunk/openlh-core
Status: Pre-Alpha
Brought to you by:
n3rd3x
|
From: <n3...@us...> - 2008-10-11 17:51:50
|
Revision: 292
http://openlanhouse.svn.sourceforge.net/openlanhouse/?rev=292&view=rev
Author: n3rd3x
Date: 2008-10-11 17:51:43 +0000 (Sat, 11 Oct 2008)
Log Message:
-----------
Modified Paths:
--------------
trunk/openlh-core/INSTALL
trunk/openlh-core/src/OpenlhCore/__init__.py
Added Paths:
-----------
trunk/openlh-core/src/OpenlhCore/config.py.in
Modified: trunk/openlh-core/INSTALL
===================================================================
--- trunk/openlh-core/INSTALL 2008-10-11 17:46:00 UTC (rev 291)
+++ trunk/openlh-core/INSTALL 2008-10-11 17:51:43 UTC (rev 292)
@@ -1,9 +1,10 @@
Installation Instructions
*************************
-Copyright (C) 2006, 2007 Wilson N3RD3X <n3...@li...>
+Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+2006, 2007 Free Software Foundation, Inc.
-This file is free documentation; the Free Software Foundatin gives
+This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.
Basic Installation
@@ -66,6 +67,9 @@
all sorts of other programs in order to regenerate files that came
with the distribution.
+ 6. Often, you can also type `make uninstall' to remove the installed
+ files again.
+
Compilers and Options
=====================
Modified: trunk/openlh-core/src/OpenlhCore/__init__.py
===================================================================
--- trunk/openlh-core/src/OpenlhCore/__init__.py 2008-10-11 17:46:00 UTC (rev 291)
+++ trunk/openlh-core/src/OpenlhCore/__init__.py 2008-10-11 17:51:43 UTC (rev 292)
@@ -16,4 +16,4 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-__all__ = ("utils", "net")
\ No newline at end of file
+__all__ = ("utils", "net", "config")
Added: trunk/openlh-core/src/OpenlhCore/config.py.in
===================================================================
--- trunk/openlh-core/src/OpenlhCore/config.py.in (rev 0)
+++ trunk/openlh-core/src/OpenlhCore/config.py.in 2008-10-11 17:51:43 UTC (rev 292)
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2008 Wilson Pinto Júnior (N3RD3X) <n3...@gu...>
+#
+# 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 3 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, see <http://www.gnu.org/licenses/>.
+
+INSTALLED = True
+PREFIX = "@prefix@"
+APP_VERSION = "@VERSION@"
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|