Questions tagged [manual]

a technical communication document intended to give assistance to people using a particular system

A user guide or user's guide, also commonly known as a manual, is a technical communication document intended to give assistance to people using a particular system.

Wikipedia article

400 questions
1
vote
1 answer

fancybox manual call to a specific target

I implemented the manual-script from fancybox: $("#manual2").click(function() { $.fancybox([ 'http://farm5.static.flickr.com/4044/4286199901_33844563eb.jpg', 'http://farm3.static.flickr.com/2687/4220681515_cc4f42d6b9.jpg', …
1
vote
1 answer

Why is my TeamCity Admin user no longer an Admin user after I switch over to NTLM authentication?

Just installed teamcity 6.5.6 after uninstalling 6.5.4 after trying to implement a svn 1.7 plugin that seemed to have buggered up my TC configurations. Trying to revert back to working times so I did a fresh install of the latest release. I created…
topwik
  • 3,487
  • 8
  • 41
  • 65
1
vote
1 answer

Manual addressing with secure customBinding on WCF service

I'm developing a web service for a WSDL defined externally. Access is done with HTTP/S (server and client certificates) and both the request and response are signed with the respective certificate. I have imported the WSDL in VS2010 with a service…
1
vote
3 answers

Is There any MySQL manual in *.chm format??

According to Mysql documentation http://dev.mysql.com/doc/ there is no official mysql manual in CHM format, but there are other formats including HTML Single page and HTML Page/chapter that can be compiled into CHM. I want to know if there are any…
pouya
  • 3,400
  • 6
  • 38
  • 53
1
vote
2 answers

Reference manual for python?

Is there a recommended reference manual for python that's better than the official docs? I'm an experienced programmer (PHP, C#, javascript, and some C most recently), and I find the python manual pretty lacking compared the PHP manual and MSDN. In…
davidtbernal
  • 13,434
  • 9
  • 44
  • 60
1
vote
1 answer

adding a simple legend that includes a chosen text using ggplot

let's say I have this simple df with its plot as follows : df = data.frame(a = c('person1','person2','person3'), b = c(10,20,30)) ggplot(df)+aes(x=a,y=b,fill=b)+ geom_bar(stat='identity') the outcome I wish that the legend is…
Anas116
  • 797
  • 2
  • 9
1
vote
1 answer

What do the square brackets and numbers mean in Lua's documentation?

What does the [x, y, z] section mean in the Lua docs? You see it on every C function. For example, lua_gettop says: int lua_gettop (lua_State *L); [-0, +0, –] Returns the index of the top element in the stack. Because indices start at 1, this…
idbrii
  • 10,975
  • 5
  • 66
  • 107
1
vote
1 answer

Manual quality switching in Flowplayer

I've been looking through Flowplayer's docs to find a way to switch between 3 different quality modes, manually. I am able to find in the docs that Flowplayer supports manual switching of multiple quality streams, but the docs offer no other…
Brett T
  • 81
  • 1
  • 6
1
vote
0 answers

Run GitLab job when all previous jobs passed or otherwise be able to run it manually

I have a pipeline consisting of build, test1, test2, deploy. I want the deploy to be run always when test1 and test2 stages are successful but, in case some of them fails (can be both) I want to be able to run manually the deploy stage anyway. I…
1
vote
0 answers

Autostart of gitlab jobs at a certain commit and manual start in other cases

How in gitlab to make the job run automatically if there is a commit with sending a message, and so that the same job is run manually in all other cases? I try: rules: - if: '$CI_COMMIT_MESSAGE == "Autostart job."' when: always - when:…
RMNTRVN
  • 63
  • 1
  • 5
1
vote
2 answers

GitLab manual job on_failure and automatically on_success

I can't find a satisfying solution for my case. I want to start a job manually only when a certain previous job has failed. The job in question dose a validation. I want to make the next job manual so that the user acknowledges that something wasn't…
Flavius
  • 67
  • 1
  • 9
1
vote
1 answer

Gradle still downloads dependencies already available in local repo

I have set gradle up to use a local maven repository (gmaven_stable file) using the "offline.gradle" file method in the ".gradle\init.d" directory. I constantly update the local maven repo with already downloaded files in the gradle dependency cache…
1
vote
0 answers

CodenameOne WebRTC CN1LIB Serverless, Manual Signaling

I am trying to breakdown the process of the webrtc signaling using the PeerConnectionStates Demo by copying the signaling strings manually like as in here Youtube:https://www.youtube.com/watch?v=YLPRBYTeoF4&t=1594s . Github:…
Chief O
  • 43
  • 5
1
vote
1 answer

Meaning of "Lua does not perform the primitive assignment." in 2.4 (concerning __newindex)

from https://www.lua.org/manual/5.3/manual.html see section 2.4. Concerning the metamethod operation __newindex states the following quote: __newindex: The indexing assignment table[key] = value. Like the index event, this event happens when table…
Grey
  • 13
  • 2
1
vote
1 answer

Missing clarification in the OCaml manual about unboxed/boxed

The OCaml manual states: As another optimization, unboxable record types are represented specially; unboxable record types are the immutable record types that have only one…
Olle Härstedt
  • 3,799
  • 1
  • 24
  • 57