Enforcing this onto users might be inappropriate. Some people may not WANT it publicly displayed. I believe this could also be negative in the event of security issues. If your site displays "running drupal 4.6.1" publicly, you could easily be the target of that exploit that did the rounds a while ago.
Regards,
Kobus
drupal@apockotos.com 8/2/2005 12:15 AM >>>
Why not just put in the version number in the footer each time you upgrade? Such as running Drupal 4.6.2
On Aug 1, 2005, at 3:48 PM, haisam@ido.org wrote:
Here are possible versioning tables, where one can track the current version and it's evolution. Perhaps one can also add the changelog in the versioning table.
CREATE TABLE `versioning` ( `id` INT NOT NULL auto_increment, `current_version` VARCHAR(255) NOT NULL, /* current version */ `date_of_version` DATETIME NOT NULL, /* date of version */ `date_of_install` TIMESTAMP(14) NOT NULL DEFAULT NOW(), PRIMARY KEY (`id` ), UNIQUE KEY `current` ( `current_version` ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ;
CREATE TABLE `versioning_relationship` ( `From_id1` INT NOT NULL, FOREIGN KEY (From_id1) REFERENCES versioning (id), `To_id2` INT NOT NULL, FOREIGN KEY (To_id2) REFERENCES versioning (id), PRIMARY KEY (`From_id1`, `To_id2` ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Bèr Kessels wrote:
Go ahead and make a patch, if you really think it should be there. Op donderdag 28 juli 2005 15:47, schreef haisam@ido.org:
true, but that field should come from the db
Kobus Myburgh wrote:
Or be displayed somewhere in the admin section.
Kobus
> haisam@ido.org 7/28/2005 3:43:06 PM >>> >
The version should really be saved in the db.
Bill Fitzgerald wrote:
Dan KB6NU wrote:
Is there an easy way to tell what version I'm running?
Thanks,
Dan
Try reading the changelog.txt in the base directory of your drupal install -- the changelog will stop at your version.
Hope this helps.
Bill.
Regards, Bèr
-- [ Drupal support list | http://lists.drupal.org/ ]
-- [ Drupal support list | http://lists.drupal.org/ ]
Kobus,
I agree with you 100% on all points. I never want anyone to know what software I am running for just that issue. Now if someone is a good friend. I will happily recommend Drupal. Again it was just a suggestion for the here and now. I think this should be shown in the admin only.
On Aug 2, 2005, at 3:14 AM, Kobus Myburgh wrote:
Enforcing this onto users might be inappropriate. Some people may not WANT it publicly displayed. I believe this could also be negative in the event of security issues. If your site displays "running drupal 4.6.1" publicly, you could easily be the target of that exploit that did the rounds a while ago.
Regards,
Kobus
drupal@apockotos.com 8/2/2005 12:15 AM >>>
Why not just put in the version number in the footer each time you upgrade? Such as running Drupal 4.6.2
On Aug 1, 2005, at 3:48 PM, haisam@ido.org wrote:
Here are possible versioning tables, where one can track the current version and it's evolution. Perhaps one can also add the changelog in the versioning table.
CREATE TABLE `versioning` ( `id` INT NOT NULL auto_increment, `current_version` VARCHAR(255) NOT NULL, /* current version */ `date_of_version` DATETIME NOT NULL, /* date of version */ `date_of_install` TIMESTAMP(14) NOT NULL DEFAULT NOW(), PRIMARY KEY (`id` ), UNIQUE KEY `current` ( `current_version` ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ;
CREATE TABLE `versioning_relationship` ( `From_id1` INT NOT NULL, FOREIGN KEY (From_id1) REFERENCES versioning (id), `To_id2` INT NOT NULL, FOREIGN KEY (To_id2) REFERENCES versioning (id), PRIMARY KEY (`From_id1`, `To_id2` ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Bèr Kessels wrote:
Go ahead and make a patch, if you really think it should be there. Op donderdag 28 juli 2005 15:47, schreef haisam@ido.org:
true, but that field should come from the db
Kobus Myburgh wrote:
Or be displayed somewhere in the admin section.
Kobus
>> haisam@ido.org 7/28/2005 3:43:06 PM >>> >> >>
The version should really be saved in the db.
Bill Fitzgerald wrote:
Dan KB6NU wrote:
> Is there an easy way to tell what version I'm running? > > Thanks, > > Dan > >
Try reading the changelog.txt in the base directory of your drupal install -- the changelog will stop at your version.
Hope this helps.
Bill.
Regards, Bèr
-- [ Drupal support list | http://lists.drupal.org/ ]
-- [ Drupal support list | http://lists.drupal.org/ ]
-- [ Drupal support list | http://lists.drupal.org/ ]
Op dinsdag 02 augustus 2005 19:54, schreef Peter Apockotos:
I never want anyone to know what software I am running for just that issue.
Can you people please take this discussion to the drupal issues (with patches) or at least to the drupal-devel ML. This certainly does nnot belong in support. And besides that, its useless and pointless here, for it will not be seen by the proper people (developers)
And (I don't want to sound rude or anything) tak is silver, code is gold. This issue will not be fixed with endless debates, but a piece of code might.
But above all, Adrian has worked uot a complete plan. Why not help him, instead of developing a theory that will lmost probably never be implemented?
Regards, Bèr