代码拉取完成,页面将自动刷新
同步操作将从 乌合之众/QFramer 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# -*- coding: utf-8 -*-
# /****************************************************************************
# **
# ** Copyright (C) 2014 dragondjf
# **
# ** QFramer is a frame based on Qt5.3, you will be more efficient with it.
# ** As an Qter,Qt give us a nice coding experience. With user interactive experience(UE)
# ** become more and more important in modern software, deveployers should consider business and UE.
# ** So, QFramer is born. QFramer's goal is to be a mature solution
# ** which you only need to be focus on your business but UE for all Qters.
# **
# ** Version : 0.2.2.0
# ** Author : dragondjf
# ** Website : https://github.com/dragondjf
# ** Project : https://github.com/dragondjf/QCFramer
# ** Blog : http://my.oschina.net/dragondjf/home/?ft=atme
# ** Wiki : https://github.com/dragondjf/QCFramer/wiki
# ** Lincence: LGPL V2
# ** QQ: 465398889
# ** Email: dragondjf@gmail.com, ding465398889@163.com, 465398889@qq.com
# **
# ****************************************************************************/
import os
import sys
import copy
def getCHppFiles(rootpath):
hfiles = []
cppfiles = []
for root, dirs, files in os.walk(rootpath) :
if '.git' not in root:
for f in files:
fpath = os.sep.join([root, f])
if f.endswith(".h"):
hfiles.append(fpath)
elif f.endswith(".cpp"):
cppfiles.append(fpath)
return hfiles, cppfiles
def getHeaderInfo(headerpath):
if os.path.exists(headerpath):
with open(headerpath, 'r') as f:
content = f.read()
return content
else:
return None
def main():
hfiles, cppfiles = getCHppFiles(os.getcwd())
headerInfo = getHeaderInfo(os.sep.join([os.getcwd(), 'header.info']))
for hf in hfiles + cppfiles:
with open(hf, 'r+') as fd:
hcontent = fd.read()
index = hcontent.rfind('*' * 76 + "/")
if index != -1:
index += 77
validContent = hcontent[index:].lstrip()
else:
validContent = hcontent
print validContent[:50]
content = headerInfo + "\n" + validContent
with open(hf, 'w') as fd:
fd.write(content)
print "update %s success" % hf
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。