rejetto forum
May 25, 2012, 06:01:26 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: This forum is free, you do NOT need to register to post. But you may.
PROBLEMS? QUESTIONS? CLICK HERE!
Fill the survey!
 
   Home   Help Search Login Register  
Pages: [1] 2
  Print  
Author Topic: Testing build #205  (Read 7059 times)
0 Members and 1 Guest are viewing this topic.
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« on: October 05, 2008, 12:44:45 PM »

This build introduces user groups. Wink

This build will be included in the automatic update tomorrow, because there are deep changes in the authentication system.
So i want it to be tested first by mindful users. We need a preliminary testing to know if there are big wholes in it. I made a rough testing and fixed all i stumbled in, but this is truly not enough.

download @ www.dovedove.it/hfs/hfs205.exe

what's new
+ account linking: an account can be linked to another, inheriting permissions (an easy way to get groups)
+ new template macros: new account, set account, get|accounts
+ added F7 shortcut for accounts
+ a way to give access/upload to any account
- "set user/pass" broken in build #204
Logged
bacter
Operator
Insane poster
*****
Offline Offline

Spain Spain

Posts: 679


View Profile
« Reply #1 on: October 05, 2008, 02:27:21 PM »

Thanks Rejetto,

this is one of the most useful improvements in hfs users where waiting for a long time, especially users with a 'complicated' file system.

Adding a new user will now be a lot easier. If the new user belongs to a group that's already defined: No need to check a lot of folders to give and verify access rights. Link a new user to well known group like 'friends' or 'partners' and all is done! The most that remains to do, is to give him rights to some folder that is for his exclusive use.

Congratulations for the way you solved the group-problem, and many thanks for this new feature
Logged

your computer has no brain - use your own !
Pit
Tireless poster
****
Offline Offline

Germany Germany

Posts: 115


P_Hampel@gmx.net
View Profile WWW
« Reply #2 on: October 05, 2008, 02:40:40 PM »

Very much thanks for the implementation of the groupfeature. It makes us the work and thr administration much easier. Thank you.
Logged

You reach our Webserver every day between 9 AM to 10 PM under: http://phampel.dyndns.org or http://free4you.dyndns.org
Novox
Experienced poster
***
Offline Offline

Thailand Thailand

Posts: 84


View Profile Email
« Reply #3 on: October 06, 2008, 12:50:03 AM »

Thanks dev!!!
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« Reply #4 on: October 06, 2008, 04:48:52 AM »

The most that remains to do, is to give him rights to some folder that is for his exclusive use.

i don't understand, please explain
Logged
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1481



View Profile WWW
« Reply #5 on: October 06, 2008, 12:42:38 PM »

Quote
The most that remains to do, is to give him rights to some folder that is for his exclusive use.


i don't understand, please explain
When the rights of groups for this user are set up, it remains to define only private rights for this user on the other resources
(une fois que les droits de groupes pour cet utilisateur sont mis en place, il reste à définir uniquement des droits privés pour cet utilisateur sur d'autres ressources)

Logged
rejetto forum
« Reply #5 on: October 06, 2008, 12:42:38 PM »

Do you like this software? Consider even $2
 Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« Reply #6 on: October 06, 2008, 12:57:31 PM »

Ok, i thought it was something expected by me
Logged
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1481



View Profile WWW
« Reply #7 on: October 07, 2008, 03:51:00 AM »

Mise à jour

après avoir travailler un bon paquet d'heures à trouver la bonne formule, il en ressort ces modifications pour optiondlg.pas

Quote
procedure ToptionsFrm.groupChkClick(Sender: TObject);
begin
pwdBox.visible:=not groupChk.checked;
if accountsBox.selected = NIL then exit;   //add by mars
accountsBox.selected.ImageIndex:=if_(accountenabledChk.Checked, if_(groupChk.checked,29,27), 28);    //add  by mars
accountsbox.Repaint;          //ad by mars

end;


procedure ToptionsFrm.addAccountInList(a:Taccount);
var
  it: TlistItem;
begin
it:=Tlistitem.Create(accountsBox.items);
it.ImageIndex:=if_(a.enabled, if_(a.group,29,27), 28);    //mod by mars
accountsBox.Items.AddItem(it);
it.Caption:=a.user;
end;


procedure ToptionsFrm.accountenabledChkClick(Sender: TObject);
begin
if accountsBox.ItemIndex < 0 then exit;
accountsBox.selected.ImageIndex:=if_(accountenabledChk.Checked, if_(groupChk.checked,29,27), 28);    //mod by mars
accountsbox.Repaint;          //add by mars

end;




procedure ToptionsFrm.loadAccountProperties();
.........
accountLinkBox.text:=join(';',a.link);
ignoreLimitsChk.Checked:=a.noLimits;
redirBox.Text:=a.redir;
accountsBox.selected.ImageIndex:=if_(a.enabled, if_(a.group,29,27), 28);    //add by mars




* result.png (9.32 KB, 384x351 - viewed 293 times.)
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« Reply #8 on: October 07, 2008, 03:56:27 AM »

yes, i like it Smiley
Logged
Mars
Operator
Insane poster
*****
Offline Offline

France France

Posts: 1481



View Profile WWW
« Reply #9 on: October 07, 2008, 04:03:38 AM »

missing

accountsBox.selected.ImageIndex:=if_(accountenabledChk.Checked, if_(groupChk.checked,29,27), if_(groupChk.checked,40,28));    //mod by mars

et tout sera parfait

rejetto, regardes tes MP, lien de chargement de mes modifs en cours d'étude, je suppose que tu aimeras aussi cette voie d'étude Wink


* grey group.png (0.6 KB, 16x16 - viewed 508 times.)
« Last Edit: October 07, 2008, 04:11:08 AM by mars » Logged
ailef
Regular poster
**
Offline Offline

Posts: 24


View Profile
« Reply #10 on: October 07, 2008, 03:48:41 PM »

ah cool there's a new build, i had lot of crashes with build 204 but when i clic on copy it does nothing to report the bug.
so i clic terminate and sometimes it doesnt even work, i have to kill the process.

this prog is nice i'm going on paypal right now ;-)

done ;-)
« Last Edit: October 07, 2008, 04:09:33 PM by ailef » Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« Reply #11 on: October 07, 2008, 04:44:21 PM »

ailef, after you click "copy" you have to "paste" it here on the forum Smiley
could you please? so i'll fix it
Logged
ailef
Regular poster
**
Offline Offline

Posts: 24


View Profile
« Reply #12 on: October 07, 2008, 06:12:04 PM »

ok i'll do it next time i got a crash.
i'm going to update to build 205.
and the app crash most of the time on vista
it doesnt crash so many times on xp.

i got an exceptionslog.txt in my HFS folder, sorry, i never go in the folder.
do u want me to post it? it starts from build 180 to build 204.
i attach the .txt file.

[attachment deleted by admin]
« Last Edit: October 07, 2008, 06:22:16 PM by ailef » Logged
ailef
Regular poster
**
Offline Offline

Posts: 24


View Profile
« Reply #13 on: October 07, 2008, 06:34:25 PM »

build 205 crashed under vista again,
txt file joined to the post.

i talked too fast, it just crashed in xp too, build 204.

maybe it's possible there's a problem with some other app ?
i use kaspersky antivirus 8.0.0.454
and comodo FW 3.0.25.378 on both xp pro sp3 and vista ultimate SP1
but not the same machines.

* MyLogError_Build_205.txt (26.28 KB - downloaded 182 times.)
« Last Edit: October 07, 2008, 06:39:56 PM by ailef » Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11830


View Profile
« Reply #14 on: October 07, 2008, 06:40:20 PM »

ok, i had a look at those logs.
i think you should try running HFS under compatibility mode ("XP" should be fine).
Logged
Pages: [1] 2
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!


Google visited last this page May 16, 2012, 02:50:31 PM