Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sebastian
erp5
Commits
60dd19f8
Commit
60dd19f8
authored
Jun 15, 2011
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add function to be possible export some path using subversion
parent
a25437d1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
product/ERP5VCS/Subversion.py
product/ERP5VCS/Subversion.py
+3
-0
product/ERP5VCS/SubversionClient.py
product/ERP5VCS/SubversionClient.py
+4
-1
No files found.
product/ERP5VCS/Subversion.py
View file @
60dd19f8
...
...
@@ -142,6 +142,9 @@ class Subversion(WorkingCopy):
def
getRemoteComment
(
self
):
return
'r%s'
%
self
.
info
()[
'revision'
]
def
export
(
self
,
path
,
url
):
return
self
.
_getClient
().
export
(
path
,
url
)
def
log
(
self
,
path
):
"""return log of a file or dir
"""
...
...
product/ERP5VCS/SubversionClient.py
View file @
60dd19f8
...
...
@@ -324,7 +324,10 @@ try:
return
self
.
client
.
switch
(
path
=
path
,
url
=
url
)
def
checkout
(
self
,
path
,
url
):
return
self
.
client
.
checkout
(
path
=
path
,
url
=
url
)
return
self
.
client
.
checkout
(
path
,
url
)
def
export
(
self
,
path
,
url
):
return
self
.
client
.
export
(
path
,
url
)
def
log
(
self
,
path
):
try
:
...
...
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