Versions 能svn回退版本本吗

5470人阅读
VersionsCracked 软件
一、安装Mac OS& Versions
1、解压安装包,文件夹下会有个软件图标,该软件不需要安装,直接打开即可。
二、配置SVN连接
1、打开Versions,点击 Repository 按钮,会弹出输入框,输入对应的SVN服务器信息
2、Location 中输入的信息是http://10.0.246.113:8015/svn/WSE.Mobile.iPhone/trunk/ &&,账号和密码输入完之后,点击Create ,创建一个SVN连接。
二、获取SVN服务器上的代码
1、选中左边列表中刚添加的WISE1,在右面会显示出对应的SVN文件夹列表,选中Trunk目录,右键选择Check Out选项,系统会弹出Check Out路径的地址选择框,选择对应的文件存储路径,点击Check Out按钮,本地文件夹会下载SVN服务器上的代码文件。
2、获取和提交代码:在左上角有两个按钮 Update 和Commit 按钮,用来更新本地代码和提交本地代码。
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:125123次
积分:1096
积分:1096
排名:第18987名
转载:17篇
(1)(3)(4)(1)(12)(3)当前位置:&&
本页文章导读:
&&&&?jQuery Mobile札记一 &&&&&& jQuery Mobile笔记一
1、模板结构
1.1 jQuery Mobile单页模板
&!DOCTYPE html&
&meta charset="utf-8"&
&title&Page Template&/title&
&meta name="viewport" content="width=device......&&&&? Versions比对版本功能 FileMerge 无法找到的解决方法 &&&&&& Versions比对版本功能 FileMerge 无法找到的解决办法
猴子原创,欢迎转载。转载请注明: 转载自Cocos2D开发网--,谢谢!
原文地址: /?p=287
今天用Versions的对比功能......&&&&? Qt creator 不同类 其间参数的传递&&&&&& Qt creator 不同类 之间参数的传递方法一:使用extern 传递参数args
三个文件 a.h
1、在a.cpp 中定义参数
2、在a.h 中继承参数
3、在b.cpp 中添加#include "a.h"
&&&&&&最新IT科技资讯推荐:
[1]jQuery Mobile札记一
&&&&来源:&互联网& 发布时间:&
jQuery Mobile笔记一
1、模板结构
1.1 jQuery Mobile单页模板
&!DOCTYPE html&
&meta charset="utf-8"&
&title&Page Template&/title&
&meta name="viewport" content="width=device-width, initial-scale=1"& //user-scalable=no 禁用缩放
&link rel="stylesheet" href="/mobile/1.0/jquery.mobile-1.0.min.css" /&
&script src="/jquery-1.6.4.min.js"&&/script&
&!--&script src="custom-srcipt-js"&&/script&--&
//自定义脚本位置
&script src="/mobile/1.0/jquery.mobile-1.0.min.js"&&/script&
&div data-role="page"&
&div data-role="header"&
&h1&Page Header&/h1&
&div data-role="content"&
&p&你好&/p&
//注意:html文件的编码格式要为utf-8,否则有中文会乱码
&div data-role="footer" data-position="fixed"& //默认页脚在内容之后,添加此句后定位到屏幕底部
&h4&Page Footer&/h4&
&script type="text/javascript"&
/*Page specific scripts here*/
1.2 多页模板
&!DOCTYPE html&
&meta charset="utf-8"&
&title&Multi Page Example&/title&
&meta name="viewport" content="width=device-width, initial-scale=1"&
&link rel="stylesheet" href="/mobile/1.0/jquery.mobile-1.0.min.css" /&
&script src="/jquery-1.6.4.min.js"&&/script&
&script type="text/javascript"&/* Shared scripts for all internal and ajax-loaded pages */&/script&
&script src="/mobile/1.0/jquery.mobile-1.0.min.js"&&/script&
&!-- First Page --&
&div data-role="page" id="home" data-title="Welcome"&
&div data-role="header"&
&h1&Multi-Page&/h1&
&div data-role="content"&
&a href="#contact-info" data-role="button"&Contact Us&/a&
&script type="text/javascript"&
//多页面文档内部javascript
/* Page specific scripts here. */
&!-- Second Page --&
&div data-role="page" id="contact-info" data-title="Contacts"&
&div data-role="header"&
&h1&Contact Us&/h1&
&div data-role="content"&
Contact information...
(1)每个页面必须包含唯一id
(2)最初显示多个页面时,只有第一个页面得到增强并显示
(3)链接到一个内部页面时,必须通过页面id来引用,href="#contact",载入页面的地址multi-page.html#contact
(4)多页面文档内部的javascript不能被其他页面访问
(5)父文档head标签内声明的所有脚本,都可以被内部页面和通过Ajax载入的页面访问
2、页面切换和过度
2.1 切换分类
(1)一个多页文档中,一个内部页到另一内部页(Ajax导航)
根据#id &a href="#next"&
(2)同一个域范围内,一个单页文档切换到另一单页文档(Ajax导航)
&a href="otherDocument.html"&Go to next page&/a&
(3)当连接到一个多页面文档时,必须为其链接添加rel="external"(HTTP)
&a href="multi-page.html" rel="external"&Home&/a&
(4)外部绝对地址,连接到另一个域(HTTP)
&a href="" data-rel="external"&&/a&
&a href="" target="_blank"&&/a&
(5)打开dailog
&a href="confirmtion.html" data-rel="dialog"&Open Dialog&/a&
&a href="confirmtion.html" data-role="dialog"&Open Dialog&/a&
(6)返回到上一页面
&a href="back.html" data-direction="reverse"&Back&/a&
(7)移动应用特殊链接,URI
&a href="tel:+"&Call us free!&/a&
Video and VoIP Calls
&a href="facetime:101010"&Call me using Facetime&/a&
&a href="skype:skype_user?call"&Call us using Skype&/a&
&a href="mailto:"&Mail us&/a&
&a href="mailto:?subject=Contact%20from%20mobile"&Mail us&/a&
&a href="mailto:?subject=Contact&body=This%20is%20the%20body"&Mail us&/a&
2.2 页面间过度
&a href="otherDocument.html" data-transition="slide"&Go to next page&/a&
The default right-to-left animation.
Bottom-to-top animation, mostly used for modal pages.
Top-to-bottom animation.
The new page will grow from a small point in the middle to a full-screen page.
A cross-fade animation between old and new pages.
A 2D or 3D rotation animation. 3D is available only on some devices, such as iOS
devices. On other devices, such as those that are Android-based, this transition
renders a 2D rotation that may not be the effect you really want.
3、toolbar 工具条——使用页眉或页脚
3.1位置模式
(1)默认模式(Default:Inline mode)
当页面content内容超过一屏时,滚动页面时,页眉和页脚将隐藏。
&div data-role="header"&
&h1&Default&/h1&
(2)固定模式(Fixed)
&div data-role="header"
data-position="fixed"&
&h1&Fixed&/h1&
&div data-role="footer"
data-position="fixed"&
页眉和页脚位于顶部和底部,位置不变,否则当内容较少是,页脚紧随内容之后显示
(3)全屏模式(FullScreen)适用于浏览图片,电子书应用
&div data-role="page"
data-fullscreen="true"&
&div data-role="header"
data-position="fixed"&
&h1&Fixed&/h1&
&div data-role="footer"
data-position="fixed"&
页眉和页脚基于响应来出现和消失
3.2 添加按钮(通用于页眉和页脚)
(1)只带有文本按钮
&a href="#"&Done&/a&
(2)只带有图标的按钮
&a href="#" data-icon="plus" data-iconpos="notext"&&/a&
(3)既有文本又有图标的按钮
&a href="#" data-icon="plus" &Done&/a&
(1)修改按钮位置,默认左侧对齐(),可修改到右侧对齐
&a href="#" data-icon="plus" &Done&/a&
(2)添加回退按钮
a)在页面容器添加data-auto-back-btn="true",为某个特定页面添加回退按钮
&div data-role="page" data-auto-back-btn="true" data-back-btn-text="Pervious" data-back-btn-theme="e"&
b)在绑定mobileinit选项时,全局启动回退按钮
$(document).bind('mobileinit',function(){
$.mobile.page.prototype.option.addBackBtn=
$.mobile.page.prototype.option.backBtnText="Previous";
//回退按钮显示的文字
$.mobile.page.prototype.option.backBtnTheme="b";
如果在全局启用了回退按钮,可通过在页面页眉中添加data-auto-back-btn="false"禁用特定页面回退按钮
c)回退链接
&a href="home.html" data-rel="back" data-role="button"& Go Back&/a&
(1)添加永久导航条
&div data-role="footer" data-id="main" data-position="fixed" data-theme="b"& //创建永久导航条,避免页面转换期间闪烁,需要唯一data-id="main"
&div data-role="navbar"& //标记为导航条
&li&&a href="#" data-icon="star" &天气&/a&&/li&
//ui-btn-active默认选中项,ui-state-persist保持固定
&li&&a href="#" data-icon="info" &趋势&/a&&/li&
//ui-btn-active默认未选中项
&li&&a href="setup.html" data-icon="gear" &城市&/a&&/li&
&li&&a href="#exit" data-icon="delete" data-rel="dialog" data-transition="pop" &退出&/a&&/li&
(2)带自定义图标导航条
&!-- tab bar with custom icons --&
&div data-role="footer"
data-position="fixed"&
&div data-role="navbar" &
&li&&a href="#" id="home" data-icon="custom"&Home&/a&&/li&
&li&&a href="#" id="movies" data-icon="custom" &Movies&/a&&/li&
&li&&a href="#" id="theatres" data-icon="custom"&Theatres&/a&&/li&
.ui-navbar-custom .ui-btn .ui-btn-inner { font-size: 11px! padding-top: 24px! padding-bottom: 0px! }
.ui-navbar-custom .ui-btn .ui-icon { width: 30px! height: 20px! margin-left: -15px! box-shadow: none! -moz-box-shadow: none! -webkit-box-shadow: none! -webkit-border-radius: none ! border-radius: none ! }
#home .ui-icon { background:
url(../images/53-house-w.png) 50% 50% no- background-size: 22px 20 }
#movies .ui-icon { background:
url(../images/107-widescreen-w.png) 50% 50% no- background-size: 25px 17 }
#theatres .ui-icon { background:
url(../images/15-tags-w.png) 50% 50% no- background-size: 20px 20 }
4、Main roles available in jQuery Mobile 1.0
data-role =""
Description
controlgroup
collapsible
collapsible-set
fieldcontain
Defines a page, the unit that jQuery Mobile uses to show content
Header of a page
Content of a page
Footer of a page
Defines a navigation bar, typically inside a header
Renders a visual button
Renders a component
Collapsible panel of content inside a page
Group of collapsible panels (accordion)
Container for form fields
Content of multiple items as a list
Dialog page
Visual slider for Boolean values
Element that will be hidden on jQuery Mobile’s compatible browsers
5、主题(data-theme)
Description
Color in the default theme
Highest level of visual priority (default on toolbars)
Secondary level of visual priority
Baseline level (default swatch for most situations)
Alternate secondary level
[2] Versions比对版本功能 FileMerge 无法找到的解决方法
&&&&来源:&互联网& 发布时间:&
Versions比对版本功能 FileMerge 无法找到的解决办法
猴子原创,欢迎转载。转载请注明: 转载自Cocos2D开发网--,谢谢!
原文地址: /?p=287
今天用Versions的对比功能查看修改了什么的时候,提示"The FileMerge application could not be located.Please install Xcode Tools from the Apple Developer website."
我查看Xcode的tool中,可以看到FileMerge,出现这个的原因,一般是直接首次安装xcode4.3.3,系统没有设置xcode路径的原因。从老版本 升级到4.3.3的不会出现该问题。
解决办法:
打开终端.输入"sudo xcode-select -switch /Applications/Xcode.app"
我的Xcode是在应用程序中,如果你的不是的话,将/Applications/Xcode.app替换为自己的xcode路径就可以了。
(xcode直接拖到终端的话,可以自动补全路径的哦)。
[3] Qt creator 不同类 其间参数的传递
&&&&来源:&互联网& 发布时间:&
Qt creator 不同类 之间参数的传递方法一:使用extern 传递参数args
三个文件 a.h
1、在a.cpp 中定义参数
2、在a.h 中继承参数
3、在b.cpp 中添加#include "a.h"
然后你就能使用args 这个参数了,这个办法项目qt 中的Signal 和 Slot 来说的有点,就是他不需要你实时触发,只需要你最后监听args 的值,然后产生相应的动作就行。
情况2, 在主界面上要弹出一个 需要一个密码 登录验证的界面。
比如 触发LineEdit 就弹出一个键盘,这种情况。
需要改写LineEdit 类。比较复杂,之后我再写。
最新技术文章:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!
(C)2012-,站长邮箱:www_169it_(请将#改为@)版本控制培训v01_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
文档贡献者
评价文档:
&&¥2.00
&&¥2.00
&&¥2.00
&&¥2.00
&&¥2.00
喜欢此文档的还喜欢
版本控制培训v01
把文档贴到Blog、BBS或个人站等:
普通尺寸(450*500pix)
较大尺寸(630*500pix)
大小:662.00KB
登录百度文库,专享文档复制特权,财富值每天免费拿!
你可能喜欢

我要回帖

更多关于 svn回退版本命令 的文章

 

随机推荐