-
Notifications
You must be signed in to change notification settings - Fork 0
/
del_notes.py
60 lines (46 loc) · 1.64 KB
/
del_notes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import socket
hostname = socket.gethostname()
if hostname == 'Pumukel-GNU-Tablet':
sys.path[0:0] = [
'/usr/local/Plone/buildout-cache/eggs/python_redmine-1.0.1-py2.7.egg',
'/usr/local/Plone/buildout-cache/eggs/ipython-1.2.1-py2.7.egg',
'/usr/local/Plone/buildout-cache/eggs/ipdb-0.8-py2.7.egg',
'/usr/local/Plone/buildout-cache/eggs/requests-2.3.0-py2.7.egg',
]
elif hostname == 'redmine1':
sys.path[0:0] = [
'/data/buildout-cache/eggs/python_redmine-1.0.1-py2.6.egg',
'/data/buildout-cache/eggs/ipython-1.2.1-py2.6.egg',
'/data/buildout-cache/eggs/ipdb-0.8-py2.6.egg',
'/data/buildout-cache/eggs/requests-2.3.0-py2.6.egg',
]
from redmine import Redmine
from redmine.exceptions import ResourceNotFoundError
from redmine.exceptions import ValidationError
import csv
import json
import datetime
import os.path
import ipdb
from pprint import pprint # NOQA
def del_tickets():
redmine = Redmine(
#'https://www.scm.verwaltung.uni-muenchen.de/internetdienste/',
'https://localhost/internetdienste/',
#'http://localhost/internetdienste/',
username='admin',
password='admin',
requests={'verify': False})
master_project = 'webprojekte'
rmaster_project = redmine.project.get(master_project)
#all_support_issues = redmine.issue.filter(project_id='support',tracker_id=3)
mail_daemon = redmine.contact.get(4332)
notes = mail_daemon.notes
ipdb.set_trace()
for note in notes:
redmine.note.delete(note.id)
if __name__ == "__main__":
del_tickets()