Mike 3 роки тому
батько
коміт
987c31541e
3 змінених файлів з 5 додано та 5 видалено
  1. 1 1
      backstage/blogs/forms.py
  2. 2 2
      backstage/blogs/routes.py
  3. 2 2
      backstage/upload/routes.py

+ 1 - 1
backstage/blogs/forms.py

@@ -7,7 +7,7 @@ from wtforms import StringField, SelectField
 from wtforms.validators import DataRequired
 
 
-path = UPLOAD_PATH_MAP[0][0]+'../blog/設計專欄'
+path = UPLOAD_PATH_MAP[0][0]+'../blog'
 configfiles = [os.path.join(dirpath, f)
         for dirpath, dirnames, files in os.walk(path)
         for f in fnmatch.filter(files, 'cat*.md')]

+ 2 - 2
backstage/blogs/routes.py

@@ -64,7 +64,7 @@ categories: ["{}"]\n\
               'blog',
               get_trans_title_url_name(request.args["title"]))
 
-    CatPath = UPLOAD_PATH_MAP[0][0]+"../blog/設計專欄/" + get_trans_title_url_name(request.args["title"])
+    CatPath = UPLOAD_PATH_MAP[0][0]+"../blog/" + get_trans_title_url_name(request.args["title"])
 
     print(CatPath)
     if not os.path.exists(CatPath):
@@ -85,7 +85,7 @@ def remove():
 """ def GetCategories():
     GetCategories
     configfiles = [os.path.join(dirpath, f)
-        for dirpath, dirnames, files in os.walk(UPLOAD_PATH_MAP+'../blog/設計專欄')
+        for dirpath, dirnames, files in os.walk(UPLOAD_PATH_MAP+'../blog')
         for f in fnmatch.filter(files, 'category.md')]
 
     return configfiles """

+ 2 - 2
backstage/upload/routes.py

@@ -58,7 +58,7 @@ def upload_post(iurl):
                     sitepath = UPLOAD_PATH_MAP[0][0] + "../../static/img/collection/"
                 else:
                     if itype == "blog":
-                        sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/設計專欄/" + filepath + "/img/"
+                        sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/" + filepath + "/img/"
                     else:
                         sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
                 oimgtype = file.filename[file.filename.rfind(".")+1:]
@@ -125,7 +125,7 @@ def get_image(iurl):
 
     # print(request.get_json()['url'])
     if itype == "blog":
-        sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/設計專欄/" + filepath + "/img/"
+        sitepath = UPLOAD_PATH_MAP[0][0] + "../blog/" + filepath + "/img/"
     else:
         sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"
     #sitepath = UPLOAD_PATH_MAP[0][0] + filepath + "/img/"