greetings. I am working with a DateTime, and using |date to output it. I set a format that includes "Z" (timezone). I get an offset in seconds when I expect "EST" or similar.
If I have <div id='javascript'><script>somejavascript();</script></div> and then an AJAX action is performed and ('#javascript').html('<script>somenewjavascript();</script>') is executed, will somenewjavascript(); take affect?
dodobrain has quit
or is javascript only processed on page load and on a javascript call?
I want to be able to replace some onclick javascript with other onclick javascript that is called from the initial onclick javascript using AJAX, is this possible without a page reload?
jackhum joined the channel
kevin-brown has quit
hutch34_ joined the channel
kevin-brown joined the channel
joyceg has quit
schinckel
blackcross: I've had issues where I needed to wrap the script inside another element to get jQuery to execute it when I put it in the page.
dudepare joined the channel
mekhami
you know what i never thought of
and this seems obvious in hindsight
drodger has quit
but there's totally a use case for web applications that don't need the internet
john2x joined the channel
take your average GUI application that just manages an internal database and that could be a browser-based application instead
for some reason i always thought web apps have to be deployed to web servers and accessible via the www
schinckel
There's a blogging engine that uses a django application installed locally, and then you publish to a web server when you need to (static files)
FunkyBob
schinckel: that reminds me... need someone to write a blog index page generator for graaf :)
schinckel
hahaha
FunkyBob
I'll read that as "oh, if only I had the free time!"
schinckel
Indeed.
drodger joined the channel
steam_bell joined the channel
Troy^ has quit
detseg has quit
sssolid has quit
steam_bell
I've been attempting to run Django on a remote vm. A guide says to: Check the permissions for the Django installation files and confirm they're accessible by the user that owns Apache. Could someone explain this please?
Biwaa joined the channel
gadams has quit
jwhitmore joined the channel
nethop has quit
sssolid joined the channel
FunkyBob
steam_bell: well, if you're using Apache/mod_wsgi ... the user it runs as needs to be able to read the source code for your django project
Nizumzen has quit
steam_bell
I am using both of those. There are only two relevant users: root and user correct?