release

jQuery启用禁用按钮防止重复提交、layer.confirm确定按钮锁定防止重复触发事件

走远了吗. 提交于 2020-02-04 15:54:48
< a class = " btn btn-warning " id = " releaseBtn " onclick = " ShipPlanManager.release() " > < i class = " fa fa-pencil " > </ i > 计划下发 </ a > /** * 计划下发 */ ShipPlanManager . release = function ( ) { if ( this . check ( ) ) { //禁用按钮 $ ( "#releaseBtn" ) . attr ( "disabled" , true ) ; $ ( "#releaseBtn" ) . removeAttr ( "onclick" ) ; var data = $ ( '#' + this . id ) . bootstrapTable ( 'getSelections' ) ; var ids = "" ; for ( var i = 0 ; i < data . length ; i ++ ) { ids = ids + data [ i ] . id + "," ; } ids = ids . substring ( 0 , ids . length - 1 ) ; var lock = false ; //默认未锁定 parent . layer .

Oracle EBS OPM release step

帅比萌擦擦* 提交于 2020-01-25 10:13:27
--release_step生产批 --created by jenrry SET serveroutput on DECLARE x_return_status VARCHAR2 (1); l_exception_material_tbl gme_common_pvt.exceptions_tab; l_batch_step_rec gme_batch_steps%ROWTYPE; l_in_batch_step_rec gme_batch_steps%ROWTYPE; l_org_code VARCHAR2 (3); l_batch_no VARCHAR2 (32); l_ignore_exception VARCHAR2 (1); l_val_ff VARCHAR2 (1); x_message_count NUMBER; x_message_list VARCHAR2 (2000); l_user_name VARCHAR2 (80); l_user_id NUMBER; CURSOR get_user_id (v_user_name IN VARCHAR2) IS SELECT user_id FROM fnd_user WHERE user_name = v_user_name; PROCEDURE display_messages (p_msg_count IN

How to use markdown for description from a file in gitlab CI using release API

江枫思渺然 提交于 2020-01-25 06:45:08
问题 I'm using the Gitlab release API in the gitlab-ci.yml to be able to automatically create a new release when deploying. Simply putting a curl request like here in the docs works just fine. For the description, the docs state that markdown is allowed, which is great. However, I can't seem to figure out or come up with an idea to load a description from a markdown file within the curl request. I've already tried storing the content of the markdown file in a variable in the gitlab-ci.yml prior to

Easy way to compile, sign, zipalign APK for Android Play Store (Also SHA1 Key Viewer)

最后都变了- 提交于 2020-01-23 13:58:08
问题 How do you easily compile and deploy your APK packages to the Google Play Store? i have been searching around for the easiest way i could find for my setup and ended up doing the following below? Would you suggest a better way for this? "Can you sign and zip align your APK file from within Android Studio using a GUI, not by using the terminal?" Two Batch Files to assist with your deployment process The following batch file i created to speed up the testing of my APK files across various

iOS SDK Release Notes for iOS 9 iOS9 SDK 版本更新说明

与世无争的帅哥 提交于 2020-01-18 06:38:39
Important: This is a preliminary document for an API or technology in development. Apple is supplying this information to help you plan for the adoption of the technologies and programming interfaces described herein for use on Apple-branded products. This information is subject to change, and software implemented according to this document should be tested with final operating system software and final documentation. Newer versions of this document may be provided with future betas of the API or technology. Contents: Introduction Bug Reporting Notes and Known Issues Introduction iOS SDK 9.0

Mongodb Cxx Driver Test crashing in Release Build [ Works fine in Debug ]

对着背影说爱祢 提交于 2020-01-17 07:25:11
问题 I have build the mongodb cxx binaries in windows following the steps described here. I have created the Test application as mentioned in the steps. On release builds , the application throws bad allocation exception: std::bad_alloc at memory location 0x0047EB60 ] in this line : mongocxx::uri muri{ uri_string }; The same code works with Debug build. Could someone please help me to fix the issue in Release build ? 回答1: My issue got resolved after I built mongocxx and bsoncxx in Release and used

Nil optional does not crash in Release

故事扮演 提交于 2020-01-16 18:00:11
问题 I have the following simple code in NSAppDelegate func applicationDidFinishLaunching(aNotification: NSNotification) { var opt:Int? NSLog("\(opt)") NSLog("\(opt!)") NSLog("done") } Now when I run that in debug mode it tells me what we all know about unwrapping nil optional. But when I run that for release it silently exits the app with no message at all. No console log. No dump. Nothing! What's going on here? 回答1: Apple has asked me to check if the bug has been fixed with Xcode 6.3 beta 3 with

Local images are not visible in React-Native app release build

微笑、不失礼 提交于 2020-01-14 13:48:10
问题 In my react-native app I have "src" folder that includes a Images folder and screens folder.My screens folder have various components where I am uing local images from Images using following code. <Image source={require('src/Images/logo.png')} /> logo.png is an image placed in Images folder, there are many more such images referenced like this.Now all these images are shown pretty well in development mode but when I generated the release apk using gradlew assemblereleaseand installed the apk

How do other development teams approach version numbers?

帅比萌擦擦* 提交于 2020-01-14 09:55:30
问题 Our application is quite mature, and thus we are up to version 16. However, this can give the impression that the software is old and out of touch (how many commercial applications are there with a version 20+??) Obviously, version numbers are quite arbitrary - what do other people use? I quite like the Ubuntu approach of month.date, but I'd like to see what other strategies people use. 回答1: We tend to go with something like 1.20.5, where the 20 is, in your case, the fairly high 'release'

Why is python 3.6.1. not available in pyenv?

二次信任 提交于 2020-01-13 08:57:13
问题 According to python.org, Python 3.6.1 was released at the end of March. But: » pyenv install -l | grep 3\.6\. 3.6.0a1 3.6.0a3 3.6-dev Why is Python 3.6.1 not yet available in pyenv ? Where can I find documentation about the releases that pyenv supports? (when it was added, what is in progress, ...). The pyenv documentation does not give this information. Is there a repository for Python releases supported by pyenv ? (similar to PyPi ) 回答1: If you installed pyenv via pyenv installer: pyenv