By default, when you apply changes to a Bugzilla entry, the web interface advances to the next bug in your list.
I would like to disable this feature since it is almost never what I desire, planning to make further updates later. Further, I often update the wrong bug subsequently due to its changing the current bug without my noticing.
How do I configure Bugzilla to not advance like this?
Go to the "Preferences" link on the home page, and look for "After changing a bug". Regardless of the site default, you can set your personal preference to "show next bug in my list," "show the updated bug," or "do nothing."
That's the way to do it on bugzilla.mozilla.org, which is at Bugzilla 3.4.6. Depending on what version you're using, the exact link and wording may be a little bit different. But it's the same general idea.
If you are an admin you can set the site default on the "Default Preferences" page.
"After changing a ticket" - do nothing, show the next ticket or show the updated ticket.
Related
I am very new to Zabbix and am having to navigate it for some work. I want to change when I get notified about low disk space. I have done some research and found a potential expression:
{hostname.vfs.fs.size[h;pfree].last(0)}<5.
However, I have no configuration tab in the top left corner to implement this. I cannot seem to find a place to actually push this expression into.
I have Googled the problem but have not come across a missing configuration or solution in the results :(
I am sure I am navigating it incorrectly or am doing something silly. Any advice would be greatly appreciated.
Zabbix is version 3.2
If you do not have the top "Configuration" menu, it indicates that you do not have sufficient permissions to change the trigger expression.
If you installed this instance of Zabbix, log in as the default "Admin" user. If somebody else installed it, contact that person to obtain the needed permissions or make the configuration changes.
I have recently upgraded to PhpStorm 2016.2 on MacOS X and sadly quite a few things have got worse.
Previously (v10.x) if I selected some text, then double-tap shift, when the search-everywhere dialogue pops up it had the selected text pre-filled and it would be already searching. This was a super-quick way to find stuff, as it was almost always the first option that was correct.
Now you have to select, copy, double-shift, paste, enter - which is several times more work. For such a frequent task I can already feel the RSI building.
I have looked in the preferences, but cannot see anything relevant.
I've also searched their help but it doesn't mention this feature.
Why has PhpStorm 2016.2 stopped pre-filling “Search Everywhere” from selected text
Because users were asking for this: https://youtrack.jetbrains.com/issue/IDEA-147128
I have looked in the preferences, but cannot see anything relevant.
AFAIK there is no such setting.
https://youtrack.jetbrains.com/issue/IDEA-157100 -- watch this ticket (star/vote/comment) to get notified on any progress.
I suggest to (at very least) vote for this ticket .. and maybe even ask your friends (who use this IDE and miss such feature) to do the same. More votes -- higher the chance of implementing it.
I am using PHPStorm 9.
I have installed PHPCS to sniff my code. It is properly configured, up and running.
I am working on a very old project, which was implemented in plain PHP, and not using any code standard.
As a result, every time I open any of those files, I get a message at the top of the screen saying that I have too many errors (code style errors).
I have a couple of problems with that.
First, I already know how bad the code is, so I don't need PHP Storm to tell me that all the time.
Second. That message appears and disappears every time I edit the code. As a result, the window editor is constantly moving up and down, which I find specially annoying.
Also, at the top of the screen it is showing me the breadcrumbs, to tell me where I am. I appreciate the help, but I don't actually need it.
So the question is, how can I configure the IDE to disable those two messages? (read arrow and orange arrow in the attached image).
Please notice that I don't want to disable PHPCS. I only want to turn off those annoying messages.
I was unable to find it out by myself because I don't even know how those messages are called. Certainly not 'popups', nor 'status bar'
Best regards
Nicolas
Answering my own questions, thanks to the help of the PHPStorm Support team, Vladimir Luchansky (perhaps you need to create an account to see the thread):
To disable breadcrumbs: Go to File->Settings->Editor->General->Appearance, and untick the option Show HTML Breadcrumbs. Then restart the IDE
To disable the PHPCS messages without disabling PHPCS itself: Well, that option is not available in PHPStorm 9. It will be available for a future release. According to Vladimir, a developer is working on it. In order to make this request to go up in the future request list, the request needs to get as much 'votes' as possible. So, if you are interested in this feature to be ready ASAP, please vote up here.
Best,
Nicolas
I don't believe there's any mechanism for suppressing those phpcs: Too many messages per file alerts. As an alternative solution, you could give this work-around a try:
Clone your current inspection profile via Preferences > Editor > Inspections. Name the new one "Strict (with phpcs)". Then, choose your old inspection profile from the Profile: dropdown box (thus, reverting your project's default inspection profile to your old one). Rename it to "Weak (without phpcs)" and disable phpcs for that particular profile by unchecking the PHP > PHP Code Sniffer validation option.
From this point forward, phpcs inspections (and related alerts, like the one you're concerned about) won't come into play as you're editing your files. However, whenever you do want to inspect one of your files using PHP Code Sniffer, you can do so easily via Code > Inspect Code > Inspection Profile > Strict (with phpcs)
Hope this helps!
I have accidentally added personal information during the creation of a bug ticket on google code
https://code.google.com/p/chromium/issues/list
I would like to know how to delete this ticket, as I cannot see any delete or remove option.
you can flag your issue, if you dont see option login from another account and tell your friends to flag it as well and it might get deleted or nobody will pay it enough attention
What ways are used to show a user help the first time they use a page - to showcase certain features they might not realize are there.
For instance, say a search form is introduced that has a hidden "advanced search" option:
I would think most people would see the chevron and click it, but..you never know. I know that I could add a cookie to say "Hey - this user has seen it" or create a table in the database.
The problem I see with adding a cookie, is if the user deletes cookies and logs back in - they will have to always dismiss the alert/error/whatever. Unless after a period of time, I go in and manually delete it (which then new users wouldn't see the alert.)
Alternatively, adding a table to the database seems too much for such a simple task. It's what I'm leaning towards, but I hate it...there has to be a better way.
Are there any other ways to show a one time alert for certain pages?
Edit - I used a pretty trivial example on purpose.
I guess both your options are right. The cookie option is bit better cause it will be lighter on the server, again in case you have many users then the database options will be not great.
You may also lookup the new HTML5 feature of storing data on client side. Its a better local storage method.
It goes like localStorage.uid="1234" or something like clickcount.. Refer the html5 docs its a great feature as well.
Heres the link..
http://www.w3schools.com/html/html5_webstorage.asp
have fun..