Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 26 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
*~
*.pyc
*.pyo
*.tmp*
*.mo
*.egg-info
*.egg
*.EGG
*.egg-info
*.EGG-INFO
var
bin
build
develop-eggs
downloads
eggs
fake-eggs
parts
dist
*.kpf
*.swp
*.wpr
.*.cfg
.installed.cfg
.mr.developer.cfg
.hg
.bzr
.svn
*.pyc
*.pyo
*.tmp*
src
.hg/
.bzr/
.svn/
.project
.pydevproject
testrelease
bin/
build/
develop-eggs/
downloads/
eggs/
fake-eggs/
parts/
dist/
var/



# OSX
.DS_Store
4 changes: 2 additions & 2 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extends =
package-name = collective.js.jqueryui

[versions]
collective.js.jqueryui=1.10.2.dev0
collective.js.jqueryui=1.10.4.dev0

[instance]
zcml+=collective.js.jqueryui.example
zcml+=collective.js.jqueryui.example
2 changes: 2 additions & 0 deletions collective/js/jqueryui/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from zope.i18nmessageid import MessageFactory
jQueryUIMF = MessageFactory('collective.js.jqueryui')
3 changes: 3 additions & 0 deletions collective/js/jqueryui/configure.zcml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:zcml="http://namespaces.zope.org/zcml"
xmlns:i18n="http://namespaces.zope.org/i18n"
i18n_domain="collective.js.jqueryui">

<i18n:registerTranslations directory="locales" />

<configure zcml:condition="installed Products.CMFPlone">
<include file="plone.zcml" />
</configure>
Expand Down
9 changes: 6 additions & 3 deletions collective/js/jqueryui/controlpanel.pt
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,22 @@
Up to Site Setup
</a>

<div class="documentDescription" i18n:translate="">
<div class="documentDescription" i18n:domain="collective.js.jqueryui" i18n:translate="">
Here you have access to all controlpanels related to jqueryui integration in Plone.
Make your choice.
</div>

<div id="content-core">

<p>The list below is a set of controlpanels add by addons related to jqueryui.
<p i18n:domain="collective.js.jqueryui" i18n:translate="">The list below is a set of controlpanels add by addons related to jqueryui.
Use the plugins controlpanel to control which plugin you want to use.</p>

<ul>
<tal:block tal:repeat="action view/actions">
<li><a tal:attributes="href action/url; title action/description" tal:content="action/title"></a></li>
<li>
<a tal:attributes="href action/url; title action/description"
tal:content="action/title"></a>
</li>
</tal:block>
</ul>

Expand Down
Loading