Hi all, Can somebody tell me where the details of all the users(created by admin) are stored in log? Can the admin get the details of the login time, logout time, the data uploaded by specific users etc ? Basically the history of the upload done by user.. -- Regards Smitha V MT2009149 IIITB
You can get some of this in the django admin. Http://<geonode server>:<port>/admin/ Jeff On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > Hi all, > > Can somebody tell me where the details of all the users(created by admin) are stored in log? Can the admin get the details of the login time, logout time, the data uploaded by specific users etc ? Basically the history of the upload done by user.. > > -- > Regards > Smitha V > MT2009149 > IIITB >
Yeah, saw that. But isn't all that stored somewhere at the back end? On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org> wrote: > You can get some of this in the django admin. Http://<geonode > server>:<port>/admin/ > > Jeff > > On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > > > Hi all, > > > > Can somebody tell me where the details of all the users(created by admin) > are stored in log? Can the admin get the details of the login time, logout > time, the data uploaded by specific users etc ? Basically the history of > the upload done by user.. > > > > -- > > Regards > > Smitha V > > MT2009149 > > IIITB > > > -- Regards Smitha V MT2009149 IIITB
Yes, it would be in the database. If you left the default settings alone, it will be in the development.db which is a sqlite3 file. You can inspect it with the sqlite3 command line tool. There are also various graphical tools to do the same. If you changed the database back end to to another database, it will be available with the tools for that database (postgres, mysql etc) Jeff On 2011-01-28 at 13:17:14, Smitha V wrote: > Yeah, saw that. But isn't all that stored somewhere at the back end? > > On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org> wrote: > > > You can get some of this in the django admin. Http://<geonode > > server>:<port>/admin/ > > > > Jeff > > > > On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > > > > > Hi all, > > > > > > Can somebody tell me where the details of all the users(created by admin) are stored in log? Can the admin get the details of the login time, logout time, the data uploaded by specific users etc ? Basically the history of the upload done by user.. > > > > > > -- > > > Regards > > > Smitha V > > > MT2009149 > > > IIITB > > > > > > > > > > > > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > >
The database only gives the schema and the SQL statements. I want the details like which user entered what data at what time? Can i get this data? or its just what i get from Django admin account? On Fri, Jan 28, 2011 at 12:01 PM, Jeffrey Johnson <jjohnson@opengeo.org>wrote: > Yes, it would be in the database. If you left the default settings alone, > it will be in the development.db which is a sqlite3 file. You can inspect it > with the sqlite3 command line tool. There are also various graphical tools > to do the same. If you changed the database back end to to another database, > it will be available with the tools for that database (postgres, mysql etc) > > Jeff > > On 2011-01-28 at 13:17:14, Smitha V wrote: > > Yeah, saw that. But isn't all that stored somewhere at the back end? > > On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org>wrote: > > You can get some of this in the django admin. Http://<geonode > server>:<port>/admin/ > > Jeff > > On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > > > Hi all, > > > > Can somebody tell me where the details of all the users(created by admin) > are stored in log? Can the admin get the details of the login time, logout > time, the data uploaded by specific users etc ? Basically the history of > the upload done by user.. > > > > -- > > Regards > > Smitha V > > MT2009149 > > IIITB > > > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > -- Regards Smitha V MT2009149 IIITB
Then can't we keep track of what the users do? like uploading of files, downloading of files, creation of maps? On Fri, Jan 28, 2011 at 12:29 PM, Smitha V <smitha.v@iiitb.net> wrote: > The database only gives the schema and the SQL statements. I want the > details like which user entered what data at what time? Can i get this data? > or its just what i get from Django admin account? > > > On Fri, Jan 28, 2011 at 12:01 PM, Jeffrey Johnson <jjohnson@opengeo.org>wrote: > >> Yes, it would be in the database. If you left the default settings >> alone, it will be in the development.db which is a sqlite3 file. You can >> inspect it with the sqlite3 command line tool. There are also various >> graphical tools to do the same. If you changed the database back end to to >> another database, it will be available with the tools for that database >> (postgres, mysql etc) >> >> Jeff >> >> On 2011-01-28 at 13:17:14, Smitha V wrote: >> >> Yeah, saw that. But isn't all that stored somewhere at the back end? >> >> On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org>wrote: >> >> You can get some of this in the django admin. Http://<geonode >> server>:<port>/admin/ >> >> Jeff >> >> On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: >> >> > Hi all, >> > >> > Can somebody tell me where the details of all the users(created by >> admin) are stored in log? Can the admin get the details of the login time, >> logout time, the data uploaded by specific users etc ? Basically the >> history of the upload done by user.. >> > >> > -- >> > Regards >> > Smitha V >> > MT2009149 >> > IIITB >> > >> >> >> >> >> -- >> Regards >> Smitha V >> MT2009149 >> IIITB >> >> >> > > > -- > Regards > Smitha V > MT2009149 > IIITB > > -- Regards Smitha V MT2009149 IIITB
I dont believe a *log* of that stuff is stored to the database, but every layer, map etc is tied to the user that created it. You can get this from the database. Jeff On 2011-01-28 at 14:27:54, Smitha V wrote: > Then can't we keep track of what the users do? like uploading of files, downloading of files, creation of maps? > > On Fri, Jan 28, 2011 at 12:29 PM, Smitha V <smitha.v@iiitb.net> wrote: > > > The database only gives the schema and the SQL statements. I want the details like which user entered what data at what time? Can i get this data? or its just what i get from Django admin account? > > > > > > On Fri, Jan 28, 2011 at 12:01 PM, Jeffrey Johnson <jjohnson@opengeo.org> wrote: > > > > > Yes, it would be in the database. If you left the default settings alone, it will be in the development.db which is a sqlite3 file. You can inspect it with the sqlite3 command line tool. There are also various graphical tools to do the same. If you changed the database back end to to another database, it will be available with the tools for that database (postgres, mysql etc) > > > > > > > > > Jeff > > > On 2011-01-28 at 13:17:14, Smitha V wrote: > > > > > > > Yeah, saw that. But isn't all that stored somewhere at the back end? > > > > > > > > On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org> wrote: > > > > > > > > > You can get some of this in the django admin. Http://<geonode > > > > > server>:<port>/admin/ > > > > > > > > > > Jeff > > > > > > > > > > On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > > > > > > > > > > > Hi all, > > > > > > > > > > > > Can somebody tell me where the details of all the users(created by admin) are stored in log? Can the admin get the details of the login time, logout time, the data uploaded by specific users etc ? Basically the history of the upload done by user.. > > > > > > > > > > > > -- > > > > > > Regards > > > > > > Smitha V > > > > > > MT2009149 > > > > > > IIITB > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > Regards > > > > Smitha V > > > > MT2009149 > > > > IIITB > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > Regards > > Smitha V > > MT2009149 > > IIITB > > > > > > > > > > > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > >
Thanks :) On Fri, Jan 28, 2011 at 1:25 PM, Jeffrey Johnson <jjohnson@opengeo.org>wrote: > I dont believe a *log* of that stuff is stored to the database, but every > layer, map etc is tied to the user that created it. You can get this from > the database. > > Jeff > > On 2011-01-28 at 14:27:54, Smitha V wrote: > > Then can't we keep track of what the users do? like uploading of files, > downloading of files, creation of maps? > > On Fri, Jan 28, 2011 at 12:29 PM, Smitha V <smitha.v@iiitb.net> wrote: > > The database only gives the schema and the SQL statements. I want the > details like which user entered what data at what time? Can i get this data? > or its just what i get from Django admin account? > > > On Fri, Jan 28, 2011 at 12:01 PM, Jeffrey Johnson <jjohnson@opengeo.org>wrote: > > Yes, it would be in the database. If you left the default settings alone, > it will be in the development.db which is a sqlite3 file. You can inspect it > with the sqlite3 command line tool. There are also various graphical tools > to do the same. If you changed the database back end to to another database, > it will be available with the tools for that database (postgres, mysql etc) > > Jeff > > On 2011-01-28 at 13:17:14, Smitha V wrote: > > Yeah, saw that. But isn't all that stored somewhere at the back end? > > On Fri, Jan 28, 2011 at 11:43 AM, Jeff Johnson <jjohnson@opengeo.org>wrote: > > You can get some of this in the django admin. Http://<geonode > server>:<port>/admin/ > > Jeff > > On Jan 28, 2011, at 13:10, Smitha V <smitha.v@iiitb.net> wrote: > > > Hi all, > > > > Can somebody tell me where the details of all the users(created by admin) > are stored in log? Can the admin get the details of the login time, logout > time, the data uploaded by specific users etc ? Basically the history of > the upload done by user.. > > > > -- > > Regards > > Smitha V > > MT2009149 > > IIITB > > > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > > > -- > Regards > Smitha V > MT2009149 > IIITB > > > -- Regards Smitha V MT2009149 IIITB