Skip to content

Commit 9f76210

Browse files
committed
nothing
1 parent 5d2cb74 commit 9f76210

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

imagepy/menus/Plugins/Contribute/Contributions/Demo Repo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Demo Plugin
22

3-
**Path:** https://github.com/Image-Py/demoplugin
3+
**Path:** https://gitee.com/imagepy/demoplugin
44

55
**Version:** 0.1
66

imagepy/menus/Plugins/Contribute/Contributions/IBook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IBook
22

3-
**Path:** https://github.com/Image-Py/IBook
3+
**Path:** https://gitee.com/imagepy/IBook
44

55
**Version:** 0.1
66

@@ -10,7 +10,7 @@
1010

1111
**Keyword:** book, tutorial
1212

13-
**Description:** ImagePy's plugins to show some image processing method, which is friendly to beginner
13+
**Description:** ImagePy's plugins to show some image processing method, which is friendly to beginner.
1414

1515
you must fill the information upon, and you can not remove or insert line, you can write free below.
1616

imagepy/menus/Plugins/Contribute/Contributions/OpenCV.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# opencv-plgs
22

3-
**Path:** https://github.com/Image-Py/opencv-plgs
3+
**Path:** https://gitee.com/imagepy/opencv-plgs
44

55
**Version:** 0.1
66

imagepy/menus/Plugins/Contribute/Contributions/SimpleITK.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# itk-plgs
22

3-
**Path:** https://github.com/Image-Py/itk-plgs
3+
**Path:** https://gitee.com/imagepy/itk-plgs
44

55
**Version:** 0.1
66

imagepy/menus/Plugins/Contribute/Site Plugins List.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22

33
| name | version | author | mail | keyword | description |
44
| --- | --- | --- | --- | --- | --- |
5-
| [cellpose-planer](https://gitee.com/imagepy/cellpose-planer) | 0.1 | yxdragon | yxdragon@imagepy.org | cellpose,segment | generalist algorithm for cell and nucleus segmentation |
6-
| [Demo Plugin](https://github.com/Image-Py/demoplugin) | 0.1 | yxdragon | yxdragon@imagepy.org | demo,tutorial | This is a demo project to show How to write ImagePy plugin. Including the usage of all kinds of plugin, with document wrote in detail. Developers can take this project as example.
5+
| [IBook](https://github.com/Image-Py/IBook) | 0.1 | yxdragon | yxdragon@imagepy.org | book, tutorial | ImagePy's plugins to show some image processing method, which is friendly to beginner. |
6+
| [cellpose-planer](https://github.com/Image-Py/cellpose-planer) | 0.1 | yxdragon | yxdragon@imagepy.org | cellpose, segment | generalist algorithm for cell and nucleus segmentation |
7+
| [Demo Plugin](https://github.com/Image-Py/demoplugin) | 0.1 | yxdragon | yxdragon@imagepy.org | demo, tutorial | This is a demo project to show How to write ImagePy plugin. Including the usage of all kinds of plugin, with document wrote in detail. Developers can take this project as example. |
8+
| [OpenCV](https://github.com/Image-Py/opencv-plgs) | 0.1 | yxdragon | yxdragon@imagepy.org | opencv | OpenCV plugin set for ImagePy |
9+
| [SimpleITK](https://github.com/Image-Py/itk-plgs) | 0.1 | yxdragon | yxdragon@imagepy.org | itk, segment | SimpleITK plugin set for ImagePy |

imagepy/menus/Plugins/Contribute/update_plg.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ class Plugin(Free):
88
def run(self, para = None):
99
try:
1010
here = osp.abspath(osp.dirname(__file__))
11-
url = 'https://gitee.com/mirrors/imagepy/tree/master/imagepy/menus/Plugins/Contribute/Contributions'
12-
temp = re.compile('mirrors/imagepy/blob/master/imagepy/menus/Plugins/Contribute/Contributions/.*?md')
13-
rst = urlopen(url).read().decode('utf-8')
11+
url = 'https://gitee.com/imagepy/imagepy/tree/master/imagepy/menus/Plugins/Contribute'
12+
temp = re.compile('imagepy/imagepy/blob/master/imagepy/menus/Plugins/Contribute/Contributions/.*?md')
13+
rst = urlopen(url+'/Contributions').read().decode('utf-8')
1414
records = ['https://gitee.com/'+i.replace('blob', 'raw') for i in temp.findall(rst)]
1515
for i in records: urlretrieve(i, osp.join(here, 'Contributions', osp.split(i)[-1].replace('%20',' ')))
16+
urlretrieve(url.replace('tree', 'raw')+'/Site%20Plugins%20List.md', osp.join(here, 'Site Plugins List.md'))
1617
self.app.alert('site plugins list updated!')
1718
except Exception as e:
1819
self.app.alert('update failed!\tErrof:%s'%sys.exc_info()[1])

imagepy/menus/Plugins/update_plg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Update(Free):
99

1010
def run(self, para=None):
1111
self.app.info('update now, waiting...')
12-
url = 'https://gitee.com/mirrors/imagepy'
12+
url = 'https://gitee.com/imagepy/imagepy'
1313
path = osp.dirname(root_dir); rpath = osp.dirname(path)
1414
newpath = osp.join(rpath, 'imagepy_new')
1515
if osp.exists(newpath): shutil.rmtree(newpath)

0 commit comments

Comments
 (0)