Compare commits
2 Commits
master
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 98679e7a44 | |||
| bb25461952 |
17
bmec/author-guidelines/index.html
Normal file
17
bmec/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
17
cancer/author-guidelines/index.html
Normal file
17
cancer/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
18
collection/clinical-medicine1/index.html
Normal file
18
collection/clinical-medicine1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
33
collection/copy.py
Normal file
33
collection/copy.py
Normal file
@@ -0,0 +1,33 @@
|
||||
import shutil
|
||||
import os
|
||||
|
||||
# 1. 设定你要复制哪个文件夹
|
||||
source_folder = "covid-191"
|
||||
|
||||
# 2. 设定你想要生成的多个新名字
|
||||
new_names = ["immunology1",]
|
||||
|
||||
def batch_copy():
|
||||
# 检查原文件夹是否存在
|
||||
if not os.path.exists(source_folder):
|
||||
print(f"❌ 找不到原文件夹: {source_folder}")
|
||||
return
|
||||
|
||||
for name in new_names:
|
||||
# 检查目标文件夹是否已经存在,避免覆盖
|
||||
if os.path.exists(name):
|
||||
print(f"⚠️ 跳过:'{name}' 已经存在了。")
|
||||
continue
|
||||
|
||||
try:
|
||||
print(f"正在生成 {name}...")
|
||||
shutil.copytree(source_folder, name)
|
||||
print(f"✅ 成功复制为: {name}")
|
||||
except Exception as e:
|
||||
print(f"❌ 复制 {name} 时出错: {e}")
|
||||
|
||||
print("\n所有任务处理完毕!")
|
||||
|
||||
if __name__ == "__main__":
|
||||
batch_copy()
|
||||
input("按回车键退出...")
|
||||
18
collection/covid-191/index.html
Normal file
18
collection/covid-191/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
collection/food1/index.html
Normal file
18
collection/food1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
collection/immunology1/index.html
Normal file
18
collection/immunology1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
collection/nutriology1/index.html
Normal file
18
collection/nutriology1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
collection/oncology1/index.html
Normal file
18
collection/oncology1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
collection/pharmacology1/index.html
Normal file
18
collection/pharmacology1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
33
copy.py
Normal file
33
copy.py
Normal file
@@ -0,0 +1,33 @@
|
||||
import shutil
|
||||
import os
|
||||
|
||||
# 1. 设定你要复制哪个文件夹
|
||||
source_folder = "peer-review-process1"
|
||||
|
||||
# 2. 设定你想要生成的多个新名字
|
||||
new_names = ["new-papers1",]
|
||||
|
||||
def batch_copy():
|
||||
# 检查原文件夹是否存在
|
||||
if not os.path.exists(source_folder):
|
||||
print(f"❌ 找不到原文件夹: {source_folder}")
|
||||
return
|
||||
|
||||
for name in new_names:
|
||||
# 检查目标文件夹是否已经存在,避免覆盖
|
||||
if os.path.exists(name):
|
||||
print(f"⚠️ 跳过:'{name}' 已经存在了。")
|
||||
continue
|
||||
|
||||
try:
|
||||
print(f"正在生成 {name}...")
|
||||
shutil.copytree(source_folder, name)
|
||||
print(f"✅ 成功复制为: {name}")
|
||||
except Exception as e:
|
||||
print(f"❌ 复制 {name} 时出错: {e}")
|
||||
|
||||
print("\n所有任务处理完毕!")
|
||||
|
||||
if __name__ == "__main__":
|
||||
batch_copy()
|
||||
input("按回车键退出...")
|
||||
18
editorial-workflow1/index.html
Normal file
18
editorial-workflow1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
for-authors1/index.html
Normal file
18
for-authors1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
for-conference-organizers1/index.html
Normal file
18
for-conference-organizers1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
for-librarians1/index.html
Normal file
18
for-librarians1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
17
hpm/author-guidelines/index.html
Normal file
17
hpm/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
17
ia/author-guidelines/index.html
Normal file
17
ia/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
17
in/author-guidelines/index.html
Normal file
17
in/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
17
lr/author-guidelines/index.html
Normal file
17
lr/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
17
mdm/author-guidelines/index.html
Normal file
17
mdm/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
18
new-papers1/index.html
Normal file
18
new-papers1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
online-first1/index.html
Normal file
18
online-first1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
open-access1/index.html
Normal file
18
open-access1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
18
peer-review-process1/index.html
Normal file
18
peer-review-process1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
17
tmr/author-guidelines/index.html
Normal file
17
tmr/author-guidelines/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../../js/jquery.min.js"></script>
|
||||
<script src="../../js/common/commonJS.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
18
top-cited1/index.html
Normal file
18
top-cited1/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
|
||||
<script src="../js/jquery.min.js"></script>
|
||||
<script src="../js/common/commonJS1.js"></script>
|
||||
<frameset framespacing="0" border="0" rows="*" frameborder="0">
|
||||
<frame name="main" src="about:blank" scrolling="auto" noresize>
|
||||
</frameset>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user