This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void PopulateDashBoard(object sender, EventArgs e) | |
{ | |
LoadOperation<UserSnapin> op = sender as LoadOperation<UserSnapin>; | |
_entities = op.Entities; | |
string currentPage = String.Empty; | |
TabItem tabItem; | |
Canvas tabCanvas = null; | |
foreach (var UserSnapin in _entities) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Theme.SetApplicationThemeUri(Application.Current, new Uri(@"System.Windows.Controls.Theming.ShinyBlue.xaml")); | |
also tried: | |
Theme.SetApplicationThemeUri(Application.Current, new Uri(@"AmsiSL;System.Windows.Controls.Theming.ShinyBlue.xaml")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public System.Xml.XmlDocument BuildMenu(System.Xml.XmlDocument xdoc) | |
{ | |
ApplicationLog.WriteTrace("AmsiWebMenuProvider::BuildMenu -- start"); | |
var context = new Amsi.Model.Config.ConfigEntities(); | |
Guid currentDatabase = Guid.Parse(UserState.DefaultDatabase); | |
var databaseRecords = (from database in context.Databases.Include("EvolutionModule") | |
where database.ID_DatabaseSet == currentDatabase | |
select database).ToList<Amsi.Model.Config.Database>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if (Model.Property.AddressBookMain != null) { | |
@Html.Partial("_address", Model.Property.AddressBookMain) | |
} | |
@if (Model.Property.AddressBookMail != null) { | |
@Html.Partial("_address", Model.Property.AddressBookMail) | |
} | |
@if (Model.Property.AddressBookBill != null) { | |
@Html.Partial("_address", Model.Property.AddressBookBill) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("[id$=eFinBudget]").autocomplete({ | |
source: function (request, response) { | |
$.ajax({ | |
url: baseUrl + 'eFinancials/Lookup/BudgetVersionsForEntity', | |
data: { | |
term: request.term, | |
entity: $("#EntityKey").val(), | |
fiscalYear: $(this).closest("tr").find("input[id$=FiscalYear]").val() | |
}, | |
success: function (data, status, xhr) { response(data); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ProFTPD Version 1.3.3a | |
bob1:/etc/proftpd# proftpd -l | |
Compiled-in modules: | |
mod_core.c | |
mod_xfer.c | |
mod_auth_unix.c | |
mod_auth_file.c | |
mod_auth.c | |
mod_ls.c | |
mod_log.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RailsAutoDetect off | |
<VirtualHost *> | |
ServerAdmin webmaster@localhost | |
ServerName bob.archer.net | |
DocumentRoot /var/www/drupal | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Sun Apr 01 22:30:42 2012] [error] [client 173.65.62.184] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://bob.archer.net/neal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GLEntity | |
KeyGuid Guid | |
EntityID String | |
ConsolHeader | |
KeyGUID Guid | |
TableID string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function AutoCompleteGetIdValue(elem) { | |
var testValue = $(elem).val(); | |
var id; | |
$(elem).data().autocomplete.widget().children(".ui-menu-item").each(function () { | |
var item = $(this).data("item.autocomplete") | |
if (item.value == testValue) { | |
alert(item.id); | |
id = item.id; | |
} | |
}); |
OlderNewer