The modify tag has no wiki summary.
-1
votes
0answers
6 views
Allow users witha typical role to modify issues only during a part of workflow
I've got several status in my workflow : status1, status2, status3, status4. Between each of these status I have transitions. I would like to allow users (with a typical role) to edit some issues ...
0
votes
2answers
19 views
Matlab: Combine the legends of shaded error and solid line mean
I am using this FEX entry to plot the horizontal shaded error bars for a variable plotted on the X-axis. This variable is plotted in different regions/zones and, therefore, there are 3 shaded error ...
-1
votes
1answer
22 views
Modify content page when response HTTP/HTTPS C# [on hold]
I am using c#
I want to develop an application using c# to modify the content of HTML page from respone http/https (any page when response).
ex: Insert custom HTML <div>Hello!</div> into ...
1
vote
1answer
24 views
customize BeautifulSoup's prettify by tag
I was wondering if it would be possible to make it so that prettify did not create new lines on specific tags.
I would like to make it so that span and a tags do not split up, for example:
...
-2
votes
0answers
11 views
Simpledrive Hardrive - Permission Issue [on hold]
I have a problem with my hard drive. I have alot of extreamly important files on it. I had it hooked it to an xp computer and it was working just fine. Then all of the sudden My permissions got messed ...
-1
votes
1answer
45 views
How to modify this Powershell code so that hyperlinks will also work for HTML files in subdirectories?
The existing code scans IIS root and its sub-directories for .htm files and generates new .htm file with functioning hyperlinks to the .htm files in root directory only. Hyperlinks to the .htm files ...
0
votes
1answer
21 views
modify request URI in spring mvc
I have a spring mvc based application. I want to modify the request URI before it reaches controller. For example, RequestMapping for controller is "abc/xyz" but the request coming is "abc/1/xyz". I ...
0
votes
0answers
21 views
Magento - Change tax while adding to shopping cart
For 1 product i have multiple tax rates.
10% from the total price is 0% tax
20% from the total price is 6% tax
70% from the total price is 21% tax
I override the price update observer for adding ...
0
votes
0answers
19 views
Change application icon through command line (windows)
I'm looking for some command (if exists) that allows me to change the icon of an application by specifying the path to the app and the path for the new icon, something like
iconchange -a C:\Program ...
0
votes
2answers
36 views
Using While Loop instead of a For Loop in Java to ask User Input
I wrote this piece of code:
Scanner askPrice = new Scanner(System.in);
for(double i = 0 ; i < 3; i++);
{
double totalInitial = 0.00;
System.out.println("Enter the price for your item. "
+ "Press ...
0
votes
1answer
12 views
Modify a specific attribute via an Array containing references
How could I make the following more efficient?:
var varToChange = ['playerList',24,'hp',24];
//Sending that info to the client...
if(varToChange.length == 2){
window[varToChange[0]] = ...
0
votes
0answers
14 views
Cant modify frozen hash
I keep getting the above error everytime i try to run this code below. I am trying to delete information from a form. can you look at the "destroy" method?
class ArticlesController < ...
0
votes
0answers
12 views
need to rewrite .htaccess code so it works how I need it
I have some .htaccess code
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.pdf -f
RewriteRule ^(.*[^/]+)/?$ $1.pdf
ErrorDocument 404 ...
0
votes
1answer
41 views
replacing values in formated file with python
I have a string see attached file like that and i would like to modify it using a function
Giving section name parameter name and value to set
Also in case i want to modify several parameters for ...
0
votes
2answers
58 views
Adding date or time in datetime format to another datetime
WHAT I AM DOING
I want to find the difference between 2 datetime and add it to another datetime. I am only able to get the difference in Y-m-d H:i:s format.
CODE
$begin = new DateTime($start);
...