I'm writing my blog system(django), and my blog files are VCSed by mercurial,
I want get files create/update time, how could I do this by using commandline or python?
edit: this is a example:
$ SOME_COMMAND
xxx.txt 2010-12-13-04:12:12 2010-12-14:04:12:12
xyx.txt 2010-12-13-04:12:12 2010-12-14:04:12:12
xxy.txt 2010-12-13-04:12:12 2010-...
I think it would be great to be able to see log/development.log and maybe log/test.log in the same way you see the output of a running task or tests in RubyMine. Is it possible?
...
from getpass import getpass
from textwrap import TextWrapper
import tweepy
import time
class StreamWatcherListener(tweepy.StreamListener):
status_wrapper = TextWrapper(width=60, initial_indent=' ', subsequent_indent=' ')
def on_status(self, status):
try:
print self.status_wrapper.fill(status.text)
...
I've included all jars the application requires, I'm trying to use Jetty Embedded
I have a simple java class with a main method that has the following setup, servlets still work correctly just can't get JSP's to work. All required jars are included, started with basic Jetty jars then added all from the jsp folder.
Server server = new ...