[root] / trunk / core / base / inc / TSystemDirectory.h Repository:
ViewVC logotype

Log of /trunk/core/base/inc/TSystemDirectory.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 2904 byte(s)
Diff to previous 20877
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20877 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:17:07 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2904 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2904 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2960 byte(s)
Diff to previous 15449
remove :$ from tag line

Revision 15449 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 16 07:05:15 2006 UTC (8 years, 7 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2970 byte(s)
Diff to previous 15134
From Bertrand:
fix for TSystemDirectory::SetDirectory(const char *name)
that did not change the directory anymore.

Revision 15134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 04:47:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2903 byte(s)
Diff to previous 11953
From Federico Carminati:

"I have implemented all copy and equal operators needed to silence all
warnings in AliRoot, as requested. I have implemented shallow copies as
would do the default operators synthetized by the compiler.
Most operators are protected. If users complain, you just have to move
them into the public area, but class derivation is of course supported.
It has been a terrible job, I have modified 278 files, but the changes
are backward compabile, and this goes a long way to permitting user to
use the effc++ flag with root headers."

Revision 11953 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 2 16:28:27 2005 UTC (9 years, 7 months ago) by brun
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2799 byte(s)
Diff to previous 11924
From Valeriy Onuchin:
- fix methods name conflict (IsDirectory) in TSystemDirectory.h.
   Thanks to Christian Stratova who reported about problem with guitest.C ListDir test.
- TPad::Print. Temporary solution to avoid conflict beteween TASImage and QtRoot
- TASImage. Minory mods related to coming FilledEllipse implementation.

Revision 11924 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 31 18:52:45 2005 UTC (9 years, 7 months ago) by brun
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2780 byte(s)
Diff to previous 11907
From Valeriy Onuchin:
- TGComboBox. New signal ReturnPressed added which is
  emitted when Return key pressed in combo box text entry.
  The current text entry string is added to combo box list.

- TSystemDirectory. Move, Delete, Copy methods removed from
   context menu (will be implemented later).

Thanks to Ilka for both suggestions.

Revision 11907 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 30 10:21:14 2005 UTC (9 years, 7 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2335 byte(s)
Diff to previous 6820
From Valeriy:
- TSystemFile. New methods Rename, Delete, Copy, Move  added.
  These methods can be invoked via ContextMenu  (press right mouse button)
  in ROOT browser.
- TRootBrowser. More improvments in browsing history navigation added.

Revision 6820 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jul 4 10:55:33 2003 UTC (11 years, 6 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2345 byte(s)
Diff to previous 6806
make datamembers protected.

Revision 6806 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 1 11:39:45 2003 UTC (11 years, 6 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2343 byte(s)
Diff to previous 5034
added method IsDirectory() in TSystemFile. By Valeriy.

Revision 5034 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 31 21:59:16 2002 UTC (12 years, 5 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2288 byte(s)
Diff to previous 568
a few changes in TBrowser to allow browsing parent directories via
a the '..' uplink. By Christian Holm.

In More detail:
* TSystemDirectory::Browse(TBrowser*):
  Puts the '..' and '.' links in the output. If the
  'TBrowser::kNoHidden' bit is set in the passed 'TBrowser' objects bit
  mask, files beginning with '.' (including the link '.' to current
  dir) is not shown. The uplink '..' is always shown. This bit can be
  set from the menus.

* TList *TSystemDirectory::GetListOfFile():
  Added method to get a list of the contents of the directory. The
  'TList' contains 'TSystemDirectory' and 'TSystemFile' objects. I could
  forsee situations where the following kind of code could be very
  useful:

    TChain* chain = new TChain("Tree", "A Tree");
    TSystemDirectory* dataDir =
      new TSystemDirectory("data", Form("%s/data", gSystem->HomeDirectory()));
    TList* contents = dataDir->GetListOfFiles();

    TIter        next(contents);
    TSystemFile* file;
    while ((file = (TSystemFile*)next())) {
      if (file->IsDirectory())
        continue;
      if (TString(file->GetName()).EndsWidth(".root"))
        chain->Add(Form("%s/%s", file->GetTitle(), file->GetName()));
    }

Revision 568 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 5 09:21:24 2000 UTC (14 years, 4 months ago) by brun
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2230 byte(s)
Diff to previous 3
The following headers and classes have been modified to take into account;
  - the new signature of IsFolder (now const)
  - the new TObject::FindObject
  - the fact that the static functions of TObject have been moved to TROOT.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/base/inc/TSystemDirectory.h
File length: 2162 byte(s)
Copied from: branches/rdm/base/inc/TSystemDirectory.h revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/base/inc/TSystemDirectory.h
File length: 2162 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9