On windows tortoisehg, clicking "incoming" can't show the list of incoming changesets, only saying "incoming changesets found".
How to make the incoming changesets shown?
There is a Branch combo box that allows you to see only a specific branch. This combo box is at the top of your graph in TortoiseHg, if you enable the Graph Filter (CTRL-S).
In your case, it is quite probable that you already selected a specific branch. Having this combo box to anything else than Show All, will show you only the incoming changesets of the selected branch.
Thanks for reply. but the problem is Windows Tortoisehg doesn't recognize bundle() filter.
please see the screen shot:
Related
When you have a project open in PhpStorm and attempt to open a new project, it will ask you whether you want to open the project in the current window, whether you want a separate window or if you want to attach the project to the current window. If you choose to attach it, both the directory of the already opened project and that of the new project are listed in the tree view on the left side.
That's all well and good, but the issue is that in the "Version Control" tab, I only see the changelist of the "main" project. Is there a way to view the changelist of the other project as well?
With attached projects "Local Changes" tab shows files from default changelists combined. You can enable "Group by" Directory or Repository view to get a better overview:
In the Chrome UI, there's an avatar displayed next to the settings dots which when pressed allows the user to perform actions related to users of Chrome. They can add a user. If they go into 'other people' settings they can remove a previously added user. And the user can chose to sign in if they want to sync things like bookmarks across devices.
There's also a guest option, which allows a guest user to have their own temporary profile; this allows someone to use Chrome without messing up the other persons history, bookmarks or cookies. This guest account can be turned off by using the BrowserGuestModeEnabled Chrome policy.
How can I prevent the user from adding additional accounts (or removing any that are in place)? I thought maybe BrowserSignin would work, but it doesn't seem to be what I want.
I found it. BrowserAddPersonEnabled
Paste this:
REG ADD HKLM\SOFTWARE\Policies\Google\Chrome /v BrowserAddPersonEnabled /t REG_DWORD /d 0
in the command prompt (run it as an administrator).
Lets say I have two workspaces and the fist one is active.
If I change workspace ctrl+alt+→ twice, I change to workspace 2 then 1 again.
What I want is to disable that feature. When I am on workspace two, I want it to be blocked to it when moving to the right.
I know it is possible to do it on ubuntu but I did not manage to find the option on xubuntu.
If still needed: open xfce4-settings, go to 'Window Manager Tweaks', switch to 'Workspaces' tab and disable 'Wrap workspaces depending on actual desktop layout' and 'Wrap workspaces when the first or the last workspace is reached' options.
with this method you can work with only one workspace but it will do. Add xfce workspace applet to the panel right click it and add only 1 workspace there or go into xfce4 setting , workspace and add only 1 workspace and you are done
I have several accounts for a website and currently I want to write an extension that I can open all the accounts simultaneously in chrome, each tab for one account.
So that means I want each tab with a separate cookie system, is it doable? If so please suggest the API I should use, thanks!
Go to Chrome Preferences. There is a Users section where you can add users. Each new user will have its own cookie jar, so you can log in to a site as many different users at once. It makes new chrome windows, but it seems you cannot drag a tab onto a window of another user.
According to Chrome documentation, you can modify HTTP headers (including cookies) in the onBeforeSendHeaders event handler. So, you need to store new cookies for every account by means of the onHeadersReceived event handler, and then substitute them for every tab in outgoing requests.
There even exists an extension which seems doing almost the thing you want - Chrome Cookie Switcher.
Also I have found an answer that may be helpful for your task: Associate a custom user agent to a specific Google Chrome page/tab.
I really don't think Chrome allows extensions to do this. If I recall correctly, extensions can inspect and block requests, but they can't modify them, such as changing cookies on the fly for each tab.
I suggest you use the --user-data-dir command-line option of Chrome. It allows you to keep several separate profiles, each in its own directory, and then you only need to start chrome with the proper option:
# run this command to use the first profile
google-chrome --user-data-dir=/home/binchen/my_chrome_profiles/my_profile_1
# run this command to use the second profile
google-chrome --user-data-dir=/home/binchen/my_chrome_profiles/my_profile_2
...
Each profile will be in its own Chrome window, with its own cookie store, instead of its own tab, but it's easier than writing an extension.
Lastly, if the website you're mentioning is Google, you can keep several Google accounts open at the same time.
This is stupid that I can't figure out how to do this. I'm in the SQL Reporting Services Report Manager website. I have some reports in a folder. I want to copy those reports to a different folder so that I can point those reports to a different datasource. I still need the original reports in their original folder, pointing to their original datasource.
It's very easy to select reports via checkbox and use the Move functionality, but there doesn't appear to be a way to copy?
Any ideas.
There is no easy way to copy reports in report manager.
I wrote a tool to help me copy reports between servers, you can use the same to copy on the same server too.
http://code.google.com/p/reportsync/
I know this question is old but here is how I copy a report to another folder:
I open the original report in Report Builder and use 'save as'.
Only way I know is manually, one by one. This is in SQL2005.
Navigate to the location of the report(s)
Show details
Click the Edit icon next to the report
On the General tab under the "Report Definition" section, click "Edit"
This prompts a Save File dialogue box. Save the .rdl file somewhere.
Repeat ad nauseum...
Now you can import those reports you've just saved to your new location.
After I wrote this I saw this was the same answer as jimconstable above! Damn!
This is a little late, but just in case someone else stumbles upon this thread. I find the easiest way is to click the drop down arrow to the right of the report you would like to copy. Select "Edit in Report Builder". Once that's open just "Save As". Works like a charm.
Within the Browser, if you open the folder then use the drop down there is a Download option.
I compared the file sizes between download and save-as and found them different, so I prefer the download option.
I don't think these is a simple way to do this. You could pull them all out by going to each report->properties tab->edit. This will let you download the report. Then you can upload it again to another folder. But that sounds like a PITA.
You would be probably be best off the upload from the BIDS to a different folder.