├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── WebRAS.sln └── WebSite4 ├── App_Code ├── CredMngr.vb └── RAS.vb ├── Bin ├── IKVM.AWT.WinForms.dll ├── IKVM.OpenJDK.Beans.dll ├── IKVM.OpenJDK.Charsets.dll ├── IKVM.OpenJDK.Corba.dll ├── IKVM.OpenJDK.Core.dll ├── IKVM.OpenJDK.Management.dll ├── IKVM.OpenJDK.Media.dll ├── IKVM.OpenJDK.Misc.dll ├── IKVM.OpenJDK.Naming.dll ├── IKVM.OpenJDK.Remoting.dll ├── IKVM.OpenJDK.Security.dll ├── IKVM.OpenJDK.SwingAWT.dll ├── IKVM.OpenJDK.Text.dll ├── IKVM.OpenJDK.Util.dll ├── IKVM.OpenJDK.XML.API.dll ├── IKVM.Runtime.JNI.dll ├── IKVM.Runtime.dll ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.dll.refresh ├── Newtonsoft.Json.xml └── _1c.dll ├── Content ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── cred.png └── theme.default.css ├── Default.aspx ├── Default.aspx.vb ├── Scripts ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.9.1.intellisense.js ├── jquery-1.9.1.js ├── jquery-1.9.1.min.js ├── jquery-1.9.1.min.map ├── jquery-ui │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ └── jquery-ui.theme.min.css ├── jquery.tablesorter.js └── jquery.tablesorter.widgets.js ├── Web.config ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── ib.aspx ├── ib.aspx.vb ├── packages.config └── vwd.webinfo /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | 28 | # MSTest test Results 29 | [Tt]est[Rr]esult*/ 30 | [Bb]uild[Ll]og.* 31 | 32 | # NUNIT 33 | *.VisualState.xml 34 | TestResult.xml 35 | 36 | # Build Results of an ATL Project 37 | [Dd]ebugPS/ 38 | [Rr]eleasePS/ 39 | dlldata.c 40 | 41 | # DNX 42 | project.lock.json 43 | artifacts/ 44 | 45 | *_i.c 46 | *_p.c 47 | *_i.h 48 | *.ilk 49 | *.meta 50 | *.obj 51 | *.pch 52 | *.pdb 53 | *.pgc 54 | *.pgd 55 | *.rsp 56 | *.sbr 57 | *.tlb 58 | *.tli 59 | *.tlh 60 | *.tmp 61 | *.tmp_proj 62 | *.log 63 | *.vspscc 64 | *.vssscc 65 | .builds 66 | *.pidb 67 | *.svclog 68 | *.scc 69 | 70 | # Chutzpah Test files 71 | _Chutzpah* 72 | 73 | # Visual C++ cache files 74 | ipch/ 75 | *.aps 76 | *.ncb 77 | *.opensdf 78 | *.sdf 79 | *.cachefile 80 | 81 | # Visual Studio profiler 82 | *.psess 83 | *.vsp 84 | *.vspx 85 | 86 | # TFS 2012 Local Workspace 87 | $tf/ 88 | 89 | # Guidance Automation Toolkit 90 | *.gpState 91 | 92 | # ReSharper is a .NET coding add-in 93 | _ReSharper*/ 94 | *.[Rr]e[Ss]harper 95 | *.DotSettings.user 96 | 97 | # JustCode is a .NET coding add-in 98 | .JustCode 99 | 100 | # TeamCity is a build add-in 101 | _TeamCity* 102 | 103 | # DotCover is a Code Coverage Tool 104 | *.dotCover 105 | 106 | # NCrunch 107 | _NCrunch_* 108 | .*crunch*.local.xml 109 | 110 | # MightyMoose 111 | *.mm.* 112 | AutoTest.Net/ 113 | 114 | # Web workbench (sass) 115 | .sass-cache/ 116 | 117 | # Installshield output folder 118 | [Ee]xpress/ 119 | 120 | # DocProject is a documentation generator add-in 121 | DocProject/buildhelp/ 122 | DocProject/Help/*.HxT 123 | DocProject/Help/*.HxC 124 | DocProject/Help/*.hhc 125 | DocProject/Help/*.hhk 126 | DocProject/Help/*.hhp 127 | DocProject/Help/Html2 128 | DocProject/Help/html 129 | 130 | # Click-Once directory 131 | publish/ 132 | 133 | # Publish Web Output 134 | *.[Pp]ublish.xml 135 | *.azurePubxml 136 | ## TODO: Comment the next line if you want to checkin your 137 | ## web deploy settings but do note that will include unencrypted 138 | ## passwords 139 | #*.pubxml 140 | 141 | *.publishproj 142 | 143 | # NuGet Packages 144 | *.nupkg 145 | # The packages folder can be ignored because of Package Restore 146 | **/packages/* 147 | # except build/, which is used as an MSBuild target. 148 | !**/packages/build/ 149 | # Uncomment if necessary however generally it will be regenerated when needed 150 | #!**/packages/repositories.config 151 | 152 | # Windows Azure Build Output 153 | csx/ 154 | *.build.csdef 155 | 156 | # Windows Store app package directory 157 | AppPackages/ 158 | 159 | # Visual Studio cache files 160 | # files ending in .cache can be ignored 161 | *.[Cc]ache 162 | # but keep track of directories ending in .cache 163 | !*.[Cc]ache/ 164 | 165 | # Others 166 | ClientBin/ 167 | [Ss]tyle[Cc]op.* 168 | ~$* 169 | *~ 170 | *.dbmdl 171 | *.dbproj.schemaview 172 | *.pfx 173 | *.publishsettings 174 | node_modules/ 175 | orleans.codegen.cs 176 | 177 | # RIA/Silverlight projects 178 | Generated_Code/ 179 | 180 | # Backup & report files from converting an old project file 181 | # to a newer Visual Studio version. Backup files are not needed, 182 | # because we have git ;-) 183 | _UpgradeReport_Files/ 184 | Backup*/ 185 | UpgradeLog*.XML 186 | UpgradeLog*.htm 187 | 188 | # SQL Server files 189 | *.mdf 190 | *.ldf 191 | 192 | # Business Intelligence projects 193 | *.rdl.data 194 | *.bim.layout 195 | *.bim_*.settings 196 | 197 | # Microsoft Fakes 198 | FakesAssemblies/ 199 | 200 | # Node.js Tools for Visual Studio 201 | .ntvs_analysis.dat 202 | 203 | # Visual Studio 6 build log 204 | *.plg 205 | 206 | # Visual Studio 6 workspace options file 207 | *.opt 208 | 209 | # LightSwitch generated files 210 | GeneratedArtifacts/ 211 | _Pvt_Extensions/ 212 | ModelManifest.xml 213 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Альтернативная Консоль администрирования сервера 1С 8.3

2 | Подробности в публикации - http://infostart.ru/public/414870/ 3 | 4 | Функция добавления сервера пока не реализована. 5 | Скорректируйте список своих серверов в процедуре "Default.aspx.vb -> SetServerListByDefault_Click". 6 | Этот код вызывается при нажатии кнопки "Установить список серверов по умолчанию" на начальной странице. 7 | -------------------------------------------------------------------------------- /WebRAS.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "WebSite4", "WebSite4\", "{7EA00C4B-D64B-45CC-B74B-305387886B56}" 7 | ProjectSection(WebsiteProperties) = preProject 8 | TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.5" 9 | Debug.AspNetCompiler.VirtualPath = "/localhost_59043" 10 | Debug.AspNetCompiler.PhysicalPath = "WebSite4\" 11 | Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_59043\" 12 | Debug.AspNetCompiler.Updateable = "true" 13 | Debug.AspNetCompiler.ForceOverwrite = "true" 14 | Debug.AspNetCompiler.FixedNames = "false" 15 | Debug.AspNetCompiler.Debug = "True" 16 | Release.AspNetCompiler.VirtualPath = "/localhost_59043" 17 | Release.AspNetCompiler.PhysicalPath = "WebSite4\" 18 | Release.AspNetCompiler.TargetPath = "PrecompiledWeb\localhost_59043\" 19 | Release.AspNetCompiler.Updateable = "true" 20 | Release.AspNetCompiler.ForceOverwrite = "true" 21 | Release.AspNetCompiler.FixedNames = "false" 22 | Release.AspNetCompiler.Debug = "False" 23 | VWDPort = "59043" 24 | SlnRelativePath = "WebSite4\" 25 | EndProjectSection 26 | EndProject 27 | Global 28 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 29 | Debug|Any CPU = Debug|Any CPU 30 | Release|Any CPU = Release|Any CPU 31 | EndGlobalSection 32 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 33 | {7EA00C4B-D64B-45CC-B74B-305387886B56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 34 | {7EA00C4B-D64B-45CC-B74B-305387886B56}.Debug|Any CPU.Build.0 = Debug|Any CPU 35 | {7EA00C4B-D64B-45CC-B74B-305387886B56}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 36 | {7EA00C4B-D64B-45CC-B74B-305387886B56}.Release|Any CPU.ActiveCfg = Debug|Any CPU 37 | {7EA00C4B-D64B-45CC-B74B-305387886B56}.Release|Any CPU.Build.0 = Debug|Any CPU 38 | EndGlobalSection 39 | GlobalSection(SolutionProperties) = preSolution 40 | HideSolutionNode = FALSE 41 | EndGlobalSection 42 | EndGlobal 43 | -------------------------------------------------------------------------------- /WebSite4/App_Code/CredMngr.vb: -------------------------------------------------------------------------------- 1 | Imports Newtonsoft.Json 2 | 3 | Public Module CredMngr 4 | 5 | Structure Credential 6 | ' Dim ClusterID As String 7 | ' Dim InfoBaseID As String 8 | Dim ObjectID As String 9 | Dim Username As String 10 | Dim Password As String 11 | End Structure 12 | 13 | Private Function GetSavedCredential(Request As HttpRequest, ObjectID As String) As Credential 14 | 15 | Dim Cred = New Credential 16 | Cred.Username = "" 17 | Cred.Password = "" 18 | Cred.ObjectID = ObjectID 19 | 20 | Try 21 | 22 | Dim CredentialString As HttpCookie = Request.Cookies.Get("Credential_" + ObjectID) 23 | 24 | Dim RezultStringJSON As FormsAuthenticationTicket = FormsAuthentication.Decrypt(CredentialString.Value) 25 | 26 | Cred = JsonConvert.DeserializeObject(Of Credential)(RezultStringJSON.UserData) 27 | 28 | Catch ex As Exception 29 | 30 | End Try 31 | 32 | Return Cred 33 | 34 | End Function 35 | 36 | Public Function CredentialsForObjectExists(Request As HttpRequest, ObjectID As String) As Boolean 37 | 38 | Try 39 | 40 | Dim CredentialString As HttpCookie = Request.Cookies.Get("Credential_" + ObjectID) 41 | 42 | Dim RezultStringJSON As FormsAuthenticationTicket = FormsAuthentication.Decrypt(CredentialString.Value) 43 | 44 | Dim Cred = JsonConvert.DeserializeObject(Of Credential)(RezultStringJSON.UserData) 45 | 46 | Return True 47 | 48 | Catch ex As Exception 49 | 50 | End Try 51 | 52 | Return False 53 | 54 | End Function 55 | 56 | 57 | 58 | Public Function GetUserNameForInfobase(Request As HttpRequest, ClusterID As String, InfoBaseID As String, 59 | ByRef UserName As String, ByRef Password As String) As Boolean 60 | 61 | Try 62 | 63 | Dim Cred = GetSavedCredential(Request, InfoBaseID) 64 | 65 | If Not String.IsNullOrEmpty(Cred.Username) Then 66 | UserName = Cred.Username 67 | Password = Cred.Password 68 | End If 69 | 70 | Catch ex As Exception 71 | 72 | Dim a = ex.Message 73 | 74 | Return False 75 | 76 | End Try 77 | 78 | Return True 79 | 80 | End Function 81 | 82 | Public Function SaveUserNameForInfobase(Request As HttpRequest, Response As HttpResponse, ClusterID As String, 83 | InfoBaseID As String, UserName As String, Password As String) As Boolean 84 | 85 | Try 86 | 87 | Dim Cred = GetSavedCredential(Request, InfoBaseID) 88 | 89 | Cred.Username = UserName 90 | Cred.Password = Password 91 | 92 | Dim JSONSetting = JsonConvert.SerializeObject(Cred) 93 | 94 | Dim ticket As FormsAuthenticationTicket = New FormsAuthenticationTicket(1, "Credentials", DateTime.Now, DateTime.MaxValue, True, JSONSetting) 95 | 96 | Dim cookie As HttpCookie = New HttpCookie("Credential_" + Cred.ObjectID, FormsAuthentication.Encrypt(ticket)) 97 | 98 | Response.Cookies.Add(cookie) 99 | 100 | Catch ex As Exception 101 | 102 | Dim a = ex.Message 103 | 104 | Return False 105 | 106 | End Try 107 | 108 | Return True 109 | 110 | End Function 111 | 112 | 113 | End Module 114 | -------------------------------------------------------------------------------- /WebSite4/App_Code/RAS.vb: -------------------------------------------------------------------------------- 1 | Imports com._1c.v8.ibis 2 | 3 | 4 | Public Module RAS 5 | 6 | Enum ErrorCodes 7 | AuthError 8 | End Enum 9 | 10 | Class Process 11 | Public ID As java.util.UUID 12 | Public isEnable As Boolean = False 13 | Public Use As Boolean = False 14 | Public Running As Boolean = False 15 | Public StartedAt As DateTime 16 | Public PID As String 17 | Public MainPort As Integer 18 | Public Memory As Integer 19 | Public LicensePresentation As String 20 | End Class 21 | 22 | Class Connection 23 | Public ID As java.util.UUID 24 | Public InfobaseID As java.util.UUID 25 | Public InfoBaseName As String 26 | Public WorkingProcessId As java.util.UUID 27 | Public ConnId As Integer 28 | Public SessionNumber As Integer 29 | Public Application As String 30 | Public Host As String 31 | Public BlockedByLs As Integer 32 | Public ConnectedAt As DateTime 33 | End Class 34 | 35 | Class UserSession 36 | Public UserName As String 37 | Public StartedAt As DateTime 38 | Public LastActiveAt As DateTime 39 | Public ID As java.util.UUID 40 | Public StringID As String 41 | Public InfoBaseID As String 42 | Public InfoBaseName As String 43 | Public AppName As String 44 | Public LicensePresentation As String 45 | End Class 46 | 47 | Structure RequestResult 48 | Dim Success As Boolean 49 | Dim Description As String 50 | Dim ErrorCode As ErrorCodes 51 | Dim InfoBase As InfoBase 52 | End Structure 53 | 54 | Class InfoBase 55 | 56 | Public Name As String 57 | Public ID As java.util.UUID 58 | Public StringID As String 59 | Public Descr As String = "" 60 | Public DbPassword As String = "" 61 | Public DbServerName As String = "" 62 | Public Dbms As String = "" 63 | Public DbmsDB As String = "" 64 | Public DbUser As String = "" 65 | 66 | Public DateOffset As Integer 67 | Public LicenseDistributionAllowed As Boolean = False 68 | Public Locale As String = "" 69 | Public ScheduledJobsDenied As Boolean = False 70 | Public SessionsDenied As Boolean = False 71 | 72 | 73 | Public DeniedFrom As DateTime 74 | Public DeniedTo As DateTime 75 | Public DeniedMessage As String = "" 76 | Public DeniedParameter As String = "" 77 | Public PermissionCode As String = "" 78 | 79 | End Class 80 | 81 | Class Cluster 82 | 83 | Public Name As String 84 | Public Port As Integer 85 | Public UserName As String = "" 86 | Public Password As String = "" 87 | Public ID As java.util.UUID 88 | Public StringID As String 89 | Public Infobases As List(Of InfoBase) 90 | Public UserSessions As List(Of UserSession) 91 | Public Processes As List(Of Process) 92 | Public Connections As List(Of Connection) 93 | 94 | Public Sub New() 95 | Infobases = New List(Of InfoBase) 96 | UserSessions = New List(Of UserSession) 97 | Processes = New List(Of Process) 98 | Connections = New List(Of Connection) 99 | End Sub 100 | 101 | Private Sub FillUserSessionsInternal(Connection As admin.IAgentAdminConnection) 102 | 103 | 'если список ИБ не заполним - инициализируем его. 104 | 'это нужно для подстановки имени ИБ по ГУИД 105 | If Infobases.Count = 0 Then 106 | FillInfobasesListInternal(Connection) 107 | End If 108 | 109 | UserSessions.Clear() 110 | 111 | Dim Sessions = Connection.getSessions(ID) 112 | 113 | For Each Session As admin.ISessionInfo In Sessions.toArray 114 | 115 | Dim S = New UserSession 116 | S.UserName = Session.getUserName() 117 | 118 | S.StartedAt = Date.Parse(Session.getStartedAt().toGMTString()) 119 | If S.StartedAt.Year = 1969 Then 120 | S.StartedAt = New DateTime 121 | End If 122 | 123 | S.LastActiveAt = Date.Parse(Session.getLastActiveAt().toGMTString()) 124 | If S.LastActiveAt.Year = 1969 Then 125 | S.LastActiveAt = New DateTime 126 | End If 127 | 128 | 'S.getStartedAt = Session.getStartedAt().toString 129 | S.InfoBaseID = Session.getInfoBaseId.toString 130 | S.ID = Session.getSid 131 | S.StringID = S.ID.toString 132 | S.AppName = Session.getAppId 133 | 134 | For Each IB In Infobases 135 | If IB.StringID = S.InfoBaseID Then 136 | S.InfoBaseName = IB.Name 137 | Exit For 138 | End If 139 | Next 140 | 141 | Dim Licenses = Session.getLicenses() 142 | 143 | For Each License As admin.ILicenseInfo In Licenses.toArray 144 | S.LicensePresentation = S.LicensePresentation + IIf(String.IsNullOrEmpty(S.LicensePresentation), "", "; ") + License.getFullPresentation 145 | Next 146 | 147 | UserSessions.Add(S) 148 | 149 | Next 150 | 151 | End Sub 152 | 153 | Private Sub FillConnectionsInternal(Connection As admin.IAgentAdminConnection) 154 | 155 | 'если список ИБ не заполним - инициализируем его. 156 | 'это нужно для подстановки имени ИБ по ГУИД 157 | If Infobases.Count = 0 Then 158 | FillInfobasesListInternal(Connection) 159 | End If 160 | 161 | Connections.Clear() 162 | 163 | Dim ClusterConnections = Connection.getConnectionsShort(ID) 164 | 165 | For Each Conn As admin.IInfoBaseConnectionShort In ClusterConnections.toArray 166 | 167 | Dim S = New Connection 168 | S.Application = Conn.getApplication() 169 | 170 | S.ConnectedAt = Date.Parse(Conn.getConnectedAt().toGMTString()) 171 | If S.ConnectedAt.Year = 1969 Then 172 | S.ConnectedAt = New DateTime 173 | End If 174 | S.BlockedByLs = Conn.getBlockedByLs() 175 | S.ConnId = Conn.getConnId() 176 | S.Host = Conn.getHost() 177 | S.ID = Conn.getInfoBaseConnectionId() 178 | S.InfobaseID = Conn.getInfoBaseId() 179 | S.SessionNumber = Conn.getSessionNumber() 180 | S.WorkingProcessId = Conn.getWorkingProcessId() 181 | 182 | For Each IB In Infobases 183 | If IB.StringID = S.InfobaseID.toString Then 184 | S.InfoBaseName = IB.Name 185 | Exit For 186 | End If 187 | Next 188 | 189 | Connections.Add(S) 190 | 191 | Next 192 | 193 | End Sub 194 | 195 | Private Sub FillProcessesDataInternal(Connection As admin.IAgentAdminConnection) 196 | 197 | ''если список ИБ не заполним - инициализируем его. 198 | ''это нужно для подстановки имени ИБ по ГУИД 199 | 'If Infobases.Count = 0 Then 200 | ' FillInfobasesListInternal(Connection) 201 | 'End If 202 | 203 | Processes.Clear() 204 | 205 | Dim ProcessesList = Connection.getWorkingProcesses(ID) 206 | 207 | For Each ProcessItem As admin.IWorkingProcessInfo In ProcessesList.toArray 208 | 209 | Dim S = New Process 210 | S.ID = ProcessItem.getWorkingProcessId() 211 | S.PID = ProcessItem.getPid 212 | S.isEnable = ProcessItem.isEnable() 213 | S.Use = (ProcessItem.getUse() = 1) 214 | S.Running = (ProcessItem.getRunning() = 1) 215 | 216 | S.StartedAt = Date.Parse(ProcessItem.getStartedAt().toGMTString()) 217 | If S.StartedAt.Year = 1969 Then 218 | S.StartedAt = New DateTime 219 | End If 220 | 221 | S.MainPort = ProcessItem.getMainPort() 222 | S.Memory = ProcessItem.getMemorySize() 223 | 224 | Dim Licenses = ProcessItem.getLicense() 225 | 226 | For Each License As admin.ILicenseInfo In Licenses.toArray 227 | S.LicensePresentation = S.LicensePresentation + IIf(String.IsNullOrEmpty(S.LicensePresentation), "", "; ") + License.getFullPresentation 228 | Next 229 | 230 | Processes.Add(S) 231 | 232 | Next 233 | 234 | End Sub 235 | 236 | Private Sub FillInfobasesListInternal(Connection As admin.IAgentAdminConnection) 237 | 238 | Infobases.Clear() 239 | 240 | Dim bases = Connection.getInfoBasesShort(ID) 241 | 242 | For Each Base As admin.IInfoBaseInfoShort In bases.toArray 243 | 244 | Dim IB = New InfoBase 245 | IB.Name = Base.getName 246 | IB.ID = Base.getInfoBaseId 247 | IB.StringID = IB.ID.toString 248 | IB.Descr = Base.getDescr 249 | 250 | Infobases.Add(IB) 251 | 252 | Next 253 | 254 | End Sub 255 | 256 | Public Function FillInfobasesList(Connection As admin.IAgentAdminConnection) As Boolean 257 | 258 | Connection.authenticate(ID, UserName, Password) 259 | 260 | FillInfobasesListInternal(Connection) 261 | 262 | Return True 263 | 264 | End Function 265 | 266 | Public Function FillConnections(Connection As admin.IAgentAdminConnection) As Boolean 267 | 268 | Connection.authenticate(ID, UserName, Password) 269 | 270 | FillConnectionsInternal(Connection) 271 | 272 | Return True 273 | 274 | End Function 275 | 276 | Public Function FillUserSessions(Connection As admin.IAgentAdminConnection) As Boolean 277 | 278 | Connection.authenticate(ID, UserName, Password) 279 | 280 | FillUserSessionsInternal(Connection) 281 | 282 | Return True 283 | 284 | End Function 285 | 286 | Public Function FillProcessesData(Connection As admin.IAgentAdminConnection) As Boolean 287 | 288 | Connection.authenticate(ID, UserName, Password) 289 | 290 | FillProcessesDataInternal(Connection) 291 | 292 | Return True 293 | 294 | End Function 295 | 296 | Public Function KillSession(Connection As admin.IAgentAdminConnection, SessionID As String) As Boolean 297 | 298 | Connection.authenticate(ID, UserName, Password) 299 | 300 | For Each US In UserSessions 301 | If US.StringID = SessionID Then 302 | 303 | Connection.terminateSession(ID, US.ID) 304 | 305 | End If 306 | 307 | Next 308 | 309 | FillUserSessionsInternal(Connection) 310 | 311 | Return True 312 | 313 | End Function 314 | 315 | Public Function KillConnection(Connection As admin.IAgentAdminConnection, ConnectionID As String) As Boolean 316 | 317 | Connection.authenticate(ID, UserName, Password) 318 | 319 | For Each Conn In Connections 320 | If Conn.ID.toString = ConnectionID Then 321 | 322 | Connection.disconnect(ID, Conn.WorkingProcessId, Conn.ID) 323 | 324 | End If 325 | 326 | Next 327 | 328 | FillConnectionsInternal(Connection) 329 | 330 | Return True 331 | 332 | End Function 333 | 334 | Public Function GetInfoBaseInfo(Connection As admin.IAgentAdminConnection, InfoBaseID As String, 335 | Optional UserNameIB As String = "", Optional PasswordIB As String = "") As InfoBase 336 | 337 | Connection.authenticate(ID, UserName, Password) 338 | 339 | Dim Rez As InfoBase = New InfoBase 340 | 341 | Connection.addAuthentication(ID, UserNameIB, PasswordIB) 342 | 343 | For Each IB In Infobases 344 | 345 | If IB.StringID = InfoBaseID Then 346 | 347 | Dim IBInfo = Connection.getInfoBaseInfo(ID, IB.ID) 348 | 349 | IB.DbPassword = IBInfo.getDbPassword() 350 | IB.DbServerName = IBInfo.getDbServerName() 351 | 352 | IB.Dbms = IBInfo.getDbms() 353 | IB.DbmsDB = IBInfo.getDbName() 354 | IB.DbUser = IBInfo.getDbUser() 355 | 356 | IB.DeniedFrom = Date.Parse(IBInfo.getDeniedFrom().toGMTString()) 357 | If IB.DeniedFrom.Year = 1969 Then 358 | IB.DeniedFrom = New DateTime 359 | End If 360 | IB.DeniedTo = Date.Parse(IBInfo.getDeniedTo().toGMTString()) 361 | If IB.DeniedTo.Year = 1969 Then 362 | IB.DeniedTo = New DateTime 363 | End If 364 | 365 | IB.DeniedMessage = IBInfo.getDeniedMessage 366 | IB.DeniedParameter = IBInfo.getDeniedParameter 367 | IB.PermissionCode = IBInfo.getPermissionCode 368 | 369 | IB.DateOffset = IBInfo.getDateOffset 370 | IB.LicenseDistributionAllowed = (IBInfo.getLicenseDistributionAllowed = 1) 371 | IB.Locale = IBInfo.getLocale 372 | IB.ScheduledJobsDenied = IBInfo.isScheduledJobsDenied 373 | IB.SessionsDenied = IBInfo.isSessionsDenied 374 | 375 | 376 | Return IB 377 | 378 | End If 379 | 380 | Next 381 | 382 | Return Rez 383 | 384 | End Function 385 | 386 | 387 | 388 | End Class 389 | 390 | 391 | 392 | Class Service1C 393 | 394 | Public ID As Integer 395 | Public Name As String 396 | Public Port As Integer 397 | Public Descr As String 398 | 399 | Public Connected As Boolean = False 400 | Public ConnectionError As String = "" 401 | 402 | Public Username As String 403 | Public Password As String 404 | 405 | Public Clusters As List(Of Cluster) 406 | 407 | 408 | Public Sub New(iID As Integer, sName As String, iPort As Integer) 409 | 410 | Clusters = New List(Of Cluster) 411 | 412 | ID = iID 413 | Name = sName 414 | Port = iPort 415 | 416 | End Sub 417 | 418 | Public Function GetConnection() As admin.IAgentAdminConnection 419 | 420 | Dim conn = New admin.client.AgentAdminConnector(60) 421 | 422 | Dim connection = conn.connect(Name, Port) 423 | If Not String.IsNullOrEmpty(Username) Then 424 | connection.authenticateAgent(Username, Password) 425 | End If 426 | 427 | Return connection 428 | 429 | End Function 430 | 431 | Public Function FillUserSessions(ClusterID As String) As List(Of UserSession) 432 | 433 | Dim Rez As List(Of UserSession) = New List(Of UserSession) 434 | 435 | For Each Cluster In Clusters 436 | 437 | If Cluster.StringID = ClusterID Then 438 | 439 | Cluster.FillUserSessions(GetConnection()) 440 | 441 | Return Cluster.UserSessions 442 | 443 | End If 444 | 445 | Next 446 | 447 | Return Rez 448 | 449 | End Function 450 | 451 | Public Function GetInfoBaseInfo(ClusterID As String, InfoBaseID As String, 452 | UserNameIB As String, PasswordIB As String) As InfoBase 453 | 454 | Dim Rez As InfoBase = New InfoBase 455 | 456 | For Each Cluster In Clusters 457 | 458 | If Cluster.StringID = ClusterID Then 459 | 460 | Rez = Cluster.GetInfoBaseInfo(GetConnection(), InfoBaseID, UserNameIB, PasswordIB) 461 | 462 | Return Rez 463 | 464 | End If 465 | 466 | Next 467 | 468 | Return Rez 469 | 470 | End Function 471 | 472 | End Class 473 | 474 | Public Function GetClusterList(ServersOptions As List(Of Service1C)) As List(Of Service1C) 475 | 476 | Dim Rez = New List(Of Service1C) 477 | 478 | 'Dim ServersOptions = CredMngr.GetServersList() 479 | 480 | For Each ServerOption In ServersOptions 481 | 482 | Try 483 | 484 | Dim Srv = New Service1C(ServerOption.ID, ServerOption.Name, ServerOption.Port) 485 | Srv.Username = ServerOption.Username 486 | Srv.Password = ServerOption.Password 487 | Srv.Descr = ServerOption.Descr 488 | 489 | Try 490 | Dim connection = Srv.GetConnection() 491 | 492 | Dim Clusters = connection.getClusters() 493 | 494 | For Each Cluster As admin.ClusterInfo In Clusters.toArray 495 | Try 496 | Dim Cl = New Cluster 497 | Cl.Name = Cluster.getName() 498 | Cl.Port = Cluster.getMainPort() 499 | Cl.ID = Cluster.getClusterId() 500 | Cl.StringID = Cl.ID.toString 501 | 502 | Srv.Clusters.Add(Cl) 503 | Catch ex As Exception 504 | End Try 505 | Next 506 | 507 | Srv.Connected = True 508 | 509 | Catch ex As Exception 510 | 511 | Srv.ConnectionError = ex.Message 512 | 513 | End Try 514 | 515 | Rez.Add(Srv) 516 | 517 | Catch ex As Exception 518 | 519 | End Try 520 | 521 | Next 522 | 523 | Return Rez 524 | 525 | 526 | End Function 527 | 528 | Public Function GetInfoBaseFullInfo(Server As Service1C, ClusterID As String, InfoBaseID As String, 529 | ByRef UserName As String, Password As String, SaveIt As Boolean) As RequestResult 530 | 531 | Dim Rez = New RequestResult 532 | Rez.Success = False 533 | 534 | Try 535 | 536 | Rez.InfoBase = Server.GetInfoBaseInfo(ClusterID, InfoBaseID, UserName, Password) 537 | Rez.Success = True 538 | 539 | Catch ex As Exception 540 | 541 | Rez.ErrorCode = ErrorCodes.AuthError 542 | Rez.Description = ex.Message 543 | 544 | End Try 545 | 546 | Return Rez 547 | 548 | 549 | End Function 550 | 551 | End Module 552 | -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.AWT.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.AWT.WinForms.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Beans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Beans.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Charsets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Charsets.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Corba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Corba.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Core.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Management.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Media.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Misc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Misc.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Naming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Naming.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Remoting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Remoting.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Security.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.SwingAWT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.SwingAWT.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Text.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.Util.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.OpenJDK.XML.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.OpenJDK.XML.API.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.Runtime.JNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.Runtime.JNI.dll -------------------------------------------------------------------------------- /WebSite4/Bin/IKVM.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/IKVM.Runtime.dll -------------------------------------------------------------------------------- /WebSite4/Bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebSite4/Bin/Newtonsoft.Json.dll.refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/Newtonsoft.Json.dll.refresh -------------------------------------------------------------------------------- /WebSite4/Bin/_1c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Bin/_1c.dll -------------------------------------------------------------------------------- /WebSite4/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.5 (http://getbootstrap.com) 3 | * Copyright 2011-2015 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} -------------------------------------------------------------------------------- /WebSite4/Content/cred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Content/cred.png -------------------------------------------------------------------------------- /WebSite4/Content/theme.default.css: -------------------------------------------------------------------------------- 1 | /************* 2 | Default Theme 3 | *************/ 4 | /* overall */ 5 | .tablesorter-default { 6 | width: 100%; 7 | font: 12px/18px Arial, Sans-serif; 8 | color: #333; 9 | background-color: #fff; 10 | border-spacing: 0; 11 | margin: 10px 0 15px; 12 | text-align: left; 13 | } 14 | 15 | /* header */ 16 | .tablesorter-default th, 17 | .tablesorter-default thead td { 18 | font-weight: bold; 19 | color: #000; 20 | background-color: #fff; 21 | border-collapse: collapse; 22 | border-bottom: #ccc 2px solid; 23 | padding: 0; 24 | } 25 | .tablesorter-default tfoot th, 26 | .tablesorter-default tfoot td { 27 | border: 0; 28 | } 29 | .tablesorter-default .header, 30 | .tablesorter-default .tablesorter-header { 31 | background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); 32 | background-position: center right; 33 | background-repeat: no-repeat; 34 | cursor: pointer; 35 | white-space: normal; 36 | padding: 4px 20px 4px 4px; 37 | } 38 | .tablesorter-default thead .headerSortUp, 39 | .tablesorter-default thead .tablesorter-headerSortUp, 40 | .tablesorter-default thead .tablesorter-headerAsc { 41 | background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); 42 | border-bottom: #000 2px solid; 43 | } 44 | .tablesorter-default thead .headerSortDown, 45 | .tablesorter-default thead .tablesorter-headerSortDown, 46 | .tablesorter-default thead .tablesorter-headerDesc { 47 | background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); 48 | border-bottom: #000 2px solid; 49 | } 50 | .tablesorter-default thead .sorter-false { 51 | background-image: none; 52 | cursor: default; 53 | padding: 4px; 54 | } 55 | 56 | /* tfoot */ 57 | .tablesorter-default tfoot .tablesorter-headerSortUp, 58 | .tablesorter-default tfoot .tablesorter-headerSortDown, 59 | .tablesorter-default tfoot .tablesorter-headerAsc, 60 | .tablesorter-default tfoot .tablesorter-headerDesc { 61 | border-top: #000 2px solid; 62 | } 63 | 64 | /* tbody */ 65 | .tablesorter-default td { 66 | background-color: #fff; 67 | border-bottom: #ccc 1px solid; 68 | padding: 4px; 69 | vertical-align: top; 70 | } 71 | 72 | /* hovered row colors */ 73 | .tablesorter-default tbody > tr.hover > td, 74 | .tablesorter-default tbody > tr:hover > td, 75 | .tablesorter-default tbody > tr.even:hover > td, 76 | .tablesorter-default tbody > tr.odd:hover > td { 77 | background-color: #fff; 78 | color: #000; 79 | } 80 | 81 | /* table processing indicator */ 82 | .tablesorter-default .tablesorter-processing { 83 | background-position: center center !important; 84 | background-repeat: no-repeat !important; 85 | /* background-image: url(images/loading.gif) !important; */ 86 | background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important; 87 | } 88 | 89 | /* Zebra Widget - row alternating colors */ 90 | .tablesorter-default tr.odd > td { 91 | background-color: #dfdfdf; 92 | } 93 | .tablesorter-default tr.even > td { 94 | background-color: #efefef; 95 | } 96 | 97 | /* Column Widget - column sort colors */ 98 | .tablesorter-default tr.odd td.primary { 99 | background-color: #bfbfbf; 100 | } 101 | .tablesorter-default td.primary, 102 | .tablesorter-default tr.even td.primary { 103 | background-color: #d9d9d9; 104 | } 105 | .tablesorter-default tr.odd td.secondary { 106 | background-color: #d9d9d9; 107 | } 108 | .tablesorter-default td.secondary, 109 | .tablesorter-default tr.even td.secondary { 110 | background-color: #e6e6e6; 111 | } 112 | .tablesorter-default tr.odd td.tertiary { 113 | background-color: #e6e6e6; 114 | } 115 | .tablesorter-default td.tertiary, 116 | .tablesorter-default tr.even td.tertiary { 117 | background-color: #f2f2f2; 118 | } 119 | 120 | /* caption */ 121 | caption { 122 | background-color: #fff; 123 | } 124 | 125 | /* filter widget */ 126 | .tablesorter-default .tablesorter-filter-row { 127 | background-color: #eee; 128 | } 129 | .tablesorter-default .tablesorter-filter-row td { 130 | background-color: #eee; 131 | border-bottom: #ccc 1px solid; 132 | line-height: normal; 133 | text-align: center; /* center the input */ 134 | -webkit-transition: line-height 0.1s ease; 135 | -moz-transition: line-height 0.1s ease; 136 | -o-transition: line-height 0.1s ease; 137 | transition: line-height 0.1s ease; 138 | } 139 | /* optional disabled input styling */ 140 | .tablesorter-default .tablesorter-filter-row .disabled { 141 | opacity: 0.5; 142 | filter: alpha(opacity=50); 143 | cursor: not-allowed; 144 | } 145 | /* hidden filter row */ 146 | .tablesorter-default .tablesorter-filter-row.hideme td { 147 | /*** *********************************************** ***/ 148 | /*** change this padding to modify the thickness ***/ 149 | /*** of the closed filter row (height = padding x 2) ***/ 150 | padding: 2px; 151 | /*** *********************************************** ***/ 152 | margin: 0; 153 | line-height: 0; 154 | cursor: pointer; 155 | } 156 | .tablesorter-default .tablesorter-filter-row.hideme * { 157 | height: 1px; 158 | min-height: 0; 159 | border: 0; 160 | padding: 0; 161 | margin: 0; 162 | /* don't use visibility: hidden because it disables tabbing */ 163 | opacity: 0; 164 | filter: alpha(opacity=0); 165 | } 166 | /* filters */ 167 | .tablesorter-default input.tablesorter-filter, 168 | .tablesorter-default select.tablesorter-filter { 169 | width: 95%; 170 | height: auto; 171 | margin: 4px auto; 172 | padding: 4px; 173 | background-color: #fff; 174 | border: 1px solid #bbb; 175 | color: #333; 176 | -webkit-box-sizing: border-box; 177 | -moz-box-sizing: border-box; 178 | box-sizing: border-box; 179 | -webkit-transition: height 0.1s ease; 180 | -moz-transition: height 0.1s ease; 181 | -o-transition: height 0.1s ease; 182 | transition: height 0.1s ease; 183 | } 184 | /* rows hidden by filtering (needed for child rows) */ 185 | .tablesorter .filtered { 186 | display: none; 187 | } 188 | 189 | /* ajax error row */ 190 | .tablesorter .tablesorter-errorRow td { 191 | text-align: center; 192 | cursor: pointer; 193 | background-color: #e6bf99; 194 | } 195 | -------------------------------------------------------------------------------- /WebSite4/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> 2 | 3 | 4 | 5 | 6 | 7 | Remote Administration Server client 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 |
24 | 25 | 26 |
27 |
28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 |
36 |
37 |
38 |
39 | 40 |
41 | 42 | 43 |
44 |
45 | 46 | 47 |
48 |
49 | 50 |
51 |
52 | 53 |
54 |
55 | 56 | 57 |
58 |
59 | 60 | 61 |
62 |
63 | 64 |
65 | 66 | 67 |
68 |
69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 91 | 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /WebSite4/Default.aspx.vb: -------------------------------------------------------------------------------- 1 |  2 | Imports Newtonsoft.Json 3 | 4 | Partial Class _Default 5 | Inherits System.Web.UI.Page 6 | 7 | Private Sub _Default_Load(sender As Object, e As EventArgs) Handles Me.Load 8 | 9 | If Not IsPostBack Then 10 | 11 | ShowTree() 12 | 13 | Else 14 | 15 | If CurrentOperation.Attributes.Count > 0 Then 16 | 17 | Dim Action = CurrentOperation.Attributes.Item("Action") 18 | Dim ClusterID = CurrentOperation.Attributes.Item("ClusterID") 19 | 20 | DoTheAction(Action, ClusterID) 21 | 22 | End If 23 | 24 | End If 25 | 26 | Labellogin.Text = "Пользователь: " + User.Identity.Name 27 | DivWarning.InnerText = "" 28 | 29 | End Sub 30 | 31 | Sub ShowTree() 32 | 33 | MainOperations.Visible = True 34 | 35 | Dim TreeNodeMain = New TreeNode 36 | TreeNodeMain.Value = "MainPage" 37 | TreeNodeMain.Text = "Начальная страница" 38 | 39 | TreeView.Nodes.Add(TreeNodeMain) 40 | 41 | Dim ServersList As List(Of RAS.Service1C) = RAS.GetClusterList(GetServerListFromCookie()) 42 | 'Dim ServersList As List(Of RAS.Service1C) = GerServerListFromCookie() 43 | 44 | For Each Server1C As RAS.Service1C In ServersList 45 | 46 | Dim TreeNodeServer = New TreeNode 47 | TreeNodeServer.Value = Server1C.ID 48 | TreeNodeServer.Text = Server1C.Descr + ":" + Server1C.Port.ToString 49 | 50 | If Server1C.Connected Then 51 | For Each Cl In Server1C.Clusters 52 | 53 | Dim TreeNode = New TreeNode 54 | TreeNode.Value = Cl.StringID 55 | TreeNode.Text = Cl.Name + ":" + Cl.Port.ToString ' + "
New" 56 | 57 | TreeNode.ChildNodes.Add(New TreeNode With {.Text = "Databases", .Value = "Databases"}) 58 | TreeNode.ChildNodes.Add(New TreeNode With {.Text = "Sessions", .Value = "Sessions"}) 59 | TreeNode.ChildNodes.Add(New TreeNode With {.Text = "Connections", .Value = "Connections"}) 60 | TreeNode.ChildNodes.Add(New TreeNode With {.Text = "Processes", .Value = "Processes"}) 61 | 62 | TreeNodeServer.ChildNodes.Add(TreeNode) 63 | 64 | Next 65 | Else 66 | TreeNodeServer.Text = TreeNodeServer.Text + " / " + Server1C.ConnectionError 67 | End If 68 | 69 | TreeView.Nodes.Add(TreeNodeServer) 70 | 71 | Next 72 | 73 | If ServersList.Count > 1 Then 74 | 'Покажем сводные списки данных 75 | 76 | Dim TreeNodeTotals = New TreeNode 77 | TreeNodeTotals.Text = "Сводные данные" 78 | TreeNodeTotals.ChildNodes.Add(New TreeNode With {.Text = "All databases", .Value = "AllDatabases"}) 79 | TreeNodeTotals.ChildNodes.Add(New TreeNode With {.Text = "All sessions", .Value = "AllSessions"}) 80 | TreeNodeTotals.ChildNodes.Add(New TreeNode With {.Text = "All connections", .Value = "AllConnections"}) 81 | TreeNodeTotals.ChildNodes.Add(New TreeNode With {.Text = "All processes", .Value = "AllProcesses"}) 82 | 83 | TreeView.Nodes.Add(TreeNodeTotals) 84 | 85 | End If 86 | 87 | 88 | ''Раздел с настройками 89 | 'Dim TreeNodeSetting = New TreeNode 90 | 'TreeNodeSetting.Text = "Setting" 91 | 92 | 'TreeNodeSetting.ChildNodes.Add(New TreeNode With {.Text = "Saved credentials", .Value = "ShowSavedUsers"}) 93 | 94 | 'TreeView.Nodes.Add(TreeNodeSetting) 95 | 96 | 97 | SaveCache(ServersList) 98 | 99 | 100 | End Sub 101 | 102 | Sub SaveCache(ServersList As List(Of Service1C)) 103 | 104 | HttpContext.Current.Cache.Remove("ServersList") 105 | 106 | HttpContext.Current.Cache.Add("ServersList", ServersList, Nothing, Cache.NoAbsoluteExpiration, New TimeSpan(0, 15, 0), CacheItemPriority.Normal, Nothing) 107 | 108 | End Sub 109 | 110 | Sub ShowDatabases(ClusterID As String) 111 | 112 | DataTable.Rows.Clear() 113 | 114 | Dim FirstCellHeader = New TableHeaderCell With {.Text = ""} 115 | FirstCellHeader.Attributes.Add("data-sorter", "false") 116 | 117 | Dim Row = New TableHeaderRow 118 | Row.Cells.Add(FirstCellHeader) 119 | Row.Cells.Add(New TableHeaderCell With {.Text = "Имя ИБ"}) 120 | Row.Cells.Add(New TableHeaderCell With {.Text = "Описание"}) 121 | Row.Cells.Add(New TableHeaderCell With {.Text = "УИД"}) 122 | Row.TableSection = TableRowSection.TableHeader 123 | DataTable.Rows.Add(Row) 124 | 125 | Dim RowNumber = 1 126 | 127 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 128 | 129 | For Each Server1C In ServersList 130 | For Each Cl In Server1C.Clusters 131 | If ClusterID = "" Or Cl.StringID = ClusterID Then 132 | 133 | Cl.FillInfobasesList(Server1C.GetConnection()) 134 | 135 | For Each IB In Cl.Infobases 136 | 137 | Dim Link As LinkButton = New LinkButton 138 | Link.Text = "..." 139 | Link.ID = "OpenIBForm_" + RowNumber.ToString 140 | Link.Attributes.Add("href", "#") 141 | 142 | Dim PostBackUrl = Link.ResolveClientUrl("~/ib.aspx?ServerID=" + Server1C.ID.ToString + "&ClusterID=" + Cl.StringID + "&InfoBaseID=" + IB.StringID) 143 | 144 | Link.OnClientClick = "window.open('" + PostBackUrl + "','name','width=500,height=800')" 145 | 'Как-то не очень красиво открывается диалог.. 146 | 'Link.OnClientClick = "OpenInfoBaseForm('" + PostBackUrl + "')" 147 | 148 | 149 | Dim FirstCell = New TableCell 150 | FirstCell.Controls.Add(Link) 151 | 152 | If CredMngr.CredentialsForObjectExists(Request, IB.StringID) Then 153 | 154 | Dim CredPic As Image = New Image 155 | CredPic.ImageUrl = CredPic.ResolveClientUrl("~/Content/cred.png") 156 | FirstCell.Controls.Add(CredPic) 157 | 158 | End If 159 | 160 | Dim RowIB = New TableRow 161 | RowIB.Cells.Add(FirstCell) 162 | RowIB.Cells.Add(New TableCell With {.Text = IB.Name}) 163 | RowIB.Cells.Add(New TableCell With {.Text = IB.Descr}) 164 | RowIB.Cells.Add(New TableCell With {.Text = IB.StringID}) 165 | DataTable.Rows.Add(RowIB) 166 | 167 | RowNumber = RowNumber + 1 168 | 169 | Next 170 | 171 | 172 | 173 | End If 174 | Next 175 | Next 176 | 177 | End Sub 178 | 179 | Sub ShowSessions(ClusterID As String) 180 | 181 | DataTable.Rows.Clear() 182 | 183 | Dim Row = New TableHeaderRow 184 | Row.Cells.Add(New TableHeaderCell With {.Text = ""}) 185 | Row.Cells.Add(New TableHeaderCell With {.Text = "ИБ"}) 186 | Row.Cells.Add(New TableHeaderCell With {.Text = "Имя пользователя"}) 187 | Row.Cells.Add(New TableHeaderCell With {.Text = "Имя приложения"}) 188 | Row.Cells.Add(New TableHeaderCell With {.Text = "Начало работы"}) 189 | Row.Cells.Add(New TableHeaderCell With {.Text = "Последняя активность"}) 190 | Row.Cells.Add(New TableHeaderCell With {.Text = "УИД ИБ"}) 191 | Row.Cells.Add(New TableHeaderCell With {.Text = "Лицензия"}) 192 | Row.TableSection = TableRowSection.TableHeader 193 | DataTable.Rows.Add(Row) 194 | 195 | Dim RowNumber = 1 196 | 197 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 198 | 199 | For Each Server1C In ServersList 200 | For Each Cl In Server1C.Clusters 201 | If ClusterID = "" Or Cl.StringID = ClusterID Then 202 | 203 | 204 | Cl.FillUserSessions(Server1C.GetConnection()) 205 | 206 | 207 | 208 | For Each S In Cl.UserSessions 209 | 210 | Dim ButtonDelete As Button = New Button() 211 | ButtonDelete.Text = "Kill" 212 | ButtonDelete.ID = "KillSession_" + RowNumber.ToString 213 | 'ButtonDelete.ControlStyle.CssClass = "button" 214 | ButtonDelete.Attributes.Add("SessionID", S.ID.toString) 215 | ButtonDelete.Attributes.Add("ClusterID", Cl.StringID) 216 | AddHandler ButtonDelete.Click, AddressOf ButtonKillSession_Click 217 | 218 | Dim FirstCell = New TableCell 219 | FirstCell.Controls.Add(ButtonDelete) 220 | 221 | 222 | Dim RowIB = New TableRow 223 | RowIB.Cells.Add(FirstCell) 224 | RowIB.Cells.Add(New TableCell With {.Text = S.InfoBaseName}) 225 | RowIB.Cells.Add(New TableCell With {.Text = S.UserName}) 226 | RowIB.Cells.Add(New TableCell With {.Text = S.AppName}) 227 | RowIB.Cells.Add(New TableCell With {.Text = S.StartedAt}) 228 | RowIB.Cells.Add(New TableCell With {.Text = S.LastActiveAt}) 229 | RowIB.Cells.Add(New TableCell With {.Text = S.InfoBaseID}) 230 | RowIB.Cells.Add(New TableCell With {.Text = S.LicensePresentation}) 231 | 'RowIB.ID = S.InfoBaseID 232 | 233 | DataTable.Rows.Add(RowIB) 234 | 235 | RowNumber = RowNumber + 1 236 | 237 | Next 238 | 239 | 240 | 241 | End If 242 | Next 243 | Next 244 | 245 | End Sub 246 | 247 | Sub ShowConnections(ClusterID As String) 248 | 249 | DataTable.Rows.Clear() 250 | 251 | Dim Row = New TableHeaderRow 252 | Row.Cells.Add(New TableHeaderCell With {.Text = ""}) 253 | Row.Cells.Add(New TableHeaderCell With {.Text = "InfobaseName"}) 254 | Row.Cells.Add(New TableHeaderCell With {.Text = "ConnId"}) 255 | Row.Cells.Add(New TableHeaderCell With {.Text = "SessionNumber"}) 256 | Row.Cells.Add(New TableHeaderCell With {.Text = "Application"}) 257 | Row.Cells.Add(New TableHeaderCell With {.Text = "Host"}) 258 | Row.Cells.Add(New TableHeaderCell With {.Text = "BlockedByLs"}) 259 | Row.Cells.Add(New TableHeaderCell With {.Text = "ConnectedAt"}) 260 | Row.TableSection = TableRowSection.TableHeader 261 | DataTable.Rows.Add(Row) 262 | 263 | Dim RowNumber = 1 264 | 265 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 266 | 267 | For Each Server1C In ServersList 268 | For Each Cl In Server1C.Clusters 269 | If ClusterID = "" Or Cl.StringID = ClusterID Then 270 | 271 | 272 | Cl.FillConnections(Server1C.GetConnection()) 273 | 274 | 275 | 276 | For Each S In Cl.Connections 277 | 278 | Dim ButtonDelete As Button = New Button() 279 | ButtonDelete.Text = "Kill" 280 | ButtonDelete.ID = "KillConnection_" + RowNumber.ToString 281 | ButtonDelete.Attributes.Add("ConnectionID", S.ID.toString) 282 | ButtonDelete.Attributes.Add("ClusterID", Cl.StringID) 283 | AddHandler ButtonDelete.Click, AddressOf ButtonKillConnection_Click 284 | Dim FirstCell = New TableCell 285 | FirstCell.Controls.Add(ButtonDelete) 286 | 287 | Dim RowIB = New TableRow 288 | RowIB.Cells.Add(FirstCell) 289 | RowIB.Cells.Add(New TableCell With {.Text = S.InfoBaseName}) 290 | RowIB.Cells.Add(New TableCell With {.Text = S.ConnId.ToString}) 291 | RowIB.Cells.Add(New TableCell With {.Text = S.SessionNumber.ToString}) 292 | RowIB.Cells.Add(New TableCell With {.Text = S.Application}) 293 | RowIB.Cells.Add(New TableCell With {.Text = S.Host}) 294 | RowIB.Cells.Add(New TableCell With {.Text = S.BlockedByLs.ToString}) 295 | RowIB.Cells.Add(New TableCell With {.Text = S.ConnectedAt.ToString}) 296 | 297 | DataTable.Rows.Add(RowIB) 298 | 299 | RowNumber = RowNumber + 1 300 | 301 | Next 302 | 303 | 304 | 305 | End If 306 | Next 307 | Next 308 | 309 | End Sub 310 | 311 | Sub ShowProcesses(ClusterID As String) 312 | 313 | DataTable.Rows.Clear() 314 | 315 | Dim Row = New TableHeaderRow 316 | Row.Cells.Add(New TableHeaderCell With {.Text = ""}) 317 | Row.Cells.Add(New TableHeaderCell With {.Text = "PID"}) 318 | Row.Cells.Add(New TableHeaderCell With {.Text = "Main port"}) 319 | Row.Cells.Add(New TableHeaderCell With {.Text = "Memory, Kb"}) 320 | Row.Cells.Add(New TableHeaderCell With {.Text = "Enabled"}) 321 | Row.Cells.Add(New TableHeaderCell With {.Text = "Use"}) 322 | Row.Cells.Add(New TableHeaderCell With {.Text = "Running"}) 323 | Row.Cells.Add(New TableHeaderCell With {.Text = "Started at"}) 324 | Row.Cells.Add(New TableHeaderCell With {.Text = "License"}) 325 | 326 | Row.TableSection = TableRowSection.TableHeader 327 | DataTable.Rows.Add(Row) 328 | 329 | ' Dim RowNumber = 1 330 | 331 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 332 | 333 | For Each Server1C In ServersList 334 | For Each Cl In Server1C.Clusters 335 | If ClusterID = "" Or Cl.StringID = ClusterID Then 336 | 337 | Cl.FillProcessesData(Server1C.GetConnection()) 338 | 339 | For Each S In Cl.Processes 340 | 341 | Dim RowIB = New TableRow 342 | RowIB.Cells.Add(New TableCell With {.Text = ""}) 343 | RowIB.Cells.Add(New TableCell With {.Text = S.PID}) 344 | RowIB.Cells.Add(New TableCell With {.Text = S.MainPort.ToString}) 345 | RowIB.Cells.Add(New TableCell With {.Text = S.Memory.ToString}) 346 | RowIB.Cells.Add(New TableCell With {.Text = S.isEnable.ToString}) 347 | RowIB.Cells.Add(New TableCell With {.Text = S.Use.ToString}) 348 | RowIB.Cells.Add(New TableCell With {.Text = S.Running.ToString}) 349 | RowIB.Cells.Add(New TableCell With {.Text = S.StartedAt.ToString}) 350 | RowIB.Cells.Add(New TableCell With {.Text = S.LicensePresentation}) 351 | 352 | DataTable.Rows.Add(RowIB) 353 | 354 | Next 355 | 356 | 357 | 358 | End If 359 | Next 360 | Next 361 | 362 | End Sub 363 | 364 | Protected Sub ButtonKillSession_Click(sender As Object, e As System.EventArgs) 365 | 366 | DivWarning.InnerText = "" 367 | 368 | Dim SessionID As String = sender.Attributes("SessionID") 369 | Dim ClusterID As String = sender.Attributes("ClusterID") 370 | 371 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 372 | 373 | For Each Server1C In ServersList 374 | For Each Cl In Server1C.Clusters 375 | If Cl.StringID = ClusterID Then 376 | 377 | Try 378 | Cl.KillSession(Server1C.GetConnection(), SessionID) 379 | Catch ex As Exception 380 | DivWarning.InnerText = ex.Message 381 | End Try 382 | 383 | End If 384 | Next 385 | Next 386 | 387 | SaveCache(ServersList) 388 | 389 | DoTheAction("Sessions", ClusterID) 390 | 391 | End Sub 392 | 393 | Protected Sub ButtonKillConnection_Click(sender As Object, e As System.EventArgs) 394 | 395 | DivWarning.InnerText = "" 396 | 397 | Dim ConnectionID As String = sender.Attributes("ConnectionID") 398 | Dim ClusterID As String = sender.Attributes("ClusterID") 399 | 400 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 401 | 402 | For Each Server1C In ServersList 403 | For Each Cl In Server1C.Clusters 404 | If Cl.StringID = ClusterID Then 405 | 406 | Try 407 | Cl.KillConnection(Server1C.GetConnection(), ConnectionID) 408 | Catch ex As Exception 409 | DivWarning.InnerText = ex.Message 410 | End Try 411 | 412 | End If 413 | Next 414 | Next 415 | 416 | SaveCache(ServersList) 417 | 418 | DoTheAction("Connections", ClusterID) 419 | 420 | End Sub 421 | 422 | 423 | 424 | Protected Sub TreeView_SelectedNodeChanged(sender As Object, e As EventArgs) Handles TreeView.SelectedNodeChanged 425 | 426 | Dim Node = DirectCast(sender, System.Web.UI.WebControls.TreeView).SelectedNode 427 | 428 | If Node.Depth = 0 Then 429 | If Node.Value = "MainPage" Then 430 | DoTheAction("MainPage", Node.Value) 431 | Else 432 | DoTheAction("ServerPage", Node.Value) 433 | End If 434 | ' ElseIf Node.Depth = 1 Then 435 | ' DoTheAction("ClusterPage", Node.Value) 436 | Else 437 | DoTheAction(Node.Value, Node.Parent.Value) 438 | End If 439 | 440 | End Sub 441 | 442 | Sub DoTheAction(Action As String, ClusterId As String) 443 | 444 | If String.IsNullOrEmpty(Action) Then 445 | Exit Sub 446 | End If 447 | 448 | MainOperations.Visible = False 449 | ServerOperations.Visible = False 450 | ClusterOperations.Visible = False 451 | DatabasesOperations.Visible = False 452 | SessionOperations.Visible = False 453 | ConnectionsOperations.Visible = False 454 | ProcessesOperations.Visible = False 455 | 456 | DataTable.Rows.Clear() 457 | 458 | If Action = "Databases" Then 459 | 460 | DatabasesOperations.Visible = True 461 | 462 | ShowDatabases(ClusterId) 463 | 464 | ElseIf Action = "Sessions" Then 465 | 466 | SessionOperations.Visible = True 467 | 468 | RefreshSessionsList.Attributes.Clear() 469 | RefreshSessionsList.Attributes.Add("ClusterID", ClusterId) 470 | 471 | ShowSessions(ClusterId) 472 | 473 | ElseIf Action = "Connections" Then 474 | 475 | ConnectionsOperations.Visible = True 476 | 477 | RefreshConnectionsList.Attributes.Clear() 478 | RefreshConnectionsList.Attributes.Add("ClusterID", ClusterId) 479 | 480 | ShowConnections(ClusterId) 481 | 482 | ElseIf Action = "Processes" Then 483 | 484 | ProcessesOperations.Visible = True 485 | 486 | RefreshProcessesList.Attributes.Clear() 487 | RefreshProcessesList.Attributes.Add("ClusterID", ClusterId) 488 | 489 | ShowProcesses(ClusterId) 490 | 491 | ElseIf Action = "MainPage" Then 492 | 493 | MainOperations.Visible = True 494 | 495 | ElseIf Action = "ClusterPage" Then 496 | 497 | ClusterOperations.Visible = True 498 | 499 | ElseIf Action = "ServerPage" Then 500 | 501 | ServerOperations.Visible = True 502 | 503 | DeleteThisServer.Attributes.Clear() 504 | DeleteThisServer.Attributes.Add("ServerID", ClusterId) 505 | 506 | ElseIf Action = "AllDatabases" Then 507 | ShowDatabases("") 508 | ElseIf Action = "AllSessions" Then 509 | ShowSessions("") 510 | ElseIf Action = "AllConnections" Then 511 | ShowConnections("") 512 | ElseIf Action = "AllProcesses" Then 513 | ShowProcesses("") 514 | End If 515 | 516 | CurrentOperation.Attributes.Clear() 517 | CurrentOperation.Attributes.Add("Action", Action) 518 | CurrentOperation.Attributes.Add("ClusterID", ClusterId) 519 | 520 | End Sub 521 | 522 | Function GetServerListFromCookie() As List(Of RAS.Service1C) 523 | 524 | Dim List = New List(Of RAS.Service1C) 525 | 526 | Try 527 | 528 | Dim UID = DirectCast(User.Identity, System.Security.Principal.WindowsIdentity).User.Value 529 | 530 | Dim FilePath = HttpContext.Current.Server.MapPath("~/App_Data/" + UID + ".json") 531 | 532 | Dim UserData = My.Computer.FileSystem.ReadAllText(FilePath) 533 | 534 | List = JsonConvert.DeserializeObject(Of List(Of RAS.Service1C))(UserData) 535 | 536 | Catch ex As Exception 537 | 538 | End Try 539 | 540 | Return List 541 | 542 | End Function 543 | 544 | Sub SaveServerListToCookie(ServerList As List(Of RAS.Service1C)) 545 | 546 | Dim UID = DirectCast(User.Identity, System.Security.Principal.WindowsIdentity).User.Value 547 | 548 | Dim FilePath = HttpContext.Current.Server.MapPath("~/App_Data/" + UID + ".json") 549 | 550 | Dim JSONSetting = JsonConvert.SerializeObject(ServerList) 551 | 552 | My.Computer.FileSystem.WriteAllText(FilePath, JSONSetting, False) 553 | 554 | End Sub 555 | 556 | Function AddNewServerToList(ServerName As String, ServerPort As Integer, Descr As String) As List(Of RAS.Service1C) 557 | 558 | Dim List = New List(Of RAS.Service1C) 559 | 560 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 561 | 562 | Dim MaxID = 0 563 | 564 | For Each Server1C In ServersList 565 | 566 | Server1C.Clusters.Clear() 567 | Server1C.ConnectionError = "" 568 | 569 | MaxID = Math.Max(Server1C.ID, MaxID) 570 | 571 | List.Add(Server1C) 572 | 573 | Next 574 | 575 | 576 | Dim Server = New RAS.Service1C(MaxID + 1, ServerName, ServerPort) 577 | Server.Descr = Descr 578 | Server.Username = "" 579 | Server.Password = "" 580 | 581 | List.Add(Server) 582 | 583 | Return List 584 | 585 | End Function 586 | 587 | Private Sub AddNewServer_Click(sender As Object, e As EventArgs) Handles AddNewServer.Click 588 | 589 | Dim List = AddNewServerToList("localhost", 1545, "Local server") 590 | 591 | SaveServerListToCookie(List) 592 | 593 | Response.Redirect(Request.Url.AbsoluteUri) 594 | 595 | End Sub 596 | 597 | Private Sub DeleteThisServer_Click(sender As Object, e As EventArgs) Handles DeleteThisServer.Click 598 | 599 | Try 600 | 601 | Dim ServerID = Integer.Parse(DeleteThisServer.Attributes.Item("ServerID")) 602 | 603 | Dim ServersList = GetServerListFromCookie() 604 | 605 | For Each Server1C In ServersList 606 | If Server1C.ID = ServerID Then 607 | ServersList.Remove(Server1C) 608 | Exit For 609 | End If 610 | Next 611 | 612 | SaveServerListToCookie(ServersList) 613 | 614 | Response.Redirect(Request.Url.AbsoluteUri) 615 | 616 | Catch ex As Exception 617 | 618 | End Try 619 | 620 | End Sub 621 | 622 | Private Sub RefreshSessionsList_Click(sender As Object, e As EventArgs) Handles RefreshSessionsList.Click 623 | 624 | Dim ClusterID = RefreshSessionsList.Attributes.Item("ClusterID") 625 | 626 | ShowSessions(ClusterID) 627 | 628 | End Sub 629 | 630 | Private Sub SetServerListByDefault_Click(sender As Object, e As EventArgs) Handles SetServerListByDefault.Click 631 | 632 | SaveCache(New List(Of Service1C)) 633 | 634 | Dim List = New List(Of RAS.Service1C) 635 | 636 | If My.Computer.Name = "ALEX-PC" Then 637 | 638 | List.Add(New RAS.Service1C(1, "localhost", 1545) With {.Descr = "Local server"}) 639 | List.Add(New RAS.Service1C(2, "localhost", 1545) With {.Descr = "Local server"}) 640 | 641 | ElseIf My.Computer.Name = "SRV1007" Then 642 | 643 | List.Add(New RAS.Service1C(1, "srv1007", 1745) With {.Descr = "srv1007:1745"}) 644 | List.Add(New RAS.Service1C(2, "srv1007", 2545) With {.Descr = "srv1007:2545"}) 645 | List.Add(New RAS.Service1C(3, "srv1007", 1545) With {.Descr = "srv1007:1545"}) 646 | ' List.Add(New RAS.Service1C(4, "msc-zvg-1c-01v", 1745) With {.Descr = "Тестовый кластер"}) 647 | List.Add(New RAS.Service1C(5, "msc-zvg-1c-01v", 1945) With {.Descr = "Тестовый кластер"}) 648 | List.Add(New RAS.Service1C(6, "msc-zvg-1c-01v", 2145) With {.Descr = "Тестовый кластер"}) 649 | List.Add(New RAS.Service1C(7, "msc-zvg-1c-01v", 2245) With {.Descr = "Тестовый кластер"}) 650 | List.Add(New RAS.Service1C(8, "msc-zvg-1c-01v", 2345) With {.Descr = "Тестовый кластер"}) 651 | Else 652 | 653 | List.Add(New RAS.Service1C(1, "localhost", 1545) With {.Descr = "Local server"}) 654 | 655 | End If 656 | 657 | SaveServerListToCookie(List) 658 | 659 | Response.Redirect(Request.Url.AbsoluteUri) 660 | 661 | End Sub 662 | 663 | Private Sub ResetAllConnections_Click(sender As Object, e As EventArgs) Handles ResetAllConnections.Click 664 | 665 | End Sub 666 | 667 | Private Sub RefreshConnectionsList_Click(sender As Object, e As EventArgs) Handles RefreshConnectionsList.Click 668 | 669 | Dim ClusterID = RefreshConnectionsList.Attributes.Item("ClusterID") 670 | 671 | ShowConnections(ClusterID) 672 | 673 | End Sub 674 | 675 | Private Sub RefreshProcessesList_Click(sender As Object, e As EventArgs) Handles RefreshProcessesList.Click 676 | 677 | Dim ClusterID = RefreshProcessesList.Attributes.Item("ClusterID") 678 | 679 | ShowProcesses(ClusterID) 680 | 681 | End Sub 682 | End Class 683 | 684 | 685 | -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/Scripts/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | 12 | /* Layout helpers 13 | ----------------------------------*/ 14 | .ui-helper-hidden { 15 | display: none; 16 | } 17 | .ui-helper-hidden-accessible { 18 | border: 0; 19 | clip: rect(0 0 0 0); 20 | height: 1px; 21 | margin: -1px; 22 | overflow: hidden; 23 | padding: 0; 24 | position: absolute; 25 | width: 1px; 26 | } 27 | .ui-helper-reset { 28 | margin: 0; 29 | padding: 0; 30 | border: 0; 31 | outline: 0; 32 | line-height: 1.3; 33 | text-decoration: none; 34 | font-size: 100%; 35 | list-style: none; 36 | } 37 | .ui-helper-clearfix:before, 38 | .ui-helper-clearfix:after { 39 | content: ""; 40 | display: table; 41 | border-collapse: collapse; 42 | } 43 | .ui-helper-clearfix:after { 44 | clear: both; 45 | } 46 | .ui-helper-clearfix { 47 | min-height: 0; /* support: IE7 */ 48 | } 49 | .ui-helper-zfix { 50 | width: 100%; 51 | height: 100%; 52 | top: 0; 53 | left: 0; 54 | position: absolute; 55 | opacity: 0; 56 | filter:Alpha(Opacity=0); /* support: IE8 */ 57 | } 58 | 59 | .ui-front { 60 | z-index: 100; 61 | } 62 | 63 | 64 | /* Interaction Cues 65 | ----------------------------------*/ 66 | .ui-state-disabled { 67 | cursor: default !important; 68 | } 69 | 70 | 71 | /* Icons 72 | ----------------------------------*/ 73 | 74 | /* states and images */ 75 | .ui-icon { 76 | display: block; 77 | text-indent: -99999px; 78 | overflow: hidden; 79 | background-repeat: no-repeat; 80 | } 81 | 82 | 83 | /* Misc visuals 84 | ----------------------------------*/ 85 | 86 | /* Overlays */ 87 | .ui-widget-overlay { 88 | position: fixed; 89 | top: 0; 90 | left: 0; 91 | width: 100%; 92 | height: 100%; 93 | } 94 | .ui-draggable-handle { 95 | -ms-touch-action: none; 96 | touch-action: none; 97 | } 98 | .ui-resizable { 99 | position: relative; 100 | } 101 | .ui-resizable-handle { 102 | position: absolute; 103 | font-size: 0.1px; 104 | display: block; 105 | -ms-touch-action: none; 106 | touch-action: none; 107 | } 108 | .ui-resizable-disabled .ui-resizable-handle, 109 | .ui-resizable-autohide .ui-resizable-handle { 110 | display: none; 111 | } 112 | .ui-resizable-n { 113 | cursor: n-resize; 114 | height: 7px; 115 | width: 100%; 116 | top: -5px; 117 | left: 0; 118 | } 119 | .ui-resizable-s { 120 | cursor: s-resize; 121 | height: 7px; 122 | width: 100%; 123 | bottom: -5px; 124 | left: 0; 125 | } 126 | .ui-resizable-e { 127 | cursor: e-resize; 128 | width: 7px; 129 | right: -5px; 130 | top: 0; 131 | height: 100%; 132 | } 133 | .ui-resizable-w { 134 | cursor: w-resize; 135 | width: 7px; 136 | left: -5px; 137 | top: 0; 138 | height: 100%; 139 | } 140 | .ui-resizable-se { 141 | cursor: se-resize; 142 | width: 12px; 143 | height: 12px; 144 | right: 1px; 145 | bottom: 1px; 146 | } 147 | .ui-resizable-sw { 148 | cursor: sw-resize; 149 | width: 9px; 150 | height: 9px; 151 | left: -5px; 152 | bottom: -5px; 153 | } 154 | .ui-resizable-nw { 155 | cursor: nw-resize; 156 | width: 9px; 157 | height: 9px; 158 | left: -5px; 159 | top: -5px; 160 | } 161 | .ui-resizable-ne { 162 | cursor: ne-resize; 163 | width: 9px; 164 | height: 9px; 165 | right: -5px; 166 | top: -5px; 167 | } 168 | .ui-selectable { 169 | -ms-touch-action: none; 170 | touch-action: none; 171 | } 172 | .ui-selectable-helper { 173 | position: absolute; 174 | z-index: 100; 175 | border: 1px dotted black; 176 | } 177 | .ui-sortable-handle { 178 | -ms-touch-action: none; 179 | touch-action: none; 180 | } 181 | .ui-accordion .ui-accordion-header { 182 | display: block; 183 | cursor: pointer; 184 | position: relative; 185 | margin: 2px 0 0 0; 186 | padding: .5em .5em .5em .7em; 187 | min-height: 0; /* support: IE7 */ 188 | font-size: 100%; 189 | } 190 | .ui-accordion .ui-accordion-icons { 191 | padding-left: 2.2em; 192 | } 193 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { 194 | padding-left: 2.2em; 195 | } 196 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { 197 | position: absolute; 198 | left: .5em; 199 | top: 50%; 200 | margin-top: -8px; 201 | } 202 | .ui-accordion .ui-accordion-content { 203 | padding: 1em 2.2em; 204 | border-top: 0; 205 | overflow: auto; 206 | } 207 | .ui-autocomplete { 208 | position: absolute; 209 | top: 0; 210 | left: 0; 211 | cursor: default; 212 | } 213 | .ui-button { 214 | display: inline-block; 215 | position: relative; 216 | padding: 0; 217 | line-height: normal; 218 | margin-right: .1em; 219 | cursor: pointer; 220 | vertical-align: middle; 221 | text-align: center; 222 | overflow: visible; /* removes extra width in IE */ 223 | } 224 | .ui-button, 225 | .ui-button:link, 226 | .ui-button:visited, 227 | .ui-button:hover, 228 | .ui-button:active { 229 | text-decoration: none; 230 | } 231 | /* to make room for the icon, a width needs to be set here */ 232 | .ui-button-icon-only { 233 | width: 2.2em; 234 | } 235 | /* button elements seem to need a little more width */ 236 | button.ui-button-icon-only { 237 | width: 2.4em; 238 | } 239 | .ui-button-icons-only { 240 | width: 3.4em; 241 | } 242 | button.ui-button-icons-only { 243 | width: 3.7em; 244 | } 245 | 246 | /* button text element */ 247 | .ui-button .ui-button-text { 248 | display: block; 249 | line-height: normal; 250 | } 251 | .ui-button-text-only .ui-button-text { 252 | padding: .4em 1em; 253 | } 254 | .ui-button-icon-only .ui-button-text, 255 | .ui-button-icons-only .ui-button-text { 256 | padding: .4em; 257 | text-indent: -9999999px; 258 | } 259 | .ui-button-text-icon-primary .ui-button-text, 260 | .ui-button-text-icons .ui-button-text { 261 | padding: .4em 1em .4em 2.1em; 262 | } 263 | .ui-button-text-icon-secondary .ui-button-text, 264 | .ui-button-text-icons .ui-button-text { 265 | padding: .4em 2.1em .4em 1em; 266 | } 267 | .ui-button-text-icons .ui-button-text { 268 | padding-left: 2.1em; 269 | padding-right: 2.1em; 270 | } 271 | /* no icon support for input elements, provide padding by default */ 272 | input.ui-button { 273 | padding: .4em 1em; 274 | } 275 | 276 | /* button icon element(s) */ 277 | .ui-button-icon-only .ui-icon, 278 | .ui-button-text-icon-primary .ui-icon, 279 | .ui-button-text-icon-secondary .ui-icon, 280 | .ui-button-text-icons .ui-icon, 281 | .ui-button-icons-only .ui-icon { 282 | position: absolute; 283 | top: 50%; 284 | margin-top: -8px; 285 | } 286 | .ui-button-icon-only .ui-icon { 287 | left: 50%; 288 | margin-left: -8px; 289 | } 290 | .ui-button-text-icon-primary .ui-button-icon-primary, 291 | .ui-button-text-icons .ui-button-icon-primary, 292 | .ui-button-icons-only .ui-button-icon-primary { 293 | left: .5em; 294 | } 295 | .ui-button-text-icon-secondary .ui-button-icon-secondary, 296 | .ui-button-text-icons .ui-button-icon-secondary, 297 | .ui-button-icons-only .ui-button-icon-secondary { 298 | right: .5em; 299 | } 300 | 301 | /* button sets */ 302 | .ui-buttonset { 303 | margin-right: 7px; 304 | } 305 | .ui-buttonset .ui-button { 306 | margin-left: 0; 307 | margin-right: -.3em; 308 | } 309 | 310 | /* workarounds */ 311 | /* reset extra padding in Firefox, see h5bp.com/l */ 312 | input.ui-button::-moz-focus-inner, 313 | button.ui-button::-moz-focus-inner { 314 | border: 0; 315 | padding: 0; 316 | } 317 | .ui-datepicker { 318 | width: 17em; 319 | padding: .2em .2em 0; 320 | display: none; 321 | } 322 | .ui-datepicker .ui-datepicker-header { 323 | position: relative; 324 | padding: .2em 0; 325 | } 326 | .ui-datepicker .ui-datepicker-prev, 327 | .ui-datepicker .ui-datepicker-next { 328 | position: absolute; 329 | top: 2px; 330 | width: 1.8em; 331 | height: 1.8em; 332 | } 333 | .ui-datepicker .ui-datepicker-prev-hover, 334 | .ui-datepicker .ui-datepicker-next-hover { 335 | top: 1px; 336 | } 337 | .ui-datepicker .ui-datepicker-prev { 338 | left: 2px; 339 | } 340 | .ui-datepicker .ui-datepicker-next { 341 | right: 2px; 342 | } 343 | .ui-datepicker .ui-datepicker-prev-hover { 344 | left: 1px; 345 | } 346 | .ui-datepicker .ui-datepicker-next-hover { 347 | right: 1px; 348 | } 349 | .ui-datepicker .ui-datepicker-prev span, 350 | .ui-datepicker .ui-datepicker-next span { 351 | display: block; 352 | position: absolute; 353 | left: 50%; 354 | margin-left: -8px; 355 | top: 50%; 356 | margin-top: -8px; 357 | } 358 | .ui-datepicker .ui-datepicker-title { 359 | margin: 0 2.3em; 360 | line-height: 1.8em; 361 | text-align: center; 362 | } 363 | .ui-datepicker .ui-datepicker-title select { 364 | font-size: 1em; 365 | margin: 1px 0; 366 | } 367 | .ui-datepicker select.ui-datepicker-month, 368 | .ui-datepicker select.ui-datepicker-year { 369 | width: 45%; 370 | } 371 | .ui-datepicker table { 372 | width: 100%; 373 | font-size: .9em; 374 | border-collapse: collapse; 375 | margin: 0 0 .4em; 376 | } 377 | .ui-datepicker th { 378 | padding: .7em .3em; 379 | text-align: center; 380 | font-weight: bold; 381 | border: 0; 382 | } 383 | .ui-datepicker td { 384 | border: 0; 385 | padding: 1px; 386 | } 387 | .ui-datepicker td span, 388 | .ui-datepicker td a { 389 | display: block; 390 | padding: .2em; 391 | text-align: right; 392 | text-decoration: none; 393 | } 394 | .ui-datepicker .ui-datepicker-buttonpane { 395 | background-image: none; 396 | margin: .7em 0 0 0; 397 | padding: 0 .2em; 398 | border-left: 0; 399 | border-right: 0; 400 | border-bottom: 0; 401 | } 402 | .ui-datepicker .ui-datepicker-buttonpane button { 403 | float: right; 404 | margin: .5em .2em .4em; 405 | cursor: pointer; 406 | padding: .2em .6em .3em .6em; 407 | width: auto; 408 | overflow: visible; 409 | } 410 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { 411 | float: left; 412 | } 413 | 414 | /* with multiple calendars */ 415 | .ui-datepicker.ui-datepicker-multi { 416 | width: auto; 417 | } 418 | .ui-datepicker-multi .ui-datepicker-group { 419 | float: left; 420 | } 421 | .ui-datepicker-multi .ui-datepicker-group table { 422 | width: 95%; 423 | margin: 0 auto .4em; 424 | } 425 | .ui-datepicker-multi-2 .ui-datepicker-group { 426 | width: 50%; 427 | } 428 | .ui-datepicker-multi-3 .ui-datepicker-group { 429 | width: 33.3%; 430 | } 431 | .ui-datepicker-multi-4 .ui-datepicker-group { 432 | width: 25%; 433 | } 434 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, 435 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { 436 | border-left-width: 0; 437 | } 438 | .ui-datepicker-multi .ui-datepicker-buttonpane { 439 | clear: left; 440 | } 441 | .ui-datepicker-row-break { 442 | clear: both; 443 | width: 100%; 444 | font-size: 0; 445 | } 446 | 447 | /* RTL support */ 448 | .ui-datepicker-rtl { 449 | direction: rtl; 450 | } 451 | .ui-datepicker-rtl .ui-datepicker-prev { 452 | right: 2px; 453 | left: auto; 454 | } 455 | .ui-datepicker-rtl .ui-datepicker-next { 456 | left: 2px; 457 | right: auto; 458 | } 459 | .ui-datepicker-rtl .ui-datepicker-prev:hover { 460 | right: 1px; 461 | left: auto; 462 | } 463 | .ui-datepicker-rtl .ui-datepicker-next:hover { 464 | left: 1px; 465 | right: auto; 466 | } 467 | .ui-datepicker-rtl .ui-datepicker-buttonpane { 468 | clear: right; 469 | } 470 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { 471 | float: left; 472 | } 473 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, 474 | .ui-datepicker-rtl .ui-datepicker-group { 475 | float: right; 476 | } 477 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, 478 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { 479 | border-right-width: 0; 480 | border-left-width: 1px; 481 | } 482 | .ui-dialog { 483 | overflow: hidden; 484 | position: absolute; 485 | top: 0; 486 | left: 0; 487 | padding: .2em; 488 | outline: 0; 489 | } 490 | .ui-dialog .ui-dialog-titlebar { 491 | padding: .4em 1em; 492 | position: relative; 493 | } 494 | .ui-dialog .ui-dialog-title { 495 | float: left; 496 | margin: .1em 0; 497 | white-space: nowrap; 498 | width: 90%; 499 | overflow: hidden; 500 | text-overflow: ellipsis; 501 | } 502 | .ui-dialog .ui-dialog-titlebar-close { 503 | position: absolute; 504 | right: .3em; 505 | top: 50%; 506 | width: 20px; 507 | margin: -10px 0 0 0; 508 | padding: 1px; 509 | height: 20px; 510 | } 511 | .ui-dialog .ui-dialog-content { 512 | position: relative; 513 | border: 0; 514 | padding: .5em 1em; 515 | background: none; 516 | overflow: auto; 517 | } 518 | .ui-dialog .ui-dialog-buttonpane { 519 | text-align: left; 520 | border-width: 1px 0 0 0; 521 | background-image: none; 522 | margin-top: .5em; 523 | padding: .3em 1em .5em .4em; 524 | } 525 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { 526 | float: right; 527 | } 528 | .ui-dialog .ui-dialog-buttonpane button { 529 | margin: .5em .4em .5em 0; 530 | cursor: pointer; 531 | } 532 | .ui-dialog .ui-resizable-se { 533 | width: 12px; 534 | height: 12px; 535 | right: -5px; 536 | bottom: -5px; 537 | background-position: 16px 16px; 538 | } 539 | .ui-draggable .ui-dialog-titlebar { 540 | cursor: move; 541 | } 542 | .ui-menu { 543 | list-style: none; 544 | padding: 0; 545 | margin: 0; 546 | display: block; 547 | outline: none; 548 | } 549 | .ui-menu .ui-menu { 550 | position: absolute; 551 | } 552 | .ui-menu .ui-menu-item { 553 | position: relative; 554 | margin: 0; 555 | padding: 3px 1em 3px .4em; 556 | cursor: pointer; 557 | min-height: 0; /* support: IE7 */ 558 | /* support: IE10, see #8844 */ 559 | list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); 560 | } 561 | .ui-menu .ui-menu-divider { 562 | margin: 5px 0; 563 | height: 0; 564 | font-size: 0; 565 | line-height: 0; 566 | border-width: 1px 0 0 0; 567 | } 568 | .ui-menu .ui-state-focus, 569 | .ui-menu .ui-state-active { 570 | margin: -1px; 571 | } 572 | 573 | /* icon support */ 574 | .ui-menu-icons { 575 | position: relative; 576 | } 577 | .ui-menu-icons .ui-menu-item { 578 | padding-left: 2em; 579 | } 580 | 581 | /* left-aligned */ 582 | .ui-menu .ui-icon { 583 | position: absolute; 584 | top: 0; 585 | bottom: 0; 586 | left: .2em; 587 | margin: auto 0; 588 | } 589 | 590 | /* right-aligned */ 591 | .ui-menu .ui-menu-icon { 592 | left: auto; 593 | right: 0; 594 | } 595 | .ui-progressbar { 596 | height: 2em; 597 | text-align: left; 598 | overflow: hidden; 599 | } 600 | .ui-progressbar .ui-progressbar-value { 601 | margin: -1px; 602 | height: 100%; 603 | } 604 | .ui-progressbar .ui-progressbar-overlay { 605 | background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw=="); 606 | height: 100%; 607 | filter: alpha(opacity=25); /* support: IE8 */ 608 | opacity: 0.25; 609 | } 610 | .ui-progressbar-indeterminate .ui-progressbar-value { 611 | background-image: none; 612 | } 613 | .ui-selectmenu-menu { 614 | padding: 0; 615 | margin: 0; 616 | position: absolute; 617 | top: 0; 618 | left: 0; 619 | display: none; 620 | } 621 | .ui-selectmenu-menu .ui-menu { 622 | overflow: auto; 623 | /* Support: IE7 */ 624 | overflow-x: hidden; 625 | padding-bottom: 1px; 626 | } 627 | .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { 628 | font-size: 1em; 629 | font-weight: bold; 630 | line-height: 1.5; 631 | padding: 2px 0.4em; 632 | margin: 0.5em 0 0 0; 633 | height: auto; 634 | border: 0; 635 | } 636 | .ui-selectmenu-open { 637 | display: block; 638 | } 639 | .ui-selectmenu-button { 640 | display: inline-block; 641 | overflow: hidden; 642 | position: relative; 643 | text-decoration: none; 644 | cursor: pointer; 645 | } 646 | .ui-selectmenu-button span.ui-icon { 647 | right: 0.5em; 648 | left: auto; 649 | margin-top: -8px; 650 | position: absolute; 651 | top: 50%; 652 | } 653 | .ui-selectmenu-button span.ui-selectmenu-text { 654 | text-align: left; 655 | padding: 0.4em 2.1em 0.4em 1em; 656 | display: block; 657 | line-height: 1.4; 658 | overflow: hidden; 659 | text-overflow: ellipsis; 660 | white-space: nowrap; 661 | } 662 | .ui-slider { 663 | position: relative; 664 | text-align: left; 665 | } 666 | .ui-slider .ui-slider-handle { 667 | position: absolute; 668 | z-index: 2; 669 | width: 1.2em; 670 | height: 1.2em; 671 | cursor: default; 672 | -ms-touch-action: none; 673 | touch-action: none; 674 | } 675 | .ui-slider .ui-slider-range { 676 | position: absolute; 677 | z-index: 1; 678 | font-size: .7em; 679 | display: block; 680 | border: 0; 681 | background-position: 0 0; 682 | } 683 | 684 | /* support: IE8 - See #6727 */ 685 | .ui-slider.ui-state-disabled .ui-slider-handle, 686 | .ui-slider.ui-state-disabled .ui-slider-range { 687 | filter: inherit; 688 | } 689 | 690 | .ui-slider-horizontal { 691 | height: .8em; 692 | } 693 | .ui-slider-horizontal .ui-slider-handle { 694 | top: -.3em; 695 | margin-left: -.6em; 696 | } 697 | .ui-slider-horizontal .ui-slider-range { 698 | top: 0; 699 | height: 100%; 700 | } 701 | .ui-slider-horizontal .ui-slider-range-min { 702 | left: 0; 703 | } 704 | .ui-slider-horizontal .ui-slider-range-max { 705 | right: 0; 706 | } 707 | 708 | .ui-slider-vertical { 709 | width: .8em; 710 | height: 100px; 711 | } 712 | .ui-slider-vertical .ui-slider-handle { 713 | left: -.3em; 714 | margin-left: 0; 715 | margin-bottom: -.6em; 716 | } 717 | .ui-slider-vertical .ui-slider-range { 718 | left: 0; 719 | width: 100%; 720 | } 721 | .ui-slider-vertical .ui-slider-range-min { 722 | bottom: 0; 723 | } 724 | .ui-slider-vertical .ui-slider-range-max { 725 | top: 0; 726 | } 727 | .ui-spinner { 728 | position: relative; 729 | display: inline-block; 730 | overflow: hidden; 731 | padding: 0; 732 | vertical-align: middle; 733 | } 734 | .ui-spinner-input { 735 | border: none; 736 | background: none; 737 | color: inherit; 738 | padding: 0; 739 | margin: .2em 0; 740 | vertical-align: middle; 741 | margin-left: .4em; 742 | margin-right: 22px; 743 | } 744 | .ui-spinner-button { 745 | width: 16px; 746 | height: 50%; 747 | font-size: .5em; 748 | padding: 0; 749 | margin: 0; 750 | text-align: center; 751 | position: absolute; 752 | cursor: default; 753 | display: block; 754 | overflow: hidden; 755 | right: 0; 756 | } 757 | /* more specificity required here to override default borders */ 758 | .ui-spinner a.ui-spinner-button { 759 | border-top: none; 760 | border-bottom: none; 761 | border-right: none; 762 | } 763 | /* vertically center icon */ 764 | .ui-spinner .ui-icon { 765 | position: absolute; 766 | margin-top: -8px; 767 | top: 50%; 768 | left: 0; 769 | } 770 | .ui-spinner-up { 771 | top: 0; 772 | } 773 | .ui-spinner-down { 774 | bottom: 0; 775 | } 776 | 777 | /* TR overrides */ 778 | .ui-spinner .ui-icon-triangle-1-s { 779 | /* need to fix icons sprite */ 780 | background-position: -65px -16px; 781 | } 782 | .ui-tabs { 783 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 784 | padding: .2em; 785 | } 786 | .ui-tabs .ui-tabs-nav { 787 | margin: 0; 788 | padding: .2em .2em 0; 789 | } 790 | .ui-tabs .ui-tabs-nav li { 791 | list-style: none; 792 | float: left; 793 | position: relative; 794 | top: 0; 795 | margin: 1px .2em 0 0; 796 | border-bottom-width: 0; 797 | padding: 0; 798 | white-space: nowrap; 799 | } 800 | .ui-tabs .ui-tabs-nav .ui-tabs-anchor { 801 | float: left; 802 | padding: .5em 1em; 803 | text-decoration: none; 804 | } 805 | .ui-tabs .ui-tabs-nav li.ui-tabs-active { 806 | margin-bottom: -1px; 807 | padding-bottom: 1px; 808 | } 809 | .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, 810 | .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, 811 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { 812 | cursor: text; 813 | } 814 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { 815 | cursor: pointer; 816 | } 817 | .ui-tabs .ui-tabs-panel { 818 | display: block; 819 | border-width: 0; 820 | padding: 1em 1.4em; 821 | background: none; 822 | } 823 | .ui-tooltip { 824 | padding: 8px; 825 | position: absolute; 826 | z-index: 9999; 827 | max-width: 300px; 828 | -webkit-box-shadow: 0 0 5px #aaa; 829 | box-shadow: 0 0 5px #aaa; 830 | } 831 | body .ui-tooltip { 832 | border-width: 2px; 833 | } 834 | -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.11.4 - 2015-10-18 2 | * http://jqueryui.com 3 | * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.11.4 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | * 11 | * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px 12 | */ 13 | 14 | 15 | /* Component containers 16 | ----------------------------------*/ 17 | .ui-widget { 18 | font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif; 19 | font-size: 1.1em; 20 | } 21 | .ui-widget .ui-widget { 22 | font-size: 1em; 23 | } 24 | .ui-widget input, 25 | .ui-widget select, 26 | .ui-widget textarea, 27 | .ui-widget button { 28 | font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif; 29 | font-size: 1em; 30 | } 31 | .ui-widget-content { 32 | border: 1px solid #dddddd; 33 | background: #eeeeee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x; 34 | color: #333333; 35 | } 36 | .ui-widget-content a { 37 | color: #333333; 38 | } 39 | .ui-widget-header { 40 | border: 1px solid #e78f08; 41 | background: #f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x; 42 | color: #ffffff; 43 | font-weight: bold; 44 | } 45 | .ui-widget-header a { 46 | color: #ffffff; 47 | } 48 | 49 | /* Interaction states 50 | ----------------------------------*/ 51 | .ui-state-default, 52 | .ui-widget-content .ui-state-default, 53 | .ui-widget-header .ui-state-default { 54 | border: 1px solid #cccccc; 55 | background: #f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x; 56 | font-weight: bold; 57 | color: #1c94c4; 58 | } 59 | .ui-state-default a, 60 | .ui-state-default a:link, 61 | .ui-state-default a:visited { 62 | color: #1c94c4; 63 | text-decoration: none; 64 | } 65 | .ui-state-hover, 66 | .ui-widget-content .ui-state-hover, 67 | .ui-widget-header .ui-state-hover, 68 | .ui-state-focus, 69 | .ui-widget-content .ui-state-focus, 70 | .ui-widget-header .ui-state-focus { 71 | border: 1px solid #fbcb09; 72 | background: #fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x; 73 | font-weight: bold; 74 | color: #c77405; 75 | } 76 | .ui-state-hover a, 77 | .ui-state-hover a:hover, 78 | .ui-state-hover a:link, 79 | .ui-state-hover a:visited, 80 | .ui-state-focus a, 81 | .ui-state-focus a:hover, 82 | .ui-state-focus a:link, 83 | .ui-state-focus a:visited { 84 | color: #c77405; 85 | text-decoration: none; 86 | } 87 | .ui-state-active, 88 | .ui-widget-content .ui-state-active, 89 | .ui-widget-header .ui-state-active { 90 | border: 1px solid #fbd850; 91 | background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x; 92 | font-weight: bold; 93 | color: #eb8f00; 94 | } 95 | .ui-state-active a, 96 | .ui-state-active a:link, 97 | .ui-state-active a:visited { 98 | color: #eb8f00; 99 | text-decoration: none; 100 | } 101 | 102 | /* Interaction Cues 103 | ----------------------------------*/ 104 | .ui-state-highlight, 105 | .ui-widget-content .ui-state-highlight, 106 | .ui-widget-header .ui-state-highlight { 107 | border: 1px solid #fed22f; 108 | background: #ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x; 109 | color: #363636; 110 | } 111 | .ui-state-highlight a, 112 | .ui-widget-content .ui-state-highlight a, 113 | .ui-widget-header .ui-state-highlight a { 114 | color: #363636; 115 | } 116 | .ui-state-error, 117 | .ui-widget-content .ui-state-error, 118 | .ui-widget-header .ui-state-error { 119 | border: 1px solid #cd0a0a; 120 | background: #b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat; 121 | color: #ffffff; 122 | } 123 | .ui-state-error a, 124 | .ui-widget-content .ui-state-error a, 125 | .ui-widget-header .ui-state-error a { 126 | color: #ffffff; 127 | } 128 | .ui-state-error-text, 129 | .ui-widget-content .ui-state-error-text, 130 | .ui-widget-header .ui-state-error-text { 131 | color: #ffffff; 132 | } 133 | .ui-priority-primary, 134 | .ui-widget-content .ui-priority-primary, 135 | .ui-widget-header .ui-priority-primary { 136 | font-weight: bold; 137 | } 138 | .ui-priority-secondary, 139 | .ui-widget-content .ui-priority-secondary, 140 | .ui-widget-header .ui-priority-secondary { 141 | opacity: .7; 142 | filter:Alpha(Opacity=70); /* support: IE8 */ 143 | font-weight: normal; 144 | } 145 | .ui-state-disabled, 146 | .ui-widget-content .ui-state-disabled, 147 | .ui-widget-header .ui-state-disabled { 148 | opacity: .35; 149 | filter:Alpha(Opacity=35); /* support: IE8 */ 150 | background-image: none; 151 | } 152 | .ui-state-disabled .ui-icon { 153 | filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */ 154 | } 155 | 156 | /* Icons 157 | ----------------------------------*/ 158 | 159 | /* states and images */ 160 | .ui-icon { 161 | width: 16px; 162 | height: 16px; 163 | } 164 | .ui-icon, 165 | .ui-widget-content .ui-icon { 166 | background-image: url("images/ui-icons_222222_256x240.png"); 167 | } 168 | .ui-widget-header .ui-icon { 169 | background-image: url("images/ui-icons_ffffff_256x240.png"); 170 | } 171 | .ui-state-default .ui-icon { 172 | background-image: url("images/ui-icons_ef8c08_256x240.png"); 173 | } 174 | .ui-state-hover .ui-icon, 175 | .ui-state-focus .ui-icon { 176 | background-image: url("images/ui-icons_ef8c08_256x240.png"); 177 | } 178 | .ui-state-active .ui-icon { 179 | background-image: url("images/ui-icons_ef8c08_256x240.png"); 180 | } 181 | .ui-state-highlight .ui-icon { 182 | background-image: url("images/ui-icons_228ef1_256x240.png"); 183 | } 184 | .ui-state-error .ui-icon, 185 | .ui-state-error-text .ui-icon { 186 | background-image: url("images/ui-icons_ffd27a_256x240.png"); 187 | } 188 | 189 | /* positioning */ 190 | .ui-icon-blank { background-position: 16px 16px; } 191 | .ui-icon-carat-1-n { background-position: 0 0; } 192 | .ui-icon-carat-1-ne { background-position: -16px 0; } 193 | .ui-icon-carat-1-e { background-position: -32px 0; } 194 | .ui-icon-carat-1-se { background-position: -48px 0; } 195 | .ui-icon-carat-1-s { background-position: -64px 0; } 196 | .ui-icon-carat-1-sw { background-position: -80px 0; } 197 | .ui-icon-carat-1-w { background-position: -96px 0; } 198 | .ui-icon-carat-1-nw { background-position: -112px 0; } 199 | .ui-icon-carat-2-n-s { background-position: -128px 0; } 200 | .ui-icon-carat-2-e-w { background-position: -144px 0; } 201 | .ui-icon-triangle-1-n { background-position: 0 -16px; } 202 | .ui-icon-triangle-1-ne { background-position: -16px -16px; } 203 | .ui-icon-triangle-1-e { background-position: -32px -16px; } 204 | .ui-icon-triangle-1-se { background-position: -48px -16px; } 205 | .ui-icon-triangle-1-s { background-position: -64px -16px; } 206 | .ui-icon-triangle-1-sw { background-position: -80px -16px; } 207 | .ui-icon-triangle-1-w { background-position: -96px -16px; } 208 | .ui-icon-triangle-1-nw { background-position: -112px -16px; } 209 | .ui-icon-triangle-2-n-s { background-position: -128px -16px; } 210 | .ui-icon-triangle-2-e-w { background-position: -144px -16px; } 211 | .ui-icon-arrow-1-n { background-position: 0 -32px; } 212 | .ui-icon-arrow-1-ne { background-position: -16px -32px; } 213 | .ui-icon-arrow-1-e { background-position: -32px -32px; } 214 | .ui-icon-arrow-1-se { background-position: -48px -32px; } 215 | .ui-icon-arrow-1-s { background-position: -64px -32px; } 216 | .ui-icon-arrow-1-sw { background-position: -80px -32px; } 217 | .ui-icon-arrow-1-w { background-position: -96px -32px; } 218 | .ui-icon-arrow-1-nw { background-position: -112px -32px; } 219 | .ui-icon-arrow-2-n-s { background-position: -128px -32px; } 220 | .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } 221 | .ui-icon-arrow-2-e-w { background-position: -160px -32px; } 222 | .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } 223 | .ui-icon-arrowstop-1-n { background-position: -192px -32px; } 224 | .ui-icon-arrowstop-1-e { background-position: -208px -32px; } 225 | .ui-icon-arrowstop-1-s { background-position: -224px -32px; } 226 | .ui-icon-arrowstop-1-w { background-position: -240px -32px; } 227 | .ui-icon-arrowthick-1-n { background-position: 0 -48px; } 228 | .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } 229 | .ui-icon-arrowthick-1-e { background-position: -32px -48px; } 230 | .ui-icon-arrowthick-1-se { background-position: -48px -48px; } 231 | .ui-icon-arrowthick-1-s { background-position: -64px -48px; } 232 | .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } 233 | .ui-icon-arrowthick-1-w { background-position: -96px -48px; } 234 | .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } 235 | .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } 236 | .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } 237 | .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } 238 | .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } 239 | .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } 240 | .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } 241 | .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } 242 | .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } 243 | .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } 244 | .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } 245 | .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } 246 | .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } 247 | .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } 248 | .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } 249 | .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } 250 | .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } 251 | .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } 252 | .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } 253 | .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } 254 | .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } 255 | .ui-icon-arrow-4 { background-position: 0 -80px; } 256 | .ui-icon-arrow-4-diag { background-position: -16px -80px; } 257 | .ui-icon-extlink { background-position: -32px -80px; } 258 | .ui-icon-newwin { background-position: -48px -80px; } 259 | .ui-icon-refresh { background-position: -64px -80px; } 260 | .ui-icon-shuffle { background-position: -80px -80px; } 261 | .ui-icon-transfer-e-w { background-position: -96px -80px; } 262 | .ui-icon-transferthick-e-w { background-position: -112px -80px; } 263 | .ui-icon-folder-collapsed { background-position: 0 -96px; } 264 | .ui-icon-folder-open { background-position: -16px -96px; } 265 | .ui-icon-document { background-position: -32px -96px; } 266 | .ui-icon-document-b { background-position: -48px -96px; } 267 | .ui-icon-note { background-position: -64px -96px; } 268 | .ui-icon-mail-closed { background-position: -80px -96px; } 269 | .ui-icon-mail-open { background-position: -96px -96px; } 270 | .ui-icon-suitcase { background-position: -112px -96px; } 271 | .ui-icon-comment { background-position: -128px -96px; } 272 | .ui-icon-person { background-position: -144px -96px; } 273 | .ui-icon-print { background-position: -160px -96px; } 274 | .ui-icon-trash { background-position: -176px -96px; } 275 | .ui-icon-locked { background-position: -192px -96px; } 276 | .ui-icon-unlocked { background-position: -208px -96px; } 277 | .ui-icon-bookmark { background-position: -224px -96px; } 278 | .ui-icon-tag { background-position: -240px -96px; } 279 | .ui-icon-home { background-position: 0 -112px; } 280 | .ui-icon-flag { background-position: -16px -112px; } 281 | .ui-icon-calendar { background-position: -32px -112px; } 282 | .ui-icon-cart { background-position: -48px -112px; } 283 | .ui-icon-pencil { background-position: -64px -112px; } 284 | .ui-icon-clock { background-position: -80px -112px; } 285 | .ui-icon-disk { background-position: -96px -112px; } 286 | .ui-icon-calculator { background-position: -112px -112px; } 287 | .ui-icon-zoomin { background-position: -128px -112px; } 288 | .ui-icon-zoomout { background-position: -144px -112px; } 289 | .ui-icon-search { background-position: -160px -112px; } 290 | .ui-icon-wrench { background-position: -176px -112px; } 291 | .ui-icon-gear { background-position: -192px -112px; } 292 | .ui-icon-heart { background-position: -208px -112px; } 293 | .ui-icon-star { background-position: -224px -112px; } 294 | .ui-icon-link { background-position: -240px -112px; } 295 | .ui-icon-cancel { background-position: 0 -128px; } 296 | .ui-icon-plus { background-position: -16px -128px; } 297 | .ui-icon-plusthick { background-position: -32px -128px; } 298 | .ui-icon-minus { background-position: -48px -128px; } 299 | .ui-icon-minusthick { background-position: -64px -128px; } 300 | .ui-icon-close { background-position: -80px -128px; } 301 | .ui-icon-closethick { background-position: -96px -128px; } 302 | .ui-icon-key { background-position: -112px -128px; } 303 | .ui-icon-lightbulb { background-position: -128px -128px; } 304 | .ui-icon-scissors { background-position: -144px -128px; } 305 | .ui-icon-clipboard { background-position: -160px -128px; } 306 | .ui-icon-copy { background-position: -176px -128px; } 307 | .ui-icon-contact { background-position: -192px -128px; } 308 | .ui-icon-image { background-position: -208px -128px; } 309 | .ui-icon-video { background-position: -224px -128px; } 310 | .ui-icon-script { background-position: -240px -128px; } 311 | .ui-icon-alert { background-position: 0 -144px; } 312 | .ui-icon-info { background-position: -16px -144px; } 313 | .ui-icon-notice { background-position: -32px -144px; } 314 | .ui-icon-help { background-position: -48px -144px; } 315 | .ui-icon-check { background-position: -64px -144px; } 316 | .ui-icon-bullet { background-position: -80px -144px; } 317 | .ui-icon-radio-on { background-position: -96px -144px; } 318 | .ui-icon-radio-off { background-position: -112px -144px; } 319 | .ui-icon-pin-w { background-position: -128px -144px; } 320 | .ui-icon-pin-s { background-position: -144px -144px; } 321 | .ui-icon-play { background-position: 0 -160px; } 322 | .ui-icon-pause { background-position: -16px -160px; } 323 | .ui-icon-seek-next { background-position: -32px -160px; } 324 | .ui-icon-seek-prev { background-position: -48px -160px; } 325 | .ui-icon-seek-end { background-position: -64px -160px; } 326 | .ui-icon-seek-start { background-position: -80px -160px; } 327 | /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ 328 | .ui-icon-seek-first { background-position: -80px -160px; } 329 | .ui-icon-stop { background-position: -96px -160px; } 330 | .ui-icon-eject { background-position: -112px -160px; } 331 | .ui-icon-volume-off { background-position: -128px -160px; } 332 | .ui-icon-volume-on { background-position: -144px -160px; } 333 | .ui-icon-power { background-position: 0 -176px; } 334 | .ui-icon-signal-diag { background-position: -16px -176px; } 335 | .ui-icon-signal { background-position: -32px -176px; } 336 | .ui-icon-battery-0 { background-position: -48px -176px; } 337 | .ui-icon-battery-1 { background-position: -64px -176px; } 338 | .ui-icon-battery-2 { background-position: -80px -176px; } 339 | .ui-icon-battery-3 { background-position: -96px -176px; } 340 | .ui-icon-circle-plus { background-position: 0 -192px; } 341 | .ui-icon-circle-minus { background-position: -16px -192px; } 342 | .ui-icon-circle-close { background-position: -32px -192px; } 343 | .ui-icon-circle-triangle-e { background-position: -48px -192px; } 344 | .ui-icon-circle-triangle-s { background-position: -64px -192px; } 345 | .ui-icon-circle-triangle-w { background-position: -80px -192px; } 346 | .ui-icon-circle-triangle-n { background-position: -96px -192px; } 347 | .ui-icon-circle-arrow-e { background-position: -112px -192px; } 348 | .ui-icon-circle-arrow-s { background-position: -128px -192px; } 349 | .ui-icon-circle-arrow-w { background-position: -144px -192px; } 350 | .ui-icon-circle-arrow-n { background-position: -160px -192px; } 351 | .ui-icon-circle-zoomin { background-position: -176px -192px; } 352 | .ui-icon-circle-zoomout { background-position: -192px -192px; } 353 | .ui-icon-circle-check { background-position: -208px -192px; } 354 | .ui-icon-circlesmall-plus { background-position: 0 -208px; } 355 | .ui-icon-circlesmall-minus { background-position: -16px -208px; } 356 | .ui-icon-circlesmall-close { background-position: -32px -208px; } 357 | .ui-icon-squaresmall-plus { background-position: -48px -208px; } 358 | .ui-icon-squaresmall-minus { background-position: -64px -208px; } 359 | .ui-icon-squaresmall-close { background-position: -80px -208px; } 360 | .ui-icon-grip-dotted-vertical { background-position: 0 -224px; } 361 | .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } 362 | .ui-icon-grip-solid-vertical { background-position: -32px -224px; } 363 | .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } 364 | .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } 365 | .ui-icon-grip-diagonal-se { background-position: -80px -224px; } 366 | 367 | 368 | /* Misc visuals 369 | ----------------------------------*/ 370 | 371 | /* Corner radius */ 372 | .ui-corner-all, 373 | .ui-corner-top, 374 | .ui-corner-left, 375 | .ui-corner-tl { 376 | border-top-left-radius: 4px; 377 | } 378 | .ui-corner-all, 379 | .ui-corner-top, 380 | .ui-corner-right, 381 | .ui-corner-tr { 382 | border-top-right-radius: 4px; 383 | } 384 | .ui-corner-all, 385 | .ui-corner-bottom, 386 | .ui-corner-left, 387 | .ui-corner-bl { 388 | border-bottom-left-radius: 4px; 389 | } 390 | .ui-corner-all, 391 | .ui-corner-bottom, 392 | .ui-corner-right, 393 | .ui-corner-br { 394 | border-bottom-right-radius: 4px; 395 | } 396 | 397 | /* Overlays */ 398 | .ui-widget-overlay { 399 | background: #666666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat; 400 | opacity: .5; 401 | filter: Alpha(Opacity=50); /* support: IE8 */ 402 | } 403 | .ui-widget-shadow { 404 | margin: -5px 0 0 -5px; 405 | padding: 5px; 406 | background: #000000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x; 407 | opacity: .2; 408 | filter: Alpha(Opacity=20); /* support: IE8 */ 409 | border-radius: 5px; 410 | } 411 | -------------------------------------------------------------------------------- /WebSite4/Scripts/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.11.4 - 2015-10-18 2 | * http://jqueryui.com 3 | * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ 4 | 5 | .ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px} -------------------------------------------------------------------------------- /WebSite4/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 10 | 11 | 12 | 13 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | 33 | 38 | 39 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /WebSite4/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/favicon.ico -------------------------------------------------------------------------------- /WebSite4/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebSite4/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebSite4/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebSite4/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bochkov/WebRAS/230f206bec01877d217c42a9f138a356758edf14/WebSite4/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WebSite4/ib.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="VB" AutoEventWireup="false" CodeFile="ib.aspx.vb" Inherits="ib" %> 2 | 3 | 4 | 5 | 6 | 7 | Параметры ИБ 8 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
30 | 31 | 32 | Авторизация 33 | 34 | 40 | 41 | 42 |
43 | 44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 | 52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 | 60 |
61 |
62 | 63 |
64 |
65 |
66 | 67 | 68 |
69 | 70 |
71 | 72 |
73 |
74 | 75 |
76 |
77 |
78 | 79 |
80 | 81 | Параметры информационной базы 82 | 83 | 84 | 85 | 86 |

87 | 88 | 89 |

90 | 91 |

92 | 93 | 94 |

95 | 96 | 97 |

98 | 99 | 100 |

101 | 102 |
103 | Подключение к СУБД: 104 | 105 | 106 |

107 | 108 | 109 |

110 | 111 | 112 |

113 | 114 | 115 |

116 | 117 | 118 |

119 | 120 | 121 |

122 | 123 | 124 |

125 | 126 | 127 |

128 | 129 | 130 |

131 | 132 | 133 |

134 | 135 | 136 |

137 | 138 | 139 |

140 | 141 | 142 |

143 | 144 | 145 |

146 | 147 | 148 | 149 |
150 | 151 |
152 | Блокировка установки соединений 153 | 154 |

155 | 156 |

157 | 158 |

159 | 160 |
161 | 162 | 167 | 168 | 169 |

170 | 171 | 172 |

173 | 174 |
175 | 176 | 182 | 183 |

184 | 185 | 186 |

187 | 188 | 189 |

190 | 191 | 192 |

193 | 194 | 195 |

196 | 197 |

198 | 199 | 200 |

201 | 202 |
203 | 204 | 205 |

206 | 207 |

208 | 209 | 210 |

211 | 212 |

213 | 214 |
215 |
216 | 217 | 218 |
219 |
220 | 221 |
222 | 223 |
224 |
225 | 226 | 227 | 228 | 229 | 272 | 273 | 274 | -------------------------------------------------------------------------------- /WebSite4/ib.aspx.vb: -------------------------------------------------------------------------------- 1 |  2 | Partial Class ib 3 | Inherits System.Web.UI.Page 4 | 5 | Private Sub ib_Load(sender As Object, e As EventArgs) Handles Me.Load 6 | 7 | If Not IsPostBack Then 8 | 9 | ShowInfoBaseForm() 10 | 11 | End If 12 | 13 | 14 | End Sub 15 | 16 | 17 | Sub ShowInfoBaseForm() 18 | 19 | Dim InfoBaseStringID As String = Request.QueryString.Item("InfoBaseID") 20 | Dim ClusterID As String = Request.QueryString.Item("ClusterID") 21 | Dim ServerID As String = Request.QueryString.Item("ServerID") 22 | 23 | 24 | If Not String.IsNullOrEmpty(InfoBaseStringID) _ 25 | And Not String.IsNullOrEmpty(ClusterID) _ 26 | And Not String.IsNullOrEmpty(ServerID) Then 27 | 28 | Dim ServersList As List(Of RAS.Service1C) = HttpContext.Current.Cache.Get("ServersList") 29 | 30 | For Each Server1C In ServersList 31 | If Server1C.ID.ToString = ServerID Then 32 | 33 | Dim StrUserName = UserName.Text 34 | Dim StrPassword = Password.Text 35 | 36 | If String.IsNullOrEmpty(StrUserName) Then 37 | CredMngr.GetUserNameForInfobase(Request, ClusterID, InfoBaseStringID, StrUserName, StrPassword) 38 | End If 39 | 40 | Dim Rez = RAS.GetInfoBaseFullInfo(Server1C, ClusterID, InfoBaseStringID, StrUserName, StrPassword, RememberMe.Checked) 41 | 42 | If RememberMe.Checked And Rez.Success Then 43 | CredMngr.SaveUserNameForInfobase(Request, Response, ClusterID, InfoBaseStringID, StrUserName, StrPassword) 44 | End If 45 | 46 | If Rez.Success Then 47 | 48 | AuthForm.Visible = False 49 | ObjectForm.Visible = True 50 | 51 | LabelUserName.Text = "Авторизованы под пользователем: " + StrUserName 52 | 53 | InfoBaseName.Text = Rez.InfoBase.Name 54 | InfoBaseDescr.Text = Rez.InfoBase.Descr 55 | InfoBaseID.Text = Rez.InfoBase.StringID 56 | InfoBaseDbServerName.Text = Rez.InfoBase.DbServerName 57 | InfoBaseDbPassword.Text = Rez.InfoBase.DbPassword 58 | 59 | InfoBaseDbms.Text = Rez.InfoBase.Dbms 60 | InfoBaseDatabaseName.Text = Rez.InfoBase.DbmsDB 61 | InfoBaseDbUser.Text = Rez.InfoBase.DbUser 62 | 63 | If Rez.InfoBase.DeniedFrom.Year > 1 Then 64 | InfoBaseDeniedFrom.Text = Rez.InfoBase.DeniedFrom.ToString("yyyy-MM-dd HH:mm:ss") 65 | End If 66 | If Rez.InfoBase.DeniedTo.Year > 1 Then 67 | InfoBaseDeniedTo.Text = Rez.InfoBase.DeniedTo.ToString("yyyy-MM-dd HH:mm:ss") 68 | End If 69 | 70 | InfoBaseDeniedParameter.Text = Rez.InfoBase.DeniedParameter 71 | InfoBaseDeniedMessage.Text = Rez.InfoBase.DeniedMessage 72 | InfoBasePermissionCode.Text = Rez.InfoBase.PermissionCode 73 | InfoBaseDbUser.Text = Rez.InfoBase.DbUser 74 | InfoBaseDateOffset.Text = Rez.InfoBase.DateOffset 75 | InfoBaseLocale.Text = Rez.InfoBase.Locale 76 | 77 | CheckBoxLicenseDistributionAllowed.Checked = Rez.InfoBase.LicenseDistributionAllowed 78 | CheckBoxSessionsDenied.Checked = Rez.InfoBase.SessionsDenied 79 | CheckBoxScheduledJobsDenied.Checked = Rez.InfoBase.ScheduledJobsDenied 80 | 81 | ElseIf Rez.ErrorCode = ErrorCodes.AuthError Then 82 | 83 | AuthForm.Visible = True 84 | ObjectForm.Visible = False 85 | 86 | LabelErrorText.Text = Rez.Description 87 | 88 | Else 89 | 90 | End If 91 | 92 | End If 93 | 94 | Next 95 | 96 | End If 97 | 98 | End Sub 99 | 100 | Private Sub ButtonLogin_Click(sender As Object, e As EventArgs) Handles ButtonLogin.Click 101 | 102 | ShowInfoBaseForm() 103 | 104 | End Sub 105 | 106 | End Class 107 | -------------------------------------------------------------------------------- /WebSite4/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /WebSite4/vwd.webinfo: -------------------------------------------------------------------------------- 1 |  2 | 5 | 6 | 7 | 8 | --------------------------------------------------------------------------------