Click here to Skip to main content
15,884,537 members

Rei Miyasaka - Professional Profile



Summary

    Blog RSS
16,726
Author
1,135
Authority
1,069
Debator
19
Enquirer
101
Organiser
1,059
Participant
0
Editor
The cows are here to take me home now...

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralDid they mix up .NET 3.0 and 2.0 in the Vista EULA? Pin
Rei Miyasaka25-Oct-06 19:21
Rei Miyasaka25-Oct-06 19:21 
GeneralLonghorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Rei Miyasaka9-Oct-06 23:08
Rei Miyasaka9-Oct-06 23:08 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Daniel Grunwald10-Oct-06 8:47
Daniel Grunwald10-Oct-06 8:47 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment [modified] Pin
Rei Miyasaka10-Oct-06 9:25
Rei Miyasaka10-Oct-06 9:25 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Daniel Grunwald11-Oct-06 4:04
Daniel Grunwald11-Oct-06 4:04 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Rei Miyasaka11-Oct-06 5:23
Rei Miyasaka11-Oct-06 5:23 
GeneralReplying to Jason Pin
Rei Miyasaka25-Sep-06 11:11
Rei Miyasaka25-Sep-06 11:11 
GeneralJason Zander replies Pin
Rei Miyasaka25-Sep-06 11:10
Rei Miyasaka25-Sep-06 11:10 
GeneralEmail to Microsoft Pin
Rei Miyasaka25-Sep-06 11:03
Rei Miyasaka25-Sep-06 11:03 
GeneralReverse WinFX Chronology [modified] Pin
Rei Miyasaka25-Sep-06 10:51
Rei Miyasaka25-Sep-06 10:51 
QuestionRe: MiniHttpd Pin
Dan Essin15-Dec-06 13:22
Dan Essin15-Dec-06 13:22 
AnswerRe: MiniHttpd Pin
Rei Miyasaka15-Dec-06 13:59
Rei Miyasaka15-Dec-06 13:59 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 8:02
Dan Essin18-Dec-06 8:02 
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 12:11
Rei Miyasaka18-Dec-06 12:11 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:43
Dan Essin18-Dec-06 12:43 
Thanks. I think I've mostly got it working. I've also added an embedded IE pane that I'm going to use to test the behavior of the server and put everything in a set of split containers to that it can all be resized.

I've also fixed up the links in the about form to use the 2.0 LinkLabel features.

I've also changed the logic for deciding which tree menu items to enable.

I'm curions about OnRootNodeChanged(). It is fired 2-3 times when the app starts up before the time when the real saved state has been deserialized. This doesn't appear to hurt anything but it seems a bit untidy. I'm not real familiar with the events that are generated by web servers so this may be unavoidable. On further study the extra events are comming from:

[Category("Directories"), Description("The type of the root folder, either a root folder or a drive on disk.")]
public DirectoryType RootType
{
get
{
return form.rootType;
}
set
{
form.rootType = value;
if(value == DirectoryType.Drive)
{
if(form.server.Root is VirtualDirectory)
{
BinaryFormatter formatter = new BinaryFormatter();
if(form.serializedVirtualRoot != null)
form.serializedVirtualRoot.Close();
form.serializedVirtualRoot = new MemoryStream(); formatter.Serialize(form.serializedVirtualRoot, form.server.Root);
}
form.server.Root = new AspxAppDirectory(form.rootPath);
//form.OnRootNodeChanged();
}
else
{
if(form.serializedVirtualRoot != null)
{
BinaryFormatter formatter = new BinaryFormatter();
form.serializedVirtualRoot.Seek(0, SeekOrigin.Begin);
form.server.Root = formatter.Deserialize(form.serializedVirtualRoot) as VirtualDirectory;
}
else
form.server.Root = new VirtualDirectory();
}
//form.OnRootNodeChanged();
}
}


Commenting out the 2 OnRootNodeChanged calls does not seem to impact the app. What do you think?

Dan
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 13:22
Rei Miyasaka18-Dec-06 13:22 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 13:27
Dan Essin18-Dec-06 13:27 
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 13:36
Rei Miyasaka18-Dec-06 13:36 
GeneralRe: MiniHttpd Pin
Dan Essin21-Dec-06 8:29
Dan Essin21-Dec-06 8:29 
GeneralRe: MiniHttpd Pin
Dan Essin21-Dec-06 11:52
Dan Essin21-Dec-06 11:52 
GeneralRe: MiniHttpd Pin
Rei Miyasaka22-Dec-06 7:48
Rei Miyasaka22-Dec-06 7:48 
GeneralRe: MiniHttpd Pin
Rei Miyasaka22-Dec-06 7:49
Rei Miyasaka22-Dec-06 7:49 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:52
Dan Essin18-Dec-06 12:52 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:56
Dan Essin18-Dec-06 12:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.