[Checkins] SVN: Sandbox/lra/ moved megrok.simpelauth into it's own directory

Luciano Ramalho luciano at ramalho.org
Mon Jan 21 18:04:19 EST 2008


Log message for revision 83078:
  moved megrok.simpelauth into it's own directory

Changed:
  D   Sandbox/lra/README.txt
  D   Sandbox/lra/TODO.txt
  A   Sandbox/lra/megrok.simpleauth/
  A   Sandbox/lra/megrok.simpleauth/README.txt
  A   Sandbox/lra/megrok.simpleauth/TODO.txt
  A   Sandbox/lra/megrok.simpleauth/setup.cfg
  A   Sandbox/lra/megrok.simpleauth/setup.py
  A   Sandbox/lra/megrok.simpleauth/src/
  D   Sandbox/lra/setup.cfg
  D   Sandbox/lra/setup.py
  D   Sandbox/lra/src/

-=-
Deleted: Sandbox/lra/README.txt
===================================================================
--- Sandbox/lra/README.txt	2008-01-21 22:52:49 UTC (rev 83077)
+++ Sandbox/lra/README.txt	2008-01-21 23:04:18 UTC (rev 83078)
@@ -1,40 +0,0 @@
--------------------
- megrok.simpleauth 
--------------------
-
-*Grok package for simple authentication*
-
-==============
- Introduction
-==============
-
-This package provides a pre-configured PAU with PrincipalFolder,
-InternalPrincipals (with easily extensible annotations) and SessionLogin(?),
-and a set of views for user account creation, login, logout etc.
-
-Calling megrok.setup inside your grok.App class configures all of the above
-with sensible defaults, but the user schema can be extended and the views
-overriden.
-
-
-===============
- Basic outline
-===============
-
-from megrok import simpleauth
-class Foo(grok.App, ...):
-    simpleauth.setup([view_map], [user_schema])
-
-view_map: A dictionary mapping default view names to custom ones for:
-
-  * login
-  * logout
-  * join
-  * user_search, user_listing
-  * user_profile, user_edit
-
-  Each one of these may be a string giving the new name for the view, or
-  None to disable creation of that particular view.
-
-user_schema: A schema (which extends simpleauth.IUser) defining user
-attributes.

Deleted: Sandbox/lra/TODO.txt
===================================================================
--- Sandbox/lra/TODO.txt	2008-01-21 22:52:49 UTC (rev 83077)
+++ Sandbox/lra/TODO.txt	2008-01-21 23:04:18 UTC (rev 83078)
@@ -1,4 +0,0 @@
-- Implement simpleauth.setup grokker.
-- Research looking up views that implement specific interfaces.
-- Implement Annotation adapter for custom schema
-- Expand README

Copied: Sandbox/lra/megrok.simpleauth/README.txt (from rev 83077, Sandbox/lra/README.txt)
===================================================================
--- Sandbox/lra/megrok.simpleauth/README.txt	                        (rev 0)
+++ Sandbox/lra/megrok.simpleauth/README.txt	2008-01-21 23:04:18 UTC (rev 83078)
@@ -0,0 +1,40 @@
+-------------------
+ megrok.simpleauth 
+-------------------
+
+*Grok package for simple authentication*
+
+==============
+ Introduction
+==============
+
+This package provides a pre-configured PAU with PrincipalFolder,
+InternalPrincipals (with easily extensible annotations) and SessionLogin(?),
+and a set of views for user account creation, login, logout etc.
+
+Calling megrok.setup inside your grok.App class configures all of the above
+with sensible defaults, but the user schema can be extended and the views
+overriden.
+
+
+===============
+ Basic outline
+===============
+
+from megrok import simpleauth
+class Foo(grok.App, ...):
+    simpleauth.setup([view_map], [user_schema])
+
+view_map: A dictionary mapping default view names to custom ones for:
+
+  * login
+  * logout
+  * join
+  * user_search, user_listing
+  * user_profile, user_edit
+
+  Each one of these may be a string giving the new name for the view, or
+  None to disable creation of that particular view.
+
+user_schema: A schema (which extends simpleauth.IUser) defining user
+attributes.

Copied: Sandbox/lra/megrok.simpleauth/TODO.txt (from rev 83077, Sandbox/lra/TODO.txt)
===================================================================
--- Sandbox/lra/megrok.simpleauth/TODO.txt	                        (rev 0)
+++ Sandbox/lra/megrok.simpleauth/TODO.txt	2008-01-21 23:04:18 UTC (rev 83078)
@@ -0,0 +1,4 @@
+- Implement simpleauth.setup grokker.
+- Research looking up views that implement specific interfaces.
+- Implement Annotation adapter for custom schema
+- Expand README

Copied: Sandbox/lra/megrok.simpleauth/setup.cfg (from rev 83077, Sandbox/lra/setup.cfg)
===================================================================
--- Sandbox/lra/megrok.simpleauth/setup.cfg	                        (rev 0)
+++ Sandbox/lra/megrok.simpleauth/setup.cfg	2008-01-21 23:04:18 UTC (rev 83078)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = true

Copied: Sandbox/lra/megrok.simpleauth/setup.py (from rev 83077, Sandbox/lra/setup.py)
===================================================================
--- Sandbox/lra/megrok.simpleauth/setup.py	                        (rev 0)
+++ Sandbox/lra/megrok.simpleauth/setup.py	2008-01-21 23:04:18 UTC (rev 83078)
@@ -0,0 +1,35 @@
+from setuptools import setup, find_packages
+
+version = '0.1'
+
+setup(name='megrok.simpleauth',
+      version=version,
+      description="Simple authentication setup for Grok apps.",
+      long_description="""\
+Simple authentication setup for Grok apps.""",
+      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      classifiers=[
+        "Framework :: Plone",
+        "Framework :: Zope2",
+        "Framework :: Zope3",
+        "Programming Language :: Python",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
+      keywords='grok authentication',
+      author='Leonardo Rochael, Luciano Ramalho, Rodrigo Pimentel',
+      author_email='',
+      url='',
+      license='ZPL',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['megrok'],
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          'setuptools',
+          # -*- Extra requirements: -*-
+      ],
+      entry_points="""
+      # -*- Entry points: -*-
+      """,
+      )

Copied: Sandbox/lra/megrok.simpleauth/src (from rev 83077, Sandbox/lra/src)

Deleted: Sandbox/lra/setup.cfg
===================================================================
--- Sandbox/lra/setup.cfg	2008-01-21 22:52:49 UTC (rev 83077)
+++ Sandbox/lra/setup.cfg	2008-01-21 23:04:18 UTC (rev 83078)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true

Deleted: Sandbox/lra/setup.py
===================================================================
--- Sandbox/lra/setup.py	2008-01-21 22:52:49 UTC (rev 83077)
+++ Sandbox/lra/setup.py	2008-01-21 23:04:18 UTC (rev 83078)
@@ -1,35 +0,0 @@
-from setuptools import setup, find_packages
-
-version = '0.1'
-
-setup(name='megrok.simpleauth',
-      version=version,
-      description="Simple authentication setup for Grok apps.",
-      long_description="""\
-Simple authentication setup for Grok apps.""",
-      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
-      classifiers=[
-        "Framework :: Plone",
-        "Framework :: Zope2",
-        "Framework :: Zope3",
-        "Programming Language :: Python",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        ],
-      keywords='grok authentication',
-      author='Leonardo Rochael, Luciano Ramalho, Rodrigo Pimentel',
-      author_email='',
-      url='',
-      license='ZPL',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['megrok'],
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          'setuptools',
-          # -*- Extra requirements: -*-
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      )



More information about the Checkins mailing list