4 | //-----------------------------------------------------------------------------
5 | // Jocys.com Password Generator www.jocys.com/Scripts/Classes/Documents
6 | //-----------------------------------------------------------------------------
7 |
8 | To run password generator as HTML page:
9 |
10 | Scripts\Classes\Examples\System.Security.Password.htm
11 |
12 | To run password generator as Windows application create shortcut to:
13 |
14 | Scripts\Classes\Examples\System.Security.Password.hta
15 |
16 | Icon for windows shortcut:
17 |
18 | Scripts\Classes\System.Security.Password\Images\Icons\PassGen.ico
--------------------------------------------------------------------------------
/Documents/Images/Icons/Home-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/Icons/Home-16x16.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects.txt:
--------------------------------------------------------------------------------
1 | // Images are available from:
2 | // C:\Program Files\Microsoft Visual Studio 8\Common7\VS2005ImageLibrary\VS2005ImageLibrary.zip
3 | //
4 | // Class View and Object Browser Icons
5 | // http://msdn2.microsoft.com/en-us/library/y47ychfe(VS.90).aspx
6 | // http://msdn2.microsoft.com/en-us/library/y47ychfe(VS.80).aspx
7 |
8 |
9 | // Convert Microosft BMPs to PNGs.
10 |
11 | string[] files = System.IO.Directory.GetFiles(@"d:\temp\img", "*.bmp");
12 | System.Drawing.Bitmap bmp;
13 | System.Drawing.Color transparentColor = System.Drawing.Color.FromArgb(255, 255, 0, 255);
14 | int length = files.Length;
15 | for (int i = 0; i < length; i++)
16 | {
17 | System.IO.FileInfo file = new System.IO.FileInfo(files[i]);
18 | bmp = new System.Drawing.Bitmap(file.FullName);
19 | bmp.MakeTransparent(transparentColor);
20 | string newName = System.IO.Path.GetFileNameWithoutExtension(file.FullName).Replace("VSObject_", "");
21 | bmp.Save(file.DirectoryName + "\\VSObject\\" + newName + ".png", System.Drawing.Imaging.ImageFormat.Png);
22 | bmp.Dispose();
23 | }
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Assembly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Assembly.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/BSC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/BSC.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Class_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Class_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Constant_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Constant_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Delegate_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Delegate_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/DialogID.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/DialogID.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Enum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Enum.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumItem_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumItem_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/EnumPrivate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/EnumPrivate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Enum_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Enum_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Enum_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Enum_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Enum_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Enum_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Enum_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Enum_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Event_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Event_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Exception.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Exception.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ExceptionPrivate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ExceptionPrivate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Exception_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Exception_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Exception_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Exception_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Exception_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Exception_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Exception_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Exception_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Field_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Field_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Interface_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Interface_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Library.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Library.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Macro_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Macro_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MapItem_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MapItem_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Map_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Map_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/MethodOverload_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/MethodOverload_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Method_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Method_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Module_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Module_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Namespace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Namespace.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/NamespacePrivate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/NamespacePrivate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/NamespaceProtected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/NamespaceProtected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Namespace_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Namespace_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Namespace_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Namespace_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Namespace_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Namespace_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Object.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Object.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ObjectShortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ObjectShortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Object_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Object_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Object_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Object_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Object_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Object_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Object_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Object_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Operator_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Operator_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Properties_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Properties_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Structure_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Structure_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Template_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Template_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDef.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDef.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDefShortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDefShortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDef_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDef_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDef_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDef_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDef_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDef_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/TypeDef_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/TypeDef_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type_Private.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type_Private.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Type_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Type_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Union.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Union.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/UnionPrivate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/UnionPrivate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Union_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Union_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Union_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Union_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Union_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Union_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/Union_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/Union_Shortcut.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueType.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueType.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueTypePrivate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueTypePrivate.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueType_Friend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueType_Friend.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueType_Protected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueType_Protected.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueType_Sealed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueType_Sealed.png
--------------------------------------------------------------------------------
/Documents/Images/VSObjects/ValueType_Shortcut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/Images/VSObjects/ValueType_Shortcut.png
--------------------------------------------------------------------------------
/Documents/JocysComJavaScriptClasses/JocysComClassBrowser.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/JocysComJavaScriptClasses/JocysComClassBrowser.jpg
--------------------------------------------------------------------------------
/Documents/JocysComJavaScriptClasses/JocysComJavaScriptClassesToolBar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/JocysComJavaScriptClasses/JocysComJavaScriptClassesToolBar.png
--------------------------------------------------------------------------------
/Documents/JocysComJavaScriptClasses/JocysComJavaScriptInherits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/JocysComJavaScriptClasses/JocysComJavaScriptInherits.png
--------------------------------------------------------------------------------
/Documents/JocysComJavaScriptClasses/JocysComJavaScriptIntelliSense.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/JocysComJavaScriptClasses/JocysComJavaScriptIntelliSense.png
--------------------------------------------------------------------------------
/Documents/JocysComJavaScriptClasses/JocysComJavaScriptPasswordGenerator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Documents/JocysComJavaScriptClasses/JocysComJavaScriptPasswordGenerator.png
--------------------------------------------------------------------------------
/Documents/ShowIntro.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Jocys.com JavaScript.NET Class Library Browser
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/MIT-LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003, 2004 Jim Weirich
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining
4 | a copy of this software and associated documentation files (the
5 | "Software"), to deal in the Software without restriction, including
6 | without limitation the rights to use, copy, modify, merge, publish,
7 | distribute, sublicense, and/or sell copies of the Software, and to
8 | permit persons to whom the Software is furnished to do so, subject to
9 | the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be
12 | included in all copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/config.rb:
--------------------------------------------------------------------------------
1 | environment = :production
2 | project_type = :stand_alone
3 | http_path = "/"
4 | css_dir = "../styles"
5 | sass_dir = "."
6 | images_dir = "images"
7 | sass_options = {
8 | :line_numbers => false,
9 | :debug_info => false
10 | }
11 |
12 | # output_style = :compressed
13 | # output_style = :compact
14 | output_style = :expanded
15 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreDefault.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeDefault.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreDjango.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeDjango.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreEclipse.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeEclipse.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreEmacs.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeEmacs.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreFadeToGrey.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeFadeToGrey.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreMDUltra.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeMDUltra.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreMidnight.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeMidnight.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shCoreRDark.scss:
--------------------------------------------------------------------------------
1 | @import "shCore.scss";
2 | @import "shThemeRDark.scss";
3 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shThemeDefault.scss:
--------------------------------------------------------------------------------
1 | // Default Syntax Highlighter theme.
2 |
3 | @import "_theme_template.scss";
4 |
5 | .syntaxhighlighter {
6 | .keyword { font-weight: bold !important; }
7 | }
8 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shThemeEmacs.scss:
--------------------------------------------------------------------------------
1 | // Emacs SyntaxHighlighter theme based on theme by Joshua Emmons
2 | // http://www.skia.net/
3 |
4 | $background: black !default;
5 |
6 | $line_highlighted_background: #2A3133 !default;
7 | $line_highlighted_number: white !default;
8 |
9 | $gutter_text: #d3d3d3 !default;
10 | $gutter_border_color: #990000 !default;
11 |
12 | $toolbar_collapsed_a: #ebdb8d !default;
13 | $toolbar_collapsed_a_hover: #ff7d27 !default;
14 | $toolbar_collapsed_background: black !default;
15 |
16 | $toolbar_a: #fff !default;
17 | $toolbar_a_hover: #9ccff4 !default;
18 |
19 | $code_plain: #d3d3d3 !default;
20 | $code_comments: #ff7d27 !default;
21 | $code_string: #ff9e7b !default;
22 | $code_keyword: aqua !default;
23 | $code_preprocessor: #aec4de !default;
24 | $code_variable: #ffaa3e !default;
25 | $code_value: #009900 !default;
26 | $code_functions: #81cef9 !default;
27 | $code_constants: #ff9e7b !default;
28 | $code_color1: #ebdb8d !default;
29 | $code_color2: #ff7d27 !default;
30 | $code_color3: #aec4de !default;
31 |
32 | @import "_theme_template.scss";
33 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shThemeMDUltra.scss:
--------------------------------------------------------------------------------
1 | // MDUltra SyntaxHighlighter theme based on Midnight Theme
2 | // http://www.mddev.co.uk/
3 |
4 | $background: #222222 !default;
5 |
6 | $line_highlighted_background: #253e5a !default;
7 | $line_highlighted_number: white !default;
8 |
9 | $gutter_text: #38566f !default;
10 | $gutter_border_color: #435a5f !default;
11 |
12 | $toolbar_collapsed_a: #428bdd !default;
13 | $toolbar_collapsed_a_hover: lime !default;
14 | $toolbar_collapsed_background: black !default;
15 |
16 | $toolbar_a: #aaaaff !default;
17 | $toolbar_a_hover: #9ccff4 !default;
18 |
19 | $code_plain: lime !default;
20 | $code_comments: #428bdd !default;
21 | $code_string: lime !default;
22 | $code_keyword: #aaaaff !default;
23 | $code_preprocessor: #8aa6c1 !default;
24 | $code_variable: aqua !default;
25 | $code_value: #f7e741 !default;
26 | $code_functions: #ff8000 !default;
27 | $code_constants: yellow !default;
28 | $code_color1: red !default;
29 | $code_color2: yellow !default;
30 | $code_color3: #ffaa3e !default;
31 |
32 | @import "_theme_template.scss";
33 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/compass/shThemeMidnight.scss:
--------------------------------------------------------------------------------
1 | // Midnight SyntaxHighlighter theme based on theme by J.D. Myers
2 | // http://webdesign.lsnjd.com/
3 |
4 | $background: #0f192a !default;
5 |
6 | $line_highlighted_background: #253e5a !default;
7 | $line_highlighted_number: #38566f !default;
8 |
9 | $gutter_text: #afafaf !default;
10 | $gutter_border_color: #435a5f !default;
11 |
12 | $toolbar_collapsed_a: #428bdd !default;
13 | $toolbar_collapsed_a_hover: #1dc116 !default;
14 | $toolbar_collapsed_background: #000 !default;
15 |
16 | $toolbar_a: #D1EDFF !default;
17 | $toolbar_a_hover: #8aa6c1 !default;
18 |
19 | $code_plain: #d1edff !default;
20 | $code_comments: #428bdd !default;
21 | $code_string: #1dc116 !default;
22 | $code_keyword: #b43d3d !default;
23 | $code_preprocessor: #8aa6c1 !default;
24 | $code_variable: #ffaa3e !default;
25 | $code_value: #f7e741 !default;
26 | $code_functions: #ffaa3e !default;
27 | $code_constants: #e0e8ff !default;
28 | $code_color1: #f8bb00 !default;
29 | $code_color2: white !default;
30 | $code_color3: #ffaa3e !default;
31 |
32 | @import "_theme_template.scss";
33 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Hello SyntaxHighlighter
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Hello SyntaxHighlighter
15 |
16 | function helloSyntaxHighlighter()
17 | {
18 | return "hi!";
19 | }
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/scripts/shBrushPlain.js:
--------------------------------------------------------------------------------
1 | /**
2 | * SyntaxHighlighter
3 | * http://alexgorbatchev.com/SyntaxHighlighter
4 | *
5 | * SyntaxHighlighter is donationware. If you are using it, please donate.
6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
7 | *
8 | * @version
9 | * 3.0.83 (July 02 2010)
10 | *
11 | * @copyright
12 | * Copyright (C) 2004-2010 Alex Gorbatchev.
13 | *
14 | * @license
15 | * Dual licensed under the MIT and GPL licenses.
16 | */
17 | ;(function()
18 | {
19 | // CommonJS
20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
21 |
22 | function Brush()
23 | {
24 | };
25 |
26 | Brush.prototype = new SyntaxHighlighter.Highlighter();
27 | Brush.aliases = ['text', 'plain'];
28 |
29 | SyntaxHighlighter.brushes.Plain = Brush;
30 |
31 | // CommonJS
32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
33 | })();
34 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/.rvmrc:
--------------------------------------------------------------------------------
1 | rvm 1.8.7-p249@copydeca
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/001_basic.html:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * multiline comment
4 | */
5 |
6 | text
7 |
8 | // single line comment
9 |
10 | text
11 |
12 | "string" text 'string' text "string"
13 | "string with \" escape" text 'string with \' escape' text "string with \" escape"
14 |
15 | var code = '\
16 | function helloWorld()\
17 | {\
18 | // this is great!\
19 | for(var i = 0; i <= 1; i++)\
20 | alert("yay");\
21 | }\
22 | ';
23 |
24 |
25 |
43 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/003_script_tag.html:
--------------------------------------------------------------------------------
1 |
2 |
22 |
23 |
24 |
43 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/005_no_gutter.html:
--------------------------------------------------------------------------------
1 |
2 | public Image getImage(URL url, String name) {
3 | try {
4 | /*
5 | Regular multiline comment.
6 | */
7 | return getImage(new URL(url, name));
8 | } catch (MalformedURLException e) {
9 | return null;
10 | }
11 | }
12 |
13 |
14 |
34 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/007_collapse_interaction.html:
--------------------------------------------------------------------------------
1 |
45 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/008_first_line.html:
--------------------------------------------------------------------------------
1 |
2 | partial class Foo
3 | {
4 | function test()
5 | {
6 | yield return;
7 | }
8 | }
9 |
10 |
11 |
30 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/009_class_name.html:
--------------------------------------------------------------------------------
1 |
2 | public Image getImage(URL url, String name) {
3 | try {
4 | /*
5 | Regular multiline comment.
6 | */
7 | return getImage(new URL(url, name));
8 | } catch (MalformedURLException e) {
9 | return null;
10 | }
11 | }
12 |
13 |
14 |
33 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/012_server_side.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/cases/013_html_script.html:
--------------------------------------------------------------------------------
1 |
2 | <hello>
3 | <%
4 | package free.cafekiwi.gotapi;
5 | %>
6 | </hello>
7 |
8 |
11 | <%= print(); %>
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/commonjs_tests.js:
--------------------------------------------------------------------------------
1 | /**
2 | * This is a CommonJS compatibility test. You can run this file with node.
3 | */
4 | require.paths.unshift(__dirname + '/../scripts');
5 |
6 | var sys = require('sys'),
7 | shSyntaxHighlighter = require('shCore').SyntaxHighlighter,
8 | code = 'test',
9 | brushes = [
10 | 'AS3',
11 | 'AppleScript',
12 | 'Bash',
13 | 'CSharp',
14 | 'ColdFusion',
15 | 'Cpp',
16 | 'Css',
17 | 'Delphi',
18 | 'Diff',
19 | 'Erlang',
20 | 'Groovy',
21 | 'JScript',
22 | 'Java',
23 | 'JavaFX',
24 | 'Perl',
25 | 'Php',
26 | 'Plain',
27 | 'PowerShell',
28 | 'Python',
29 | 'Ruby',
30 | 'Sass',
31 | 'Scala',
32 | 'Sql',
33 | 'Vb',
34 | 'Xml'
35 | ]
36 | ;
37 |
38 | brushes.sort();
39 |
40 | for (var i = 0; i < brushes.length; i++)
41 | {
42 | var name = brushes[i],
43 | brush = require('shBrush' + name).Brush
44 | ;
45 |
46 | brush = new brush();
47 | brush.init({ toolbar: false });
48 |
49 | var result = brush.getHtml(code);
50 |
51 | sys.puts(name + (result != null ? ': ok' : ': NOT OK'));
52 | }
53 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/webrick.rb:
--------------------------------------------------------------------------------
1 | require 'webrick'
2 | include WEBrick
3 |
4 | s = HTTPServer.new(
5 | :Port => 2010,
6 | :DocumentRoot => Dir::pwd
7 | )
8 | s.mount('/sh/scripts', WEBrick::HTTPServlet::FileHandler, '../scripts')
9 | s.mount('/sh/styles', WEBrick::HTTPServlet::FileHandler, '../styles')
10 | trap('INT') { s.stop }
11 | s.start
12 |
--------------------------------------------------------------------------------
/Documents/SyntaxHighlighter/tests/webrick.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | ruby webrick.rb
3 |
--------------------------------------------------------------------------------
/Documents/Test/TestJScript.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Scripts.Classes.Documents.Test {
11 |
12 |
13 | public partial class TestJScript {
14 |
15 | ///
16 | /// form1 control.
17 | ///
18 | ///
19 | /// Auto-generated field.
20 | /// To modify move field declaration from designer file to code-behind file.
21 | ///
22 | protected global::System.Web.UI.HtmlControls.HtmlForm form1;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Documents/Test/TestScript.js:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Examples/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="SiteExamples.Master"
2 | Title="Examples"
3 | Inherits="JocysCom.WebSites.WebApp.Scripts.Classes.Examples.Default"
4 | CodeFile="Default.aspx.cs" %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Arrow_Down_24x24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Arrow_Down_24x24.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Arrow_Left_24x24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Arrow_Left_24x24.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Arrow_Right_24x24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Arrow_Right_24x24.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Arrow_Up_24x_24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Arrow_Up_24x_24.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Client_48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Client_48x48.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Computer_48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Computer_48x48.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Server_48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Server_48x48.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Spy_48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Spy_48x48.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Images/Wall_48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/EndToEndEncryption/Images/Wall_48x48.png
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Server.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true"
2 | Title="End-To-End Encryption Web Messaging Example Server"
3 | Inherits="JocysCom.WebSites.WebApp.Scripts.Classes.Examples.EndToEndEncryption._Server"
4 | CodeFile="Server.aspx.cs" %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/EndToEndEncryption/Server.aspx.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Data;
3 | using System.Configuration;
4 | using System.Collections;
5 | using System.Web;
6 | using System.Web.Security;
7 | using System.Web.UI;
8 | using System.Web.UI.WebControls;
9 | using System.Web.UI.WebControls.WebParts;
10 | using System.Web.UI.HtmlControls;
11 |
12 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples.EndToEndEncryption
13 | {
14 | public partial class _Server : System.Web.UI.Page
15 | {
16 | protected void Page_Load(object sender, EventArgs e)
17 | {
18 | if (!Page.IsPostBack)
19 | {
20 | }
21 | }
22 | }
23 | }
--------------------------------------------------------------------------------
/Examples/Images/Icons/Administration.16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Administration.16x16.png
--------------------------------------------------------------------------------
/Examples/Images/Icons/Calendar_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Calendar_16x16.png
--------------------------------------------------------------------------------
/Examples/Images/Icons/Delete_Out.16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Delete_Out.16x16.png
--------------------------------------------------------------------------------
/Examples/Images/Icons/Delete_Over.16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Delete_Over.16x16.png
--------------------------------------------------------------------------------
/Examples/Images/Icons/Options-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Options-16x16.png
--------------------------------------------------------------------------------
/Examples/Images/Icons/Trace.16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/Icons/Trace.16x16.png
--------------------------------------------------------------------------------
/Examples/Images/JavaScriptAudio.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Images/JavaScriptAudio.gif
--------------------------------------------------------------------------------
/Examples/SiteExamples.Master.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web;
5 | using System.Web.UI;
6 | using System.Web.UI.WebControls;
7 |
8 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
9 | {
10 | public partial class SiteExamples : System.Web.UI.MasterPage
11 | {
12 | protected void Page_Load(object sender, EventArgs e)
13 | {
14 |
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/Examples/Styles/Images/BodyBackground.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/Styles/Images/BodyBackground.gif
--------------------------------------------------------------------------------
/Examples/System.BigInt.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="SiteExamples.Master"
2 | Title="System.BigInt"
3 | CodeFile="System.BigInt.aspx.cs"
4 | Inherits="JocysCom.WebSites.WebApp.Common.JsClasses.Examples.System_BigInt" %>
5 |
6 |
7 |
8 |
9 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/System.BitConverter.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="SiteExamples.Master"
2 | Title="System.BitConverter"
3 | CodeFile="System.BitConverter.aspx.cs"
4 | Inherits="Scripts.Classes.Examples.System_BitConverter" %>
5 |
6 |
7 |
8 |
9 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/System.FrameEmpty.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Frame
8 |
9 |
10 |
11 |
12 |
13 |
16 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/Examples/System.Globalization.KeyboardLayouts/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="../SiteExamples.Master"
2 | Title="System.Globalization.KeyboardLayouts"
3 | Inherits="JocysCom.WebSites.WebApp.Scripts.Classes.Examples.System_Globalization_KeyboardLayouts_Default"
4 | CodeBehind="Default.aspx.cs" %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Examples/System.Globalization.KeyboardLayouts/Default.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples {
11 |
12 |
13 | public partial class System_Globalization_KeyboardLayouts_Default {
14 |
15 | ///
16 | /// LogTextBox control.
17 | ///
18 | ///
19 | /// Auto-generated field.
20 | /// To modify move field declaration from designer file to code-behind file.
21 | ///
22 | protected global::System.Web.UI.WebControls.TextBox LogTextBox;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Examples/System.Security.Cryptography.SHA1.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="SiteExamples.Master" AutoEventWireup="true"
2 | Title="System.Security.Cryptography.SHA1"
3 | CodeFile="System.Security.Cryptography.SHA1.aspx.cs"
4 | Inherits="Scripts.Classes.Examples.System_Security_Cryptography_SHA1" %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/System.Security.Cryptography.SHA256.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="SiteExamples.Master" AutoEventWireup="true"
2 | Title="System.Security.Cryptography.SHA256"
3 | CodeBehind="System.Security.Cryptography.SHA256.aspx.cs"
4 | Inherits="Scripts.Classes.Examples.System_Security_Cryptography_SHA256" %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Examples/System.Security.Password.Frameset.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | System.Security.Password.Generator
7 |
14 |
15 |
16 |
17 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Examples/System.Security.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="SiteExamples.Master"
2 | Title="System.Security"
3 | CodeFile="System.Security.aspx.cs"
4 | Inherits="Scripts.Classes.Examples.System_Security" %>
5 |
6 |
7 |
8 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile.asmx:
--------------------------------------------------------------------------------
1 | <%@ WebService Language="C#" CodeBehind="System.Web.Mobile.asmx.cs" Class="JocysCom.WebSites.WebApp.Scripts.Classes.Examples.System_Web_Mobile" %>
2 |
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile/Card.cs:
--------------------------------------------------------------------------------
1 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
2 | {
3 | public class Card
4 | {
5 | public string Type { get; set; }
6 | public string Name { get; set; }
7 | public string Number { get; set; }
8 | public string ValidFrom { get; set; }
9 | public string ExpiresEnd { get; set; }
10 | public string EncryptedData { get; set; }
11 | public string EncryptedPass { get; set; }
12 | }
13 | }
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile/DataType.cs:
--------------------------------------------------------------------------------
1 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
2 | {
3 | public enum DataType
4 | {
5 | None = 0,
6 | GetRsaKey = 1,
7 | SendProfile = 2,
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile/KeyValue.cs:
--------------------------------------------------------------------------------
1 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
2 | {
3 | public class KeyValue
4 | {
5 |
6 | public KeyValue()
7 | {
8 | }
9 |
10 | public KeyValue(string key, string value)
11 | {
12 | _key = key;
13 | _value = value;
14 | }
15 |
16 | private string _key;
17 | public string Key
18 | {
19 | get { return _key; }
20 | set { _key = value; }
21 | }
22 |
23 | private object _value;
24 | public object Value
25 | {
26 | get { return _value; }
27 | set { _value = value; }
28 | }
29 |
30 | }
31 | }
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile/KeyValueList.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.Web.Script.Serialization;
3 | using System.Linq;
4 |
5 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
6 | {
7 | public class KeyValueList : List
8 | {
9 | public void Load(string value, bool decompress)
10 | {
11 | var a = Helper.Decode(value, decompress);
12 | this.AddRange(a);
13 | }
14 |
15 | public void SetValue(string key, object value)
16 | {
17 | var ser = new JavaScriptSerializer();
18 | var v = ser.Serialize(value);
19 | var kv = this.FirstOrDefault(x => x.Key == key);
20 | if (kv == null) this.Add(new KeyValue(key, v));
21 | else kv.Value = v;
22 | }
23 |
24 | public T GetValue(string key)
25 | {
26 | var ser = new JavaScriptSerializer();
27 | var s = (string)this.First(x => x.Key == key).Value;
28 | return ser.Deserialize(s);
29 | }
30 |
31 | }
32 | }
--------------------------------------------------------------------------------
/Examples/System.Web.Mobile/UserProfile.cs:
--------------------------------------------------------------------------------
1 | namespace JocysCom.WebSites.WebApp.Scripts.Classes.Examples
2 | {
3 | public class UserProfile
4 | {
5 | public string Username { get; set; }
6 | public string Password { get; set; }
7 | public string FirstName { get; set; }
8 | public string LastName { get; set; }
9 | public string Email { get; set; }
10 | public string Phone { get; set; }
11 | public string Notes { get; set; }
12 | }
13 | }
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ConsoleFrame.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | System.Web.UI.Console
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/Key.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/Key.psd
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-36x222.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-36x222.gif
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-36x36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-36x36.gif
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-36x54.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-36x54.gif
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-36x72.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-36x72.gif
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-36x91.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-36x91.gif
--------------------------------------------------------------------------------
/Examples/System.Web.UI.ShortKeys/Images/key1-54x73.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Examples/System.Web.UI.ShortKeys/Images/key1-54x73.gif
--------------------------------------------------------------------------------
/Examples/System.Windows.Forms.Keys.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="SiteExamples.Master"
2 | Title="System.Windows.Forms.Keys"
3 | CodeBehind="System.Windows.Forms.Keys.aspx.cs"
4 | Inherits="Scripts.Classes.Examples.System_Windows_Forms_Keys" %>
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Examples/System.Windows.Forms.Keys.aspx.designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | //
5 | // Changes to this file may cause incorrect behavior and will be lost if
6 | // the code is regenerated.
7 | //
8 | //------------------------------------------------------------------------------
9 |
10 | namespace Scripts.Classes.Examples {
11 |
12 |
13 | public partial class System_Windows_Forms_Keys {
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Images/Icons/ArrowRed_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/ArrowRed_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/CheckBox_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/CheckBox_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/CheckBox_Unchecked_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/CheckBox_Unchecked_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Check_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Check_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Check_Unchecked_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Check_Unchecked_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Delete_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Delete_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/PinRed_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/PinRed_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Star_Blue_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Star_Blue_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Star_Gray_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Star_Gray_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Star_Green_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Star_Green_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Star_Red_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Star_Red_16x16.png
--------------------------------------------------------------------------------
/Images/Icons/Star_Yellow_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Icons/Star_Yellow_16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/ActionHeaderBg.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/ActionHeaderBg.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/CheckBox-13x13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/CheckBox-13x13.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Delete.12x12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Delete.12x12.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FadeLightBlue-1x1200.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FadeLightBlue-1x1200.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FadeLightBlue-1x23.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FadeLightBlue-1x23.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FadeLightBlue-1x300.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FadeLightBlue-1x300.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FadeLightBlue-1x512.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FadeLightBlue-1x512.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Forward.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Forward.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottom.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottom.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomCenter_Dark.1x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomCenter_Dark.1x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomCenter_Light.1x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomCenter_Light.1x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomLeft_Dark.4x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomLeft_Dark.4x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomLeft_Light.4x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomLeft_Light.4x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomRight_Dark.4x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomRight_Dark.4x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameBottomRight_Light.4x5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameBottomRight_Light.4x5.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameLeft.4x1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameLeft.4x1.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameLeft.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameLeft.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameLeft_Dark.4x1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameLeft_Dark.4x1.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameLeft_Light.4x1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameLeft_Light.4x1.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameRight.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameRight.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameRight_Dark.4x1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameRight_Dark.4x1.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameRight_Light.4x1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameRight_Light.4x1.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopCenter_Out.1x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopCenter_Out.1x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopCenter_Over.1x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopCenter_Over.1x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopLeft_Dark.4x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopLeft_Dark.4x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopLeft_Light.4x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopLeft_Light.4x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopRight_Dark.4x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopRight_Dark.4x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/FrameTopRight_Light.4x19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/FrameTopRight_Light.4x19.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/MenuHeaderBg.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/MenuHeaderBg.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/MenuPanelBg.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/MenuPanelBg.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Menu_Down_Out.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Menu_Down_Out.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Menu_Up_Out.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Menu_Up_Out.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/ReplyToAll.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/ReplyToAll.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/RequestUpdate.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/RequestUpdate.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Reschedule.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Reschedule.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StatusBar.1x25.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StatusBar.1x25.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StatusBar.1x28.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StatusBar.1x28.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Strip.Down.Out.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Strip.Down.Out.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Strip.Down.Over.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Strip.Down.Over.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Strip.Up.Out.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Strip.Up.Out.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Strip.Up.Over.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Strip.Up.Over.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Strip.Up.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Strip.Up.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StripCenter_Over.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StripCenter_Over.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StripClose_Out.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StripClose_Out.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StripClose_Over.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StripClose_Over.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StripLeft_Out.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StripLeft_Out.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/StripRight_Out.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/StripRight_Out.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/TabStrip.Background.Dark.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/TabStrip.Background.Dark.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/TabStrip.Background.Light.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/TabStrip.Background.Light.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/TabStripCenter_Over.1x22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/TabStripCenter_Over.1x22.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/Toolbar.end.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/Toolbar.end.psd
--------------------------------------------------------------------------------
/Images/Interface/Office2003/close button.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/close button.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/fontforecolorpicker.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/fontforecolorpicker.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/fontforecolorpicker.over.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/fontforecolorpicker.over.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/input_fade.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/input_fade.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/print.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/print.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/reply.16x16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/reply.16x16.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/small frame.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/small frame.bmp
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.background.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.background.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.end.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.end.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.end.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.end.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.end2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.end2.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.endadvanced.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.endadvanced.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.start.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.start.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbar.horizontal.start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbar.horizontal.start.png
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbarbuttoncss.off.out.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbarbuttoncss.off.out.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbarbuttoncss.off.over.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbarbuttoncss.off.over.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbarbuttoncss.on.out.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbarbuttoncss.on.out.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2003/toolbarbuttoncss.on.over.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2003/toolbarbuttoncss.on.over.gif
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_BC-1x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_BC-1x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_BL-4x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_BL-4x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_BR-4x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_BR-4x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_MC-1x65.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_MC-1x65.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_ML-4x65.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_ML-4x65.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_MR-4x65.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_MR-4x65.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_TC-1x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_TC-1x4.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_TL-4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_TL-4x4.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Bar_TR-4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Bar_TR-4x4.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Button_Off_Over.1x20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Button_Off_Over.1x20.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Button_On_Out.1x20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Button_On_Out.1x20.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Button_On_Over.1x20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Button_On_Over.1x20.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/MenuHeaderBg-1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/MenuHeaderBg-1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/MenuPanelBg-1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/MenuPanelBg-1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Menu_Down_Out-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Menu_Down_Out-16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/Menu_Up_Out-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/Menu_Up_Out-16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripCenter_Off_Out.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripCenter_Off_Out.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripCenter_Off_Over.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripCenter_Off_Over.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripCenter_On_Out.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripCenter_On_Out.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripCenter_On_Over.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripCenter_On_Over.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripClose_Off_Out-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripClose_Off_Out-16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripClose_Off_Over-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripClose_Off_Over-16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripClose_On_Out-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripClose_On_Out-16x16.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripLeft_Off_Out.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripLeft_Off_Out.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripLeft_Off_Over.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripLeft_Off_Over.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripLeft_On_Out.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripLeft_On_Out.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripLeft_On_Over.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripLeft_On_Over.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/StripRight_Off_Out.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/StripRight_Off_Out.1x22.png
--------------------------------------------------------------------------------
/Images/Interface/Office2007/TabStripCenter_Over.1x22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Images/Interface/Office2007/TabStripCenter_Over.1x22.png
--------------------------------------------------------------------------------
/Includes/datatables/Images/sort_asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/datatables/Images/sort_asc.png
--------------------------------------------------------------------------------
/Includes/datatables/Images/sort_asc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/datatables/Images/sort_asc_disabled.png
--------------------------------------------------------------------------------
/Includes/datatables/Images/sort_both.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/datatables/Images/sort_both.png
--------------------------------------------------------------------------------
/Includes/datatables/Images/sort_desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/datatables/Images/sort_desc.png
--------------------------------------------------------------------------------
/Includes/datatables/Images/sort_desc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/datatables/Images/sort_desc_disabled.png
--------------------------------------------------------------------------------
/Includes/jquery-all-versions.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=https://code.jquery.com/jquery/
3 |
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_444444_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_444444_256x240.png
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_555555_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_555555_256x240.png
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_777620_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_777620_256x240.png
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_777777_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_777777_256x240.png
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_cc0000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_cc0000_256x240.png
--------------------------------------------------------------------------------
/Includes/jquery-ui/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/jquery-ui/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | TinyMCE examples
5 |
6 |
10 |
11 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/lists/image_list.js:
--------------------------------------------------------------------------------
1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2 | // There images will be displayed as a dropdown in all image dialogs if the "external_link_image_url"
3 | // option is defined in TinyMCE init.
4 |
5 | var tinyMCEImageList = new Array(
6 | // Name, URL
7 | ["Logo 1", "media/logo.jpg"],
8 | ["Logo 2 Over", "media/logo_over.jpg"]
9 | );
10 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/lists/link_list.js:
--------------------------------------------------------------------------------
1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2 | // There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url"
3 | // option is defined in TinyMCE init.
4 |
5 | var tinyMCELinkList = new Array(
6 | // Name, URL
7 | ["Moxiecode", "http://www.moxiecode.com"],
8 | ["Freshmeat", "http://www.freshmeat.com"],
9 | ["Sourceforge", "http://www.sourceforge.com"]
10 | );
11 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/lists/media_list.js:
--------------------------------------------------------------------------------
1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2 | // There flash movies will be displayed as a dropdown in all media dialog if the "media_external_list_url"
3 | // option is defined in TinyMCE init.
4 |
5 | var tinyMCEMediaList = [
6 | // Name, URL
7 | ["Some Flash", "media/sample.swf"],
8 | ["Some Quicktime", "media/sample.mov"],
9 | ["Some AVI", "media/sample.avi"],
10 | ["Some RealMedia", "media/sample.rm"],
11 | ["Some Shockwave", "media/sample.dcr"],
12 | ["Some Video", "media/sample.mp4"],
13 | ["Some FLV", "media/sample.flv"]
14 | ];
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/lists/template_list.js:
--------------------------------------------------------------------------------
1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2 | // There templates will be displayed as a dropdown in all media dialog if the "template_external_list_url"
3 | // option is defined in TinyMCE init.
4 |
5 | var tinyMCETemplateList = [
6 | // Name, URL, Description
7 | ["Simple snippet", "templates/snippet1.htm", "Simple HTML snippet."],
8 | ["Layout", "templates/layout1.htm", "HTML Layout."]
9 | ];
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/logo.jpg
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/logo_over.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/logo_over.jpg
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.avi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.avi
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.dcr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.dcr
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.flv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.flv
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.mov
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.ram:
--------------------------------------------------------------------------------
1 | http://streaming.uga.edu/samples/ayp_lan.rm
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.rm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.rm
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/media/sample.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/examples/media/sample.swf
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/menu.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Menu
5 |
8 |
9 |
10 | Examples
11 | Full featured
12 | Simple theme
13 | Skin support
14 | Word processor
15 | Custom formats
16 | Accessibility Options
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/templates/layout1.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Column 1 |
5 | Column 2 |
6 |
7 |
8 |
9 |
10 |
11 | Username: {$username} |
12 | Staffid: {$staffid} |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/examples/templates/snippet1.htm:
--------------------------------------------------------------------------------
1 | This is just some code.
2 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advhr/css/advhr.css:
--------------------------------------------------------------------------------
1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;}
2 | .panel_wrapper div.current {height:80px;}
3 | #width {width:50px; vertical-align:middle;}
4 | #width2 {width:50px; vertical-align:middle;}
5 | #size {width:100px;}
6 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.advhr_dlg',{size:"Height",noshade:"No Shadow",width:"Width",normal:"Normal",widthunits:"Units"});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advimage/css/advimage.css:
--------------------------------------------------------------------------------
1 | #src_list, #over_list, #out_list {width:280px;}
2 | .mceActionPanel {margin-top:7px;}
3 | .alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;}
4 | .checkbox {border:0;}
5 | .panel_wrapper div.current {height:305px;}
6 | #prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;}
7 | #align, #classlist {width:150px;}
8 | #width, #height {vertical-align:middle; width:50px; text-align:center;}
9 | #vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;}
10 | #class_list {width:180px;}
11 | input {width: 280px;}
12 | #constrain, #onmousemovecheck {width:auto;}
13 | #id, #dir, #lang, #usemap, #longdesc {width:200px;}
14 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.AdvancedImagePlugin",{init:function(a,b){a.addCommand("mceAdvImage",function(){if(a.dom.getAttrib(a.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}a.windowManager.open({file:b+"/image.htm",width:480+parseInt(a.getLang("advimage.delta_width",0)),height:385+parseInt(a.getLang("advimage.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("image",{title:"advimage.image_desc",cmd:"mceAdvImage"})},getInfo:function(){return{longname:"Advanced image",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advimage",tinymce.plugins.AdvancedImagePlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advimage/img/sample.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/advimage/img/sample.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advlink/css/advlink.css:
--------------------------------------------------------------------------------
1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;}
2 | .mceActionPanel {margin-top:7px;}
3 | .panel_wrapper div.current {height:320px;}
4 | #classlist, #title, #href {width:280px;}
5 | #popupurl, #popupname {width:200px;}
6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;}
7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;}
8 | #events_panel input {width:200px;}
9 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.AdvancedLinkPlugin",{init:function(a,b){this.editor=a;a.addCommand("mceAdvLink",function(){var c=a.selection;if(c.isCollapsed()&&!a.dom.getParent(c.getNode(),"A")){return}a.windowManager.open({file:b+"/link.htm",width:480+parseInt(a.getLang("advlink.delta_width",0)),height:400+parseInt(a.getLang("advlink.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("link",{title:"advlink.link_desc",cmd:"mceAdvLink"});a.addShortcut("ctrl+k","advlink.advlink_desc","mceAdvLink");a.onNodeChange.add(function(d,c,f,e){c.setDisabled("link",e&&f.nodeName!="A");c.setActive("link",f.nodeName=="A"&&!f.name)})},getInfo:function(){return{longname:"Advanced link",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advlink",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advlink",tinymce.plugins.AdvancedLinkPlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce);
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",usage:"Use left and right arrows to navigate.",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed"});
2 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/dialog.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {#example_dlg.title}
5 |
6 |
7 |
8 |
9 |
10 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.PluginManager.requireLangPack("example");tinymce.create("tinymce.plugins.ExamplePlugin",{init:function(a,b){a.addCommand("mceExample",function(){a.windowManager.open({file:b+"/dialog.htm",width:320+parseInt(a.getLang("example.delta_width",0)),height:120+parseInt(a.getLang("example.delta_height",0)),inline:1},{plugin_url:b,some_custom_arg:"custom arg"})});a.addButton("example",{title:"example.desc",cmd:"mceExample",image:b+"/img/example.gif"});a.onNodeChange.add(function(d,c,e){c.setActive("example",e.nodeName=="IMG")})},createControl:function(b,a){return null},getInfo:function(){return{longname:"Example plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example",version:"1.0"}}});tinymce.PluginManager.add("example",tinymce.plugins.ExamplePlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/img/example.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/img/example.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/js/dialog.js:
--------------------------------------------------------------------------------
1 | tinyMCEPopup.requireLangPack();
2 |
3 | var ExampleDialog = {
4 | init : function() {
5 | var f = document.forms[0];
6 |
7 | // Get the selected contents as text and place it in the input
8 | f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'});
9 | f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg');
10 | },
11 |
12 | insert : function() {
13 | // Insert the contents from the input into the document
14 | tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value);
15 | tinyMCEPopup.close();
16 | }
17 | };
18 |
19 | tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog);
20 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.example',{
2 | desc : 'This is just a template button'
3 | });
4 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.example_dlg',{
2 | title : 'This is just a example title'
3 | });
4 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.IESpell",{init:function(a,b){var c=this,d;if(!tinymce.isIE){return}c.editor=a;a.addCommand("mceIESpell",function(){try{d=new ActiveXObject("ieSpell.ieSpellExtension");d.CheckDocumentNode(a.getDoc().documentElement)}catch(f){if(f.number==-2146827859){a.windowManager.confirm(a.getLang("iespell.download"),function(e){if(e){window.open("http://www.iespell.com/download.php","ieSpellDownload","")}})}else{a.windowManager.alert("Error Loading ieSpell: Exception "+f.number)}}});a.addButton("iespell",{title:"iespell.iespell_desc",cmd:"mceIESpell"})},getInfo:function(){return{longname:"IESpell (IE Only)",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("iespell",tinymce.plugins.IESpell)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/media/moxieplayer.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/media/moxieplayer.swf
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?' ':" ")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(f.keyCode==9){f.preventDefault();d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking")}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/noneditable/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.noneditable',{ confirm_delete : 'The selection contains non-editable text. Are you sure you want to continue?' });
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/paste/js/pastetext.js:
--------------------------------------------------------------------------------
1 | tinyMCEPopup.requireLangPack();
2 |
3 | var PasteTextDialog = {
4 | init : function() {
5 | this.resize();
6 | },
7 |
8 | insert : function() {
9 | var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines;
10 |
11 | // Convert linebreaks into paragraphs
12 | if (document.getElementById('linebreaks').checked) {
13 | lines = h.split(/\r?\n/);
14 | if (lines.length > 1) {
15 | h = '';
16 | tinymce.each(lines, function(row) {
17 | h += '' + row + '
';
18 | });
19 | }
20 | }
21 |
22 | tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h});
23 | tinyMCEPopup.close();
24 | },
25 |
26 | resize : function() {
27 | var vp = tinyMCEPopup.dom.getViewPort(window), el;
28 |
29 | el = document.getElementById('content');
30 |
31 | el.style.width = (vp.w - 20) + 'px';
32 | el.style.height = (vp.h - 90) + 'px';
33 | }
34 | };
35 |
36 | tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog);
37 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/paste/pasteword.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | {#paste.paste_word_desc}
4 |
5 |
6 |
7 |
8 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/preview/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.Preview",{init:function(a,b){var d=this,c=tinymce.explode(a.settings.content_css);d.editor=a;tinymce.each(c,function(f,e){c[e]=a.documentBaseURI.toAbsolute(f)});a.addCommand("mcePreview",function(){a.windowManager.open({file:a.getParam("plugin_preview_pageurl",b+"/preview.html"),width:parseInt(a.getParam("plugin_preview_width","550")),height:parseInt(a.getParam("plugin_preview_height","600")),resizable:"yes",scrollbars:"yes",popup_css:c?c.join(","):a.baseURI.toAbsolute("themes/"+a.settings.theme+"/skins/"+a.settings.skin+"/content.css"),inline:a.getParam("plugin_preview_inline",1)},{base:a.documentBaseURI.getURI()})});a.addButton("preview",{title:"preview.preview_desc",cmd:"mcePreview"})},getInfo:function(){return{longname:"Preview",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/preview",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("preview",tinymce.plugins.Preview)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/preview/example.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
18 | Example of a custom preview page
19 |
20 |
21 |
22 | Editor contents:
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/preview/preview.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
10 | {#preview.preview_desc}
11 |
12 |
13 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/print/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js:
--------------------------------------------------------------------------------
1 | /**
2 | * editor_plugin_src.js
3 | *
4 | * Copyright 2009, Moxiecode Systems AB
5 | * Released under LGPL License.
6 | *
7 | * License: http://tinymce.moxiecode.com/license
8 | * Contributing: http://tinymce.moxiecode.com/contributing
9 | */
10 |
11 | (function() {
12 | tinymce.create('tinymce.plugins.Print', {
13 | init : function(ed, url) {
14 | ed.addCommand('mcePrint', function() {
15 | ed.getWin().print();
16 | });
17 |
18 | ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'});
19 | },
20 |
21 | getInfo : function() {
22 | return {
23 | longname : 'Print',
24 | author : 'Moxiecode Systems AB',
25 | authorurl : 'http://tinymce.moxiecode.com',
26 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print',
27 | version : tinymce.majorVersion + "." + tinymce.minorVersion
28 | };
29 | }
30 | });
31 |
32 | // Register plugin
33 | tinymce.PluginManager.add('print', tinymce.plugins.Print);
34 | })();
35 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css:
--------------------------------------------------------------------------------
1 | .panel_wrapper {height:85px;}
2 | .panel_wrapper div.current {height:85px;}
3 |
4 | /* IE */
5 | * html .panel_wrapper {height:100px;}
6 | * html .panel_wrapper div.current {height:100px;}
7 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){window.focus();a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/css/content.css:
--------------------------------------------------------------------------------
1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;}
2 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/style/css/props.css:
--------------------------------------------------------------------------------
1 | #text_font {width:250px;}
2 | #text_size {width:70px;}
3 | .mceAddSelectValue {background:#DDD;}
4 | select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {width:70px;}
5 | #box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #positioning_width, #positioning_height, #positioning_zindex {width:70px;}
6 | #positioning_placement_top, #positioning_placement_right, #positioning_placement_bottom, #positioning_placement_left {width:70px;}
7 | #positioning_clip_top, #positioning_clip_right, #positioning_clip_bottom, #positioning_clip_left {width:70px;}
8 | .panel_toggle_insert_span {padding-top:10px;}
9 | .panel_wrapper div.current {padding-top:10px;height:230px;}
10 | .delim {border-left:1px solid gray;}
11 | .tdelim {border-bottom:1px solid gray;}
12 | #block_display {width:145px;}
13 | #list_type {width:115px;}
14 | .disabled {background:#EEE;}
15 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/style/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.StylePlugin",{init:function(a,b){a.addCommand("mceStyleProps",function(){var c=false;var f=a.selection.getSelectedBlocks();var d=[];if(f.length===1){d.push(a.selection.getNode().style.cssText)}else{tinymce.each(f,function(g){d.push(a.dom.getAttrib(g,"style"))});c=true}a.windowManager.open({file:b+"/props.htm",width:480+parseInt(a.getLang("style.delta_width",0)),height:340+parseInt(a.getLang("style.delta_height",0)),inline:1},{applyStyleToBlocks:c,plugin_url:b,styles:d})});a.addCommand("mceSetElementStyle",function(d,c){if(e=a.selection.getNode()){a.dom.setAttrib(e,"style",c);a.execCommand("mceRepaint")}});a.onNodeChange.add(function(d,c,f){c.setDisabled("styleprops",f.nodeName==="BODY")});a.addButton("styleprops",{title:"style.desc",cmd:"mceStyleProps"})},getInfo:function(){return{longname:"Style",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("style",tinymce.plugins.StylePlugin)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/style/readme.txt:
--------------------------------------------------------------------------------
1 | Edit CSS Style plug-in notes
2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 | Unlike WYSIWYG editor functionality that operates only on the selected text,
4 | typically by inserting new HTML elements with the specified styles.
5 | This plug-in operates on the HTML blocks surrounding the selected text.
6 | No new HTML elements are created.
7 |
8 | This plug-in only operates on the surrounding blocks and not the nearest
9 | parent node. This means that if a block encapsulates a node,
10 | e.g text
, then only the styles in the block are
11 | recognized, not those in the span.
12 |
13 | When selecting text that includes multiple blocks at the same level (peers),
14 | this plug-in accumulates the specified styles in all of the surrounding blocks
15 | and populates the dialogue checkboxes accordingly. There is no differentiation
16 | between styles set in all the blocks versus styles set in some of the blocks.
17 |
18 | When the [Update] or [Apply] buttons are pressed, the styles selected in the
19 | checkboxes are applied to all blocks that surround the selected text.
20 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/table/css/cell.css:
--------------------------------------------------------------------------------
1 | /* CSS file for cell dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 200px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #action {
12 | margin-bottom: 3px;
13 | }
14 |
15 | #class {
16 | width: 150px;
17 | }
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/table/css/row.css:
--------------------------------------------------------------------------------
1 | /* CSS file for row dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 200px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #action {
12 | margin-bottom: 3px;
13 | }
14 |
15 | #rowtype,#align,#valign,#class,#height {
16 | width: 150px;
17 | }
18 |
19 | #height {
20 | width: 50px;
21 | }
22 |
23 | .col2 {
24 | padding-left: 20px;
25 | }
26 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/table/css/table.css:
--------------------------------------------------------------------------------
1 | /* CSS file for table dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 245px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #class {
12 | width: 150px;
13 | }
14 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/table/js/merge_cells.js:
--------------------------------------------------------------------------------
1 | tinyMCEPopup.requireLangPack();
2 |
3 | var MergeCellsDialog = {
4 | init : function() {
5 | var f = document.forms[0];
6 |
7 | f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1);
8 | f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1);
9 | },
10 |
11 | merge : function() {
12 | var func, f = document.forms[0];
13 |
14 | tinyMCEPopup.restoreSelection();
15 |
16 | func = tinyMCEPopup.getWindowArg('onaction');
17 |
18 | func({
19 | cols : f.numcols.value,
20 | rows : f.numrows.value
21 | });
22 |
23 | tinyMCEPopup.close();
24 | }
25 | };
26 |
27 | tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog);
28 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/template/blank.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | blank_page
4 |
5 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/template/css/template.css:
--------------------------------------------------------------------------------
1 | #frmbody {
2 | padding: 10px;
3 | background-color: #FFF;
4 | border: 1px solid #CCC;
5 | }
6 |
7 | .frmRow {
8 | margin-bottom: 10px;
9 | }
10 |
11 | #templatesrc {
12 | border: none;
13 | width: 320px;
14 | height: 240px;
15 | }
16 |
17 | .title {
18 | padding-bottom: 5px;
19 | }
20 |
21 | .mceActionPanel {
22 | padding-top: 5px;
23 | }
24 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Insert Predefined Template Content",select:"Select a Template",preview:"Preview",warning:"Warning: Updating a template with a different one may cause data loss.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.VisualBlocks",{init:function(a,b){var c;if(!window.NodeList){return}a.addCommand("mceVisualBlocks",function(){var e=a.dom,d;if(!c){c=e.uniqueId();d=e.create("link",{id:c,rel:"stylesheet",href:b+"/css/visualblocks.css"});a.getDoc().getElementsByTagName("head")[0].appendChild(d)}else{d=e.get(c);d.disabled=!d.disabled}a.controlManager.setActive("visualblocks",!d.disabled)});a.addButton("visualblocks",{title:"visualblocks.desc",cmd:"mceVisualBlocks"});a.onInit.add(function(){if(a.settings.visualblocks_default_state){a.execCommand("mceVisualBlocks",false,null,{skip_focus:true})}})},getInfo:function(){return{longname:"Visual blocks",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualblocks",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("visualblocks",tinymce.plugins.VisualBlocks)})();
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css:
--------------------------------------------------------------------------------
1 | .panel_wrapper div.current {
2 | height: 290px;
3 | }
4 |
5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey {
6 | width: 200px;
7 | }
8 |
9 | #events_panel input {
10 | width: 200px;
11 | }
12 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css:
--------------------------------------------------------------------------------
1 | input.field, select.field {width:200px;}
2 | input.picker {width:179px; margin-left: 5px;}
3 | input.disabled {border-color:#F2F2F2;}
4 | img.picker {vertical-align:text-bottom; cursor:pointer;}
5 | h1 {padding: 0 0 5px 0;}
6 | .panel_wrapper div.current {height:160px;}
7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;}
8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;}
9 | #datetime {width:180px;}
10 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js:
--------------------------------------------------------------------------------
1 | /**
2 | * abbr.js
3 | *
4 | * Copyright 2009, Moxiecode Systems AB
5 | * Released under LGPL License.
6 | *
7 | * License: http://tinymce.moxiecode.com/license
8 | * Contributing: http://tinymce.moxiecode.com/contributing
9 | */
10 |
11 | function init() {
12 | SXE.initElementDialog('abbr');
13 | if (SXE.currentAction == "update") {
14 | SXE.showRemoveButton();
15 | }
16 | }
17 |
18 | function insertAbbr() {
19 | SXE.insertElement('abbr');
20 | tinyMCEPopup.close();
21 | }
22 |
23 | function removeAbbr() {
24 | SXE.removeElement('abbr');
25 | tinyMCEPopup.close();
26 | }
27 |
28 | tinyMCEPopup.onInit.add(init);
29 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js:
--------------------------------------------------------------------------------
1 | /**
2 | * acronym.js
3 | *
4 | * Copyright 2009, Moxiecode Systems AB
5 | * Released under LGPL License.
6 | *
7 | * License: http://tinymce.moxiecode.com/license
8 | * Contributing: http://tinymce.moxiecode.com/contributing
9 | */
10 |
11 | function init() {
12 | SXE.initElementDialog('acronym');
13 | if (SXE.currentAction == "update") {
14 | SXE.showRemoveButton();
15 | }
16 | }
17 |
18 | function insertAcronym() {
19 | SXE.insertElement('acronym');
20 | tinyMCEPopup.close();
21 | }
22 |
23 | function removeAcronym() {
24 | SXE.removeElement('acronym');
25 | tinyMCEPopup.close();
26 | }
27 |
28 | tinyMCEPopup.onInit.add(init);
29 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js:
--------------------------------------------------------------------------------
1 | /**
2 | * cite.js
3 | *
4 | * Copyright 2009, Moxiecode Systems AB
5 | * Released under LGPL License.
6 | *
7 | * License: http://tinymce.moxiecode.com/license
8 | * Contributing: http://tinymce.moxiecode.com/contributing
9 | */
10 |
11 | function init() {
12 | SXE.initElementDialog('cite');
13 | if (SXE.currentAction == "update") {
14 | SXE.showRemoveButton();
15 | }
16 | }
17 |
18 | function insertCite() {
19 | SXE.insertElement('cite');
20 | tinyMCEPopup.close();
21 | }
22 |
23 | function removeCite() {
24 | SXE.removeElement('cite');
25 | tinyMCEPopup.close();
26 | }
27 |
28 | tinyMCEPopup.onInit.add(init);
29 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.xhtmlxtras_dlg',{"attribs_title":"Insert/Edit Attributes","option_rtl":"Right to Left","option_ltr":"Left to Right","insert_date":"Insert Current Date/Time",remove:"Remove","title_cite_element":"Citation Element","title_abbr_element":"Abbreviation Element","title_acronym_element":"Acronym Element","title_del_element":"Deletion Element","title_ins_element":"Insertion Element","fieldset_events_tab":"Element Events","fieldset_attrib_tab":"Element Attributes","fieldset_general_tab":"General Settings","events_tab":"Events","attrib_tab":"Attributes","general_tab":"General","attribute_attrib_tab":"Attributes","attribute_events_tab":"Events","attribute_label_accesskey":"AccessKey","attribute_label_tabindex":"TabIndex","attribute_label_langcode":"Language","attribute_option_rtl":"Right to Left","attribute_option_ltr":"Left to Right","attribute_label_langdir":"Text Direction","attribute_label_datetime":"Date/Time","attribute_label_cite":"Cite","attribute_label_style":"Style","attribute_label_class":"Class","attribute_label_id":"ID","attribute_label_title":"Title"});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/flash.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/flash.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/icons.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/iframe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/iframe.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/trans.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/trans.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/video.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/video.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css:
--------------------------------------------------------------------------------
1 | /* Silver */
2 | .o2k7SkinSilver .mceToolbar .mceToolbarStart span, .o2k7SkinSilver .mceButton, .o2k7SkinSilver .mceSplitButton, .o2k7SkinSilver .mceSeparator, .o2k7SkinSilver .mceSplitButton a.mceOpen, .o2k7SkinSilver .mceListBox a.mceOpen {background-image:url(img/button_bg_silver.png)}
3 | .o2k7SkinSilver td.mceToolbar, .o2k7SkinSilver td.mceStatusbar, .o2k7SkinSilver .mceMenuItemTitle a {background:#eee}
4 | .o2k7SkinSilver .mceListBox .mceText {background:#FFF}
5 | .o2k7SkinSilver .mceExternalToolbar, .o2k7SkinSilver .mceListBox .mceText, .o2k7SkinSilver div.mceMenu, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceFirst td, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceLast td, .o2k7SkinSilver .mceIframeContainer {border-color: #bbb}
6 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/img/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/img/icons.gif
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"});
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/skins/default/content.css:
--------------------------------------------------------------------------------
1 | body, td, pre {
2 | font-family: Verdana, Arial, Helvetica, sans-serif;
3 | font-size: 10px;
4 | }
5 |
6 | body {
7 | background-color: #FFFFFF;
8 | }
9 |
10 | .mceVisualAid {
11 | border: 1px dashed #BBBBBB;
12 | }
13 |
14 | /* MSIE specific */
15 |
16 | * html body {
17 | scrollbar-3dlight-color: #F0F0EE;
18 | scrollbar-arrow-color: #676662;
19 | scrollbar-base-color: #F0F0EE;
20 | scrollbar-darkshadow-color: #DDDDDD;
21 | scrollbar-face-color: #E0E0DD;
22 | scrollbar-highlight-color: #F0F0EE;
23 | scrollbar-shadow-color: #F0F0EE;
24 | scrollbar-track-color: #F5F5F5;
25 | }
26 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css:
--------------------------------------------------------------------------------
1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
2 |
3 | body {background: #FFF;}
4 | .mceVisualAid {border: 1px dashed #BBB;}
5 |
6 | /* IE */
7 |
8 | * html body {
9 | scrollbar-3dlight-color: #F0F0EE;
10 | scrollbar-arrow-color: #676662;
11 | scrollbar-base-color: #F0F0EE;
12 | scrollbar-darkshadow-color: #DDDDDD;
13 | scrollbar-face-color: #E0E0DD;
14 | scrollbar-highlight-color: #F0F0EE;
15 | scrollbar-shadow-color: #F0F0EE;
16 | scrollbar-track-color: #F5F5F5;
17 | }
18 |
--------------------------------------------------------------------------------
/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Includes/tiny_mce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
--------------------------------------------------------------------------------
/JsClasses.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsClasses", "JsClasses.csproj", "{984C5CC3-6584-478E-8200-E3875769D386}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {984C5CC3-6584-478E-8200-E3875769D386}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {984C5CC3-6584-478E-8200-E3875769D386}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {984C5CC3-6584-478E-8200-E3875769D386}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {984C5CC3-6584-478E-8200-E3875769D386}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Security Policy
2 |
3 | ## Reporting a Vulnerability
4 |
5 | Please report (suspected) security vulnerabilities to
6 | **[support@jocys.com](mailto:support@jocys.com)**
7 |
--------------------------------------------------------------------------------
/System.Linq.debug.js:
--------------------------------------------------------------------------------
1 | //=============================================================================
2 | // Jocys.com JavaScript.NET Classes (In C# Object Oriented Style)
3 | // Created by Evaldas Jocys
4 | //=============================================================================
5 | ///
6 | //=============================================================================
7 | // Namespaces
8 | //-----------------------------------------------------------------------------
9 | //
10 | // System.Linq
11 | //
12 | //-----------------------------------------------------------------------------
13 | System.Type.RegisterNamespace("System.Linq");
14 | //=============================================================================
15 |
16 | //==============================================================================
17 | // END
18 | //------------------------------------------------------------------------------
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/Apply-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/Apply-16x16.png
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/Cancel-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/Cancel-16x16.png
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/OK-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/OK-16x16.png
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/PassGen-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/PassGen-16x16.png
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/PassGen-48x48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/PassGen-48x48.gif
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/PassGen-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/PassGen-48x48.png
--------------------------------------------------------------------------------
/System.Security.Password/Images/Icons/PassGen.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/Icons/PassGen.ico
--------------------------------------------------------------------------------
/System.Security.Password/Images/SystemSecurityPasswordGeneratorGui.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Security.Password/Images/SystemSecurityPasswordGeneratorGui.gif
--------------------------------------------------------------------------------
/System.Web.Extensions/Readme.txt:
--------------------------------------------------------------------------------
1 | http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjax.debug.js
2 | http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxTimer.debug.js
3 | http://ajax.microsoft.com/ajax/4.0/1/MicrosoftAjaxWebForms.debug.js
4 |
--------------------------------------------------------------------------------
/System.Web.UI.ConsoleFrame.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | System.Web.UI.Console
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/F.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/F.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Fminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Fminus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Fplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Fplus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/I.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/I.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Icons/Folder_false-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Icons/Folder_false-16x16.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Icons/Folder_true-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Icons/Folder_true-16x16.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/L.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/L.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Lminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Lminus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Lplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Lplus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/R.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/R.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Rminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Rminus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Rplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Rplus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/T.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/T.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Tminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Tminus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/Tplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/Tplus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/minus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/minus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/Images/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/System.Web.UI.TreeView/Images/plus.png
--------------------------------------------------------------------------------
/System.Web.UI.TreeView/System.Web.UI.TreeView.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
11 |
12 |
13 |
20 |
21 |
27 |
28 |
31 |
--------------------------------------------------------------------------------
/Tools/compact-dos.bat:
--------------------------------------------------------------------------------
1 | cd ..
2 | Tools\compact.bat %cd%\
3 | cd Tools
--------------------------------------------------------------------------------
/Tools/csstidy.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Tools/csstidy.exe
--------------------------------------------------------------------------------
/Tools/jsmin.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JocysCom/JsClasses/11e7da4cafb1726555fb0a7aacab57a5fb36e563/Tools/jsmin.exe
--------------------------------------------------------------------------------