Ver Fonte

210803 skip renaming directories

yukyo0821 há 3 anos atrás
pai
commit
f004e3b890

+ 3 - 2
backstage/templates/tables/editor_table.html

@@ -137,7 +137,7 @@
     });
   }
   function updateHeader() {
-    if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
+    /* if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
       axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({ data }) => {
         if (data.success == "0") {
           alert('已有重複的標題,請重新設定');
@@ -150,7 +150,8 @@
     }
     else {
       writeMd();
-    }
+    } */
+    writeMd();
     location.reload();
   }
   function writeMd() {

+ 4 - 4
backstage/upload/routes.py

@@ -154,10 +154,10 @@ def modify_title(filepath):
     oldPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[0]
     newPath = UPLOAD_PATH_MAP[0][0] + filepath.split('/')[1]
     # os.renames(oldPath,newPath)
-    if os.path.exists(newPath):
-        return {"success" : 0, "message" : "New directory exists."}
-    shutil.copytree(oldPath, newPath)
-    shutil.rmtree(oldPath)
+    """ if os.path.exists(newPath):
+        return {"success" : 0, "message" : "New directory exists."} """
+    """ shutil.copytree(oldPath, newPath)
+    shutil.rmtree(oldPath) """
     print(oldPath + ' => ' + newPath)
 
     return {"success": 1}

+ 1 - 1
backstage/utils/routes.py

@@ -13,7 +13,7 @@ TYPE_URL_FOR = {'collection': 'collections.collection_list',
 def create_content(data, image_data):
     new_response = requests.post('{}new_content'.format(PORTAL_SERVER), json=data)
     if new_response.status_code == 201:
-        flash('新增文章失敗', 'danger')
+        #flash('新增文章失敗', 'danger')
         return "<script>alert('已有重複的標題,請重新設定');history.go(-1);</script>"
     if new_response.status_code == 200:
         requests.post(