Skip to content

Instantly share code, notes, and snippets.

@fulv
Created November 5, 2014 15:31
Show Gist options
  • Save fulv/03a43c4989c7e413cf94 to your computer and use it in GitHub Desktop.
Save fulv/03a43c4989c7e413cf94 to your computer and use it in GitHub Desktop.

Revisions

  1. fulv revised this gist Nov 5, 2014. No changes.
  2. fulv created this gist Nov 5, 2014.
    32 changes: 32 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,32 @@
    <configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:five="http://namespaces.zope.org/five"
    xmlns:i18n="http://namespaces.zope.org/i18n"
    xmlns:genericsetup="http://namespaces.zope.org/genericsetup"
    xmlns:cmf="http://namespaces.zope.org/cmf"
    i18n_domain="plonesocial.network">

    <five:registerPackage package="." initialize=".initialize" />
    <i18n:registerTranslations directory="locales" />

    <include package=".browser" />

    <genericsetup:registerProfile
    name="default"
    title="PloneSocial Network"
    directory="profiles/default"
    description="Installs the plonesocial.network package"
    provides="Products.GenericSetup.interfaces.EXTENSION"
    i18n:attributes="title; description"
    />

    <genericsetup:registerProfile
    name="uninstall"
    title="PloneSocial Network Uninstall"
    directory="profiles/uninstall"
    description="Uninstalls the plonesocial.network package"
    provides="Products.GenericSetup.interfaces.EXTENSION"
    i18n:attributes="title; description"
    />

    </configure>