Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clowdflows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alain Shakour
clowdflows
Commits
22221f4d
Commit
22221f4d
authored
Nov 19, 2012
by
Janez K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dodal base package, nisem se locil funkcij
parent
eace9f79
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1268 additions
and
1 deletion
+1268
-1
mothra/settings.py
mothra/settings.py
+1
-0
workflows/base/__init__.py
workflows/base/__init__.py
+0
-0
workflows/base/db/package_data.json
workflows/base/db/package_data.json
+1259
-0
workflows/management/commands/import_package.py
workflows/management/commands/import_package.py
+8
-1
No files found.
mothra/settings.py
View file @
22221f4d
...
...
@@ -190,6 +190,7 @@ else:
'south'
,
'workflows'
,
'workflows.latino'
,
'workflows.base'
,
'website'
,
'signuplogin'
,
'django_extensions'
,
...
...
workflows/base/__init__.py
0 → 100644
View file @
22221f4d
workflows/base/db/package_data.json
0 → 100644
View file @
22221f4d
This diff is collapsed.
Click to expand it.
workflows/management/commands/import_package.py
View file @
22221f4d
from
django.core.management.base
import
BaseCommand
,
CommandError
from
workflows.models
import
Category
,
AbstractWidget
,
AbstractInput
,
AbstractOutput
,
AbstractOption
from
django.core
import
serializers
from
collections
import
Counter
#dirty python2.6 fix
try
:
from
collections
import
Counter
except
:
def
Counter
(
list
):
return
set
(
list
)
from
optparse
import
make_option
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment