VirtualBox

Ignore:
Timestamp:
Oct 1, 2007 3:50:24 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
24990
Message:

2332: Registration feature:

Registration information (Name, eMail and isPrivate) is now stored into config xml file in slightly encoded format (with CRC32 protection) in GUI/RegistrationData key.

Config extra data GUI/RegistrationTriesLeft key is changed to GUI/RegistrationData key which will store the "triesLeft=<number>" value before the registration is proceed and the encrypted registration data after the registration was.

When the user opens the Registration Dialog (if is was already registered here) his reg.data will be auto-inserted in newly opened registration form, so the user can easily edit the reg.data and make re-registration.

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/include/VBoxDefs.h

    r5051 r5128  
    164164    static const char* GUI_LicenseKey;
    165165#endif
    166     static const char* GUI_RegistrationTriesLeft;
    167166    static const char* GUI_RegistrationDlgWinID;
     167    static const char* GUI_RegistrationData;
    168168};
    169169
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxDefs.cpp

    r5066 r5128  
    3232const char* VBoxDefs::GUI_LicenseKey = "GUI/LicenseAgreed";
    3333#endif
    34 const char* VBoxDefs::GUI_RegistrationTriesLeft = "GUI/RegistrationTriesLeft";
    3534const char* VBoxDefs::GUI_RegistrationDlgWinID = "GUI/RegistrationDlgWinID";
     35const char* VBoxDefs::GUI_RegistrationData = "GUI/RegistrationData";
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp

    r5109 r5128  
    16531653{
    16541654    /* Check if the automatic registration already passed */
    1655     if (virtualBox().GetExtraData (VBoxDefs::GUI_RegistrationTriesLeft) == "0")
     1655    QString regData = virtualBox().GetExtraData (VBoxDefs::GUI_RegistrationData);
     1656    if (regData.startsWith ("triesLeft="))
     1657    {
     1658        QString triesLeft = regData.section ("=", 1, 1);
     1659        if (triesLeft == "0")
     1660            return;
     1661    }
     1662    else if (!regData.isEmpty())
    16561663        return;
    16571664
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette