Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RQL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
RQL
Commits
35e86ad388c8
Commit
35e86ad388c8
authored
14 years ago
by
Sylvain Thénault
Browse files
Options
Downloads
Plain Diff
backport stable
parents
ba03d9f51737
283e1d29bff5
No related branches found
No related tags found
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
.hgtags
+2
-0
2 additions, 0 deletions
.hgtags
ChangeLog
+6
-1
6 additions, 1 deletion
ChangeLog
__pkginfo__.py
+2
-2
2 additions, 2 deletions
__pkginfo__.py
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
setup.py
+2
-2
2 additions, 2 deletions
setup.py
stmts.py
+6
-1
6 additions, 1 deletion
stmts.py
with
24 additions
and
6 deletions
.hgtags
+
2
−
0
View file @
35e86ad3
...
...
@@ -52,3 +52,5 @@
3142115086127f3e9995081fff3fef3d420838cf rql-debian-version-0.26.1-1
7d5bef1742bc302309668982af10409bcc96eadf rql-version-0.26.2
cb66c5a9918dd8958dd3cdf48f8bdd0c2786b76a rql-debian-version-0.26.2-1
7fb422fc2032ecc5a93528ed382e083b212b1cbf rql-version-0.26.3
aca033de456a6b526045f9be0dbdb770e67912ab rql-debian-version-0.26.3-1
This diff is collapsed.
Click to expand it.
ChangeLog
+
6
−
1
View file @
35e86ad3
ChangeLog for RQL
=================
--
2010-06-21 -- 0.26.3
* support for node from having in Select.remove
* enhanced Select.replace method
...
...
@@ -5,3 +7,4 @@
* enhanced Select.replace method
* rql st checker now checks function avaibility according to backend (if specified)
...
...
@@ -6,5 +9,7 @@
* rql st checker now checks function avaibility according to backend (if specified)
2010-06-11 -- 0.26.2
* totally remove 'IS' operator
...
...
This diff is collapsed.
Click to expand it.
__pkginfo__.py
+
2
−
2
View file @
35e86ad3
...
...
@@ -20,7 +20,7 @@
__docformat__
=
"
restructuredtext en
"
modname
=
"
rql
"
numversion
=
(
0
,
26
,
2
)
numversion
=
(
0
,
26
,
3
)
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
license
=
'
LGPL
'
...
...
@@ -28,7 +28,7 @@
author
=
"
Logilab
"
author_email
=
"
contact@logilab.fr
"
short_desc
=
"
relationship query language (RQL) utilities
"
description
=
"
relationship query language (RQL) utilities
"
long_desc
=
"""
A library providing the base utilities to handle RQL queries,
such as a parser, a type inferencer.
"""
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
35e86ad3
rql (0.26.3-1) unstable; urgency=low
* new upstream release
-- Sylvain Thénault <sylvain.thenault@logilab.fr> Mon, 21 Jun 2010 09:34:41 +0200
rql (0.26.2-1) unstable; urgency=low
* new upstream release
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
35e86ad3
...
...
@@ -40,7 +40,7 @@
sys
.
modules
.
pop
(
'
__pkginfo__
'
,
None
)
# import required features
from
__pkginfo__
import
modname
,
version
,
license
,
short_desc
,
long_desc
,
\
from
__pkginfo__
import
modname
,
version
,
license
,
description
,
long_desc
,
\
web
,
author
,
author_email
# import optional features
import
__pkginfo__
...
...
@@ -185,7 +185,7 @@
return
setup
(
name
=
distname
,
version
=
version
,
license
=
license
,
description
=
short_desc
,
description
=
description
,
long_description
=
long_desc
,
author
=
author
,
author_email
=
author_email
,
...
...
This diff is collapsed.
Click to expand it.
stmts.py
+
6
−
1
View file @
35e86ad3
...
...
@@ -677,6 +677,9 @@
term
.
parent
=
self
self
.
selection
.
append
(
term
)
# XXX proprify edition, we should specify if we want:
# * undo support
# * references handling
def
replace
(
self
,
oldnode
,
newnode
):
if
oldnode
is
self
.
where
:
self
.
where
=
newnode
...
...
@@ -703,7 +706,9 @@
self
.
remove_sort_term
(
node
)
elif
node
in
self
.
groupby
:
self
.
remove_group_var
(
node
)
# XXX having, selection
elif
node
in
self
.
having
:
self
.
having
.
remove
(
node
)
# XXX selection
else
:
raise
Exception
(
'
duh XXX
'
)
node
.
parent
=
None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment