11
votes
5answers
4k views
How do I unload (reload) a Python module?
I have a long-running python server and would like to be able to upgrade a service without restarting the server. What's the best way do do this?
if foo.py has changed:
unimport foo <-- how …
3
votes
5answers
239 views
In Python, how do you change an instantiated object after a reload?
Let's say you have an object that was instantiated from a class inside a module.
Now, you reload that module.
The next thing you'd like to do is make that reload affect that class.
mymodule.py
---
…
3
votes
1answer
766 views
How to Reload a UITableView While I am Looking at It
When I have a UITableView as part of the visible view controller, how can I reload it so that the data I am looking at changes to the new data. Just calling reload doesn't seem to refresh the data …
3
votes
4answers
2k views
help: reloading a page via ajax - when window.location=self.location doesn’t work
so here on my homepage i got a
<ul id="login">
<li> <a id="loginswitch" href="./login-page">log-in</a> | </li>
<li> <a id="signupswitch" …
2
votes
2answers
162 views
How to force a page to reload if all what was changed in url is hash?
I am trying to reload current page with different url hash, but it doesn't work as expected.
(Clarification how I want it to work: Reload the page and then scroll to the new hash.)
Approach #1:
…
2
votes
7answers
161 views
best way redirect/reload pages in PHP
Hi,
Whats the best way to reload/redirect a page in PHP which completly removes all history/cache?
Which headers should I use?
The page today:
While clicking on a link, get-parameters is set and a …
2
votes
4answers
135 views
How to reload a crashed process on Windows
How to reload a crashed process on Windows? Of course, I can run a custom monitoring Win service process. But, for example, Firefox: it doesn't seem to install such a thing, but still it can restart …
2
votes
9answers
491 views
how do I get a process to reload itself in linux?
I have a service, say foo, written in C++, that runs as root. There is the usual scrip, /etc/init.d/foo start|stop|restart.
At certain times, foo needs to reload itself. Normally after an upgrade …
2
votes
4answers
2k views
How do I reload a page without a POSTDATA warning in Javascript?
I want to reload a page using:
window.location.reload(true);
But I receive the POSTDATA warning because the refresh function want to resend previous POST form data. How can I refresh my page …
1
vote
2answers
17 views
How To update contextMenu after it shows in flex
The thing is I load context menu items dynamically and it takes time to load, so context menu appears with default values the first time. But if you right-click again, yo see the loaded values.
Is …
1
vote
2answers
34 views
Change hash without reload in jquery
Hello,
I have the following code:-
$('ul.questions li a').click(function(event) {
$('.tab').hide();
$($(this).attr('href')).fadeIn('slow');
event.preventDefault();
window.location.hash = …
1
vote
0answers
27 views
Side effects of an Apache2 Reload event [closed]
I was wondering what effect external clients would see on a fairly busy site if the apache2 server was reconfigured and then an /etc/init.d/apache2 reload command was issued?
I know in theory current …
1
vote
3answers
87 views
javascript reload
Is it possible to use javascript:location.reload(true) as a action= for a form without having the browser say "In order to reload this page, information must be resent" or something similar to that? …
1
vote
2answers
53 views
ObjectContext.Refresh() ???
How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?
The method ObjectContext.Refresh requires as a parameter the entities to be …
1
vote
3answers
95 views
shift-reload in FF gives unexpected results
dear javascript mavins,
I'm presenting a simple animation using img.src replace and the <canvas> tag. At present it's only expected to work in FireFox (FF 3.5.3, Mac OS X 10.5.5), so …
