Changeset 2154 in products


Ignore:
Timestamp:
Apr 19, 2010 3:02:04 PM (14 years ago)
Author:
olha
Message:

doc files updated.

Location:
quintagroup.canonicalpath/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.canonicalpath/trunk/README.txt

    r782 r2154  
    22============ 
    33 
     4quintagroup.canonicalpath package brings canonical path calculation  
     5functionality to Plone. The package allows to define path and/or link  
     6to the object, which may differ from standard physical path or its URL 
     7in portal. 
    48 
     9It's used by such products as quintagroup.seoptimizer (for defining 
     10canonical link of the object) and quintagroup.plonegooglesitemaps (on 
     11google sitemaps generation). 
     12 
     13This package is intended for bringing *canonical_path* and/or 
     14*canonical_link* property to any traversable object. For that purpose 
     15it defines ICanonicalPath and ICanonicalLink interfaces, and registers 
     16basic adapters for ITraversable objects. 
     17 
     18This package also registers *canonical_path* and *canonical_link* indexes 
     19for possible usage in catalog (ZCatalog). 
     20 
     21Default adapters behaviour: 
     22 
     23- *canonical_path* returns path from portal root, i.e. for 
     24    `/plone/front-page` *canonical_path* will be `/front-page`. 
     25 
     26- *canonical_link* returns absoulute url of the object. 
     27 
     28 
     29Supported Plone version 
     30----------------------- 
     31 
     32* 3.x 
     33 
     34 
     35Authors 
     36------- 
     37 
     38The product was developed by Quintagroup.com team: 
     39 
     40* Andriy Mylenkyi 
     41* Taras Melnychuk 
     42* Volodymyr Cherepanyak 
     43 
     44Copyright (c) "Quintagroup": http://quintagroup.com, 2004-2010 
  • quintagroup.canonicalpath/trunk/docs/HISTORY.txt

    r2104 r2154  
    22========= 
    33 
    4 0.6 (unreleased) 
     40.6 (2010-04-20) 
    55---------------- 
    66 
  • quintagroup.canonicalpath/trunk/quintagroup/canonicalpath/README.txt

    r2151 r2154  
    1 quintagroup.canonicalpath Package Readme 
    2 ======================================== 
     1quintagroup.canonicalpath package brings canonical path calculation  
     2functionality to Plone. The package allows to define path and/or link  
     3to the object, which may differ from standard physical path or its URL 
     4in portal. 
    35 
    4 The package serves for possibility to define path and/or link for the 
    5 object, which may differ from standard Physical path or URL in portal. 
    6 It's uses by such products as quintagroup.seoptimizer (for defining 
    7 canonical link of the object), quintagroup.plonegooglesitemaps (on 
     6It's used by such products as quintagroup.seoptimizer (for defining 
     7canonical link of the object) and quintagroup.plonegooglesitemaps (on 
    88google sitemaps generation). 
    99 
    10 This package intended for bring *canonical_path* and/or 
    11 *canonical_link* property to any traversable object. For that it 
    12 defines ICanonicalPath and ICanonicalLink interfaces, and register 
     10This package is intended for bringing *canonical_path* and/or 
     11*canonical_link* property to any traversable object. For that purpose 
     12it defines ICanonicalPath and ICanonicalLink interfaces, and registers 
    1313basic adapters for ITraversable objects. 
    1414 
    15 Also package register *canonical_path* and *canonical_link* indexers 
     15This package also registers *canonical_path* and *canonical_link* indexes 
    1616for possible usage in catalog (ZCatalog). 
    1717 
    1818Default adapters behaviour: 
    1919 
    20   - *canonical_path* return path from portal root, i.e. for 
    21     `/plone/front-page` *canonical_path* will be `/front-page`. 
    22   - *canonical_link* return absoulute url of the object. 
     20  - *canonical_path* returns path from portal root, i.e. for `/plone/front-page` *canonical_path* will be `/front-page`. 
     21  - *canonical_link* returns absoulute url of the object. 
  • quintagroup.canonicalpath/trunk/setup.py

    r2104 r2154  
    22import os 
    33 
    4 version = '0.6dev' 
     4version = '0.6' 
    55 
    66tests_require=['zope.testing'] 
    77setup(name='quintagroup.canonicalpath', 
    88      version=version, 
    9       description="Bring canonical path calculation functionality", 
     9      description="Brings canonical path calculation functionality", 
    1010      long_description=open("README.txt").read() + "\n" + 
    1111                       open(os.path.join("docs", "HISTORY.txt")).read(), 
Note: See TracChangeset for help on using the changeset viewer.