woople-theme 0.6.20 → 0.6.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/woople-theme/organization_dashboard_controller.js +7 -3
- data/lib/woople-theme/version.rb +1 -1
- data/spec/dummy/log/development.log +4269 -0
- data/spec/dummy/log/test.log +82 -0
- data/spec/dummy/tmp/cache/assets/CBF/970/sprockets%2F78ef662ec137682c41c76351828d7fc1 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/F10/sprockets%2F0899a95f0ab0cbbef59297876edf8176 +0 -0
- data/spec/dummy/tmp/cache/assets/D5D/1D0/sprockets%2F1b231f79d8b3c7ac8b4822a4adc5202c +0 -0
- data/spec/dummy/tmp/cache/assets/D68/190/sprockets%2F55c22d0f17a0ed195dd81cbe88606be2 +0 -0
- data/spec/dummy/tmp/cache/assets/D81/560/sprockets%2F7fdcef4fb7250e92b809d4006f649e7f +0 -0
- data/spec/dummy/tmp/cache/assets/DD0/980/sprockets%2F86c330ed2f5cfef7c3bf81ce6d7e0331 +0 -0
- data/spec/dummy/tmp/cache/assets/DE6/D20/sprockets%2Fd4ceba9c4bbe2c3c2a5b32404eb284c4 +0 -0
- data/spec/dummy/tmp/cache/assets/E47/340/sprockets%2Fb7c70b2a1f5bfdc5ec0aa6bc38c1a7f1 +0 -0
- data/spec/dummy/tmp/pids/server.pid +1 -1
- data/spec/javascripts/organization_dashboard_controller_spec.js.coffee +9 -2
- metadata +2 -2
|
@@ -44,8 +44,10 @@ $(function() {
|
|
|
44
44
|
};
|
|
45
45
|
|
|
46
46
|
var clickBinder = function(button){
|
|
47
|
-
var reminderPath
|
|
48
|
-
|
|
47
|
+
var reminderPath = $(button).data('reminder-path');
|
|
48
|
+
var debouncedClickHandler = _.debounce(reminderClick, 300); // avoid button click spamming.
|
|
49
|
+
var boundClickHandler = _.bind(debouncedClickHandler, this, reminderPath, button);
|
|
50
|
+
$(button).click(boundClickHandler);
|
|
49
51
|
};
|
|
50
52
|
|
|
51
53
|
var buttons = $('#organization-accounts .remind-column .btn');
|
|
@@ -53,6 +55,7 @@ $(function() {
|
|
|
53
55
|
};
|
|
54
56
|
|
|
55
57
|
OrganizationDashboardController.prototype.sendReminder = function(reminderPath, button) {
|
|
58
|
+
$(button).prop('disabled', true);
|
|
56
59
|
$.ajax({
|
|
57
60
|
type : 'POST',
|
|
58
61
|
url : reminderPath,
|
|
@@ -63,11 +66,12 @@ $(function() {
|
|
|
63
66
|
};
|
|
64
67
|
|
|
65
68
|
OrganizationDashboardController.prototype.changeButton = function(data, textStatus, jqXHR) {
|
|
66
|
-
$(this).addClass('btn-success sent')
|
|
69
|
+
$(this).addClass('btn-success sent');
|
|
67
70
|
};
|
|
68
71
|
|
|
69
72
|
OrganizationDashboardController.prototype.remindError = function(jqXHR, textStatus, errorThrown) {
|
|
70
73
|
alert($(this).data('errorMessage'));
|
|
74
|
+
$(this).prop('disabled', false);
|
|
71
75
|
};
|
|
72
76
|
|
|
73
77
|
OrganizationDashboardController.prototype.log = function(message) {
|
data/lib/woople-theme/version.rb
CHANGED
|
@@ -276545,3 +276545,4272 @@ Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
|
276545
276545
|
Served asset /highcharts.js - 200 OK (4ms)
|
|
276546
276546
|
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
276547
276547
|
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
276548
|
+
|
|
276549
|
+
|
|
276550
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 14:41:17 -0400
|
|
276551
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
276552
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
276553
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
276554
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
276555
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (10.8ms)
|
|
276556
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (15.4ms)
|
|
276557
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (19.4ms)
|
|
276558
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (39.2ms)
|
|
276559
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
276560
|
+
Compiled woople-theme/theme.js (53ms) (pid 54231)
|
|
276561
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (7.8ms)
|
|
276562
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (5.0ms)
|
|
276563
|
+
Completed 200 OK in 240ms (Views: 240.1ms)
|
|
276564
|
+
|
|
276565
|
+
|
|
276566
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276567
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (0ms)
|
|
276568
|
+
|
|
276569
|
+
|
|
276570
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276571
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (0ms)
|
|
276572
|
+
|
|
276573
|
+
|
|
276574
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276575
|
+
Served asset /woople-theme/base.css - 304 Not Modified (0ms)
|
|
276576
|
+
|
|
276577
|
+
|
|
276578
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276579
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (0ms)
|
|
276580
|
+
|
|
276581
|
+
|
|
276582
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276583
|
+
Served asset /woople-theme/content.css - 304 Not Modified (0ms)
|
|
276584
|
+
|
|
276585
|
+
|
|
276586
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276587
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (0ms)
|
|
276588
|
+
|
|
276589
|
+
|
|
276590
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276591
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (0ms)
|
|
276592
|
+
|
|
276593
|
+
|
|
276594
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276595
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (0ms)
|
|
276596
|
+
|
|
276597
|
+
|
|
276598
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276599
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (0ms)
|
|
276600
|
+
|
|
276601
|
+
|
|
276602
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276603
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (0ms)
|
|
276604
|
+
|
|
276605
|
+
|
|
276606
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276607
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (0ms)
|
|
276608
|
+
|
|
276609
|
+
|
|
276610
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276611
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (0ms)
|
|
276612
|
+
|
|
276613
|
+
|
|
276614
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276615
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (0ms)
|
|
276616
|
+
|
|
276617
|
+
|
|
276618
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276619
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (0ms)
|
|
276620
|
+
|
|
276621
|
+
|
|
276622
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276623
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (0ms)
|
|
276624
|
+
|
|
276625
|
+
|
|
276626
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276627
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (0ms)
|
|
276628
|
+
|
|
276629
|
+
|
|
276630
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276631
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (0ms)
|
|
276632
|
+
|
|
276633
|
+
|
|
276634
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276635
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (0ms)
|
|
276636
|
+
|
|
276637
|
+
|
|
276638
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276639
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (0ms)
|
|
276640
|
+
|
|
276641
|
+
|
|
276642
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276643
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (0ms)
|
|
276644
|
+
|
|
276645
|
+
|
|
276646
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276647
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (0ms)
|
|
276648
|
+
|
|
276649
|
+
|
|
276650
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276651
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (0ms)
|
|
276652
|
+
|
|
276653
|
+
|
|
276654
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276655
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (0ms)
|
|
276656
|
+
|
|
276657
|
+
|
|
276658
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276659
|
+
Served asset /woople-theme/course.css - 304 Not Modified (0ms)
|
|
276660
|
+
|
|
276661
|
+
|
|
276662
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276663
|
+
Served asset /woople-theme/index.css - 304 Not Modified (2ms)
|
|
276664
|
+
|
|
276665
|
+
|
|
276666
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276667
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
276668
|
+
|
|
276669
|
+
|
|
276670
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276671
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
276672
|
+
|
|
276673
|
+
|
|
276674
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276675
|
+
Served asset /modernizr.js - 304 Not Modified (0ms)
|
|
276676
|
+
|
|
276677
|
+
|
|
276678
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276679
|
+
Served asset /spin.min.js - 304 Not Modified (0ms)
|
|
276680
|
+
|
|
276681
|
+
|
|
276682
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276683
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (0ms)
|
|
276684
|
+
|
|
276685
|
+
|
|
276686
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276687
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (0ms)
|
|
276688
|
+
|
|
276689
|
+
|
|
276690
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276691
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (0ms)
|
|
276692
|
+
|
|
276693
|
+
|
|
276694
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276695
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (0ms)
|
|
276696
|
+
|
|
276697
|
+
|
|
276698
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276699
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (0ms)
|
|
276700
|
+
|
|
276701
|
+
|
|
276702
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276703
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
276704
|
+
|
|
276705
|
+
|
|
276706
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276707
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (0ms)
|
|
276708
|
+
|
|
276709
|
+
|
|
276710
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276711
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
276712
|
+
|
|
276713
|
+
|
|
276714
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276715
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
276716
|
+
|
|
276717
|
+
|
|
276718
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276719
|
+
Served asset /fastclick.min_.js - 304 Not Modified (0ms)
|
|
276720
|
+
|
|
276721
|
+
|
|
276722
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276723
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
276724
|
+
|
|
276725
|
+
|
|
276726
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276727
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (0ms)
|
|
276728
|
+
|
|
276729
|
+
|
|
276730
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276731
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
276732
|
+
|
|
276733
|
+
|
|
276734
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276735
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (0ms)
|
|
276736
|
+
|
|
276737
|
+
|
|
276738
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276739
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (0ms)
|
|
276740
|
+
|
|
276741
|
+
|
|
276742
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276743
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
276744
|
+
|
|
276745
|
+
|
|
276746
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276747
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
276748
|
+
|
|
276749
|
+
|
|
276750
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276751
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (0ms)
|
|
276752
|
+
|
|
276753
|
+
|
|
276754
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276755
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (31ms)
|
|
276756
|
+
|
|
276757
|
+
|
|
276758
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276759
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
276760
|
+
|
|
276761
|
+
|
|
276762
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276763
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (0ms)
|
|
276764
|
+
|
|
276765
|
+
|
|
276766
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276767
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (0ms)
|
|
276768
|
+
|
|
276769
|
+
|
|
276770
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:18 -0400
|
|
276771
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (0ms)
|
|
276772
|
+
|
|
276773
|
+
|
|
276774
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 14:41:22 -0400
|
|
276775
|
+
Processing by BrowseController#send_reminder as */*
|
|
276776
|
+
Completed 400 Bad Request in 1ms
|
|
276777
|
+
|
|
276778
|
+
|
|
276779
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276780
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
276781
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
276782
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
276783
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
276784
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
276785
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (3.9ms)
|
|
276786
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (5.5ms)
|
|
276787
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (6.5ms)
|
|
276788
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (10.4ms)
|
|
276789
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.9ms)
|
|
276790
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.2ms)
|
|
276791
|
+
Completed 200 OK in 64ms (Views: 63.5ms)
|
|
276792
|
+
|
|
276793
|
+
|
|
276794
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276795
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (0ms)
|
|
276796
|
+
|
|
276797
|
+
|
|
276798
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276799
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (0ms)
|
|
276800
|
+
|
|
276801
|
+
|
|
276802
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276803
|
+
Served asset /woople-theme/base.css - 304 Not Modified (0ms)
|
|
276804
|
+
|
|
276805
|
+
|
|
276806
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276807
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (0ms)
|
|
276808
|
+
|
|
276809
|
+
|
|
276810
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276811
|
+
Served asset /woople-theme/content.css - 304 Not Modified (0ms)
|
|
276812
|
+
|
|
276813
|
+
|
|
276814
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276815
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (0ms)
|
|
276816
|
+
|
|
276817
|
+
|
|
276818
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276819
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (0ms)
|
|
276820
|
+
|
|
276821
|
+
|
|
276822
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276823
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (0ms)
|
|
276824
|
+
|
|
276825
|
+
|
|
276826
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276827
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (0ms)
|
|
276828
|
+
|
|
276829
|
+
|
|
276830
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276831
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (0ms)
|
|
276832
|
+
|
|
276833
|
+
|
|
276834
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276835
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (0ms)
|
|
276836
|
+
|
|
276837
|
+
|
|
276838
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276839
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (0ms)
|
|
276840
|
+
|
|
276841
|
+
|
|
276842
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276843
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (0ms)
|
|
276844
|
+
|
|
276845
|
+
|
|
276846
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276847
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (0ms)
|
|
276848
|
+
|
|
276849
|
+
|
|
276850
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276851
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (0ms)
|
|
276852
|
+
|
|
276853
|
+
|
|
276854
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276855
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (0ms)
|
|
276856
|
+
|
|
276857
|
+
|
|
276858
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276859
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (0ms)
|
|
276860
|
+
|
|
276861
|
+
|
|
276862
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276863
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (0ms)
|
|
276864
|
+
|
|
276865
|
+
|
|
276866
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276867
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (0ms)
|
|
276868
|
+
|
|
276869
|
+
|
|
276870
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276871
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (0ms)
|
|
276872
|
+
|
|
276873
|
+
|
|
276874
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276875
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (0ms)
|
|
276876
|
+
|
|
276877
|
+
|
|
276878
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276879
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (0ms)
|
|
276880
|
+
|
|
276881
|
+
|
|
276882
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276883
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (0ms)
|
|
276884
|
+
|
|
276885
|
+
|
|
276886
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276887
|
+
Served asset /woople-theme/course.css - 304 Not Modified (0ms)
|
|
276888
|
+
|
|
276889
|
+
|
|
276890
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276891
|
+
Served asset /woople-theme/index.css - 304 Not Modified (2ms)
|
|
276892
|
+
|
|
276893
|
+
|
|
276894
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276895
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
276896
|
+
|
|
276897
|
+
|
|
276898
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276899
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
276900
|
+
|
|
276901
|
+
|
|
276902
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276903
|
+
Served asset /modernizr.js - 304 Not Modified (0ms)
|
|
276904
|
+
|
|
276905
|
+
|
|
276906
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:58 -0400
|
|
276907
|
+
Served asset /spin.min.js - 304 Not Modified (0ms)
|
|
276908
|
+
|
|
276909
|
+
|
|
276910
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276911
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (0ms)
|
|
276912
|
+
|
|
276913
|
+
|
|
276914
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276915
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (0ms)
|
|
276916
|
+
|
|
276917
|
+
|
|
276918
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276919
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (0ms)
|
|
276920
|
+
|
|
276921
|
+
|
|
276922
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276923
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (0ms)
|
|
276924
|
+
|
|
276925
|
+
|
|
276926
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276927
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (0ms)
|
|
276928
|
+
|
|
276929
|
+
|
|
276930
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276931
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
276932
|
+
|
|
276933
|
+
|
|
276934
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276935
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (0ms)
|
|
276936
|
+
|
|
276937
|
+
|
|
276938
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276939
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
276940
|
+
|
|
276941
|
+
|
|
276942
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276943
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
276944
|
+
|
|
276945
|
+
|
|
276946
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276947
|
+
Served asset /fastclick.min_.js - 304 Not Modified (0ms)
|
|
276948
|
+
|
|
276949
|
+
|
|
276950
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276951
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (0ms)
|
|
276952
|
+
|
|
276953
|
+
|
|
276954
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276955
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
276956
|
+
|
|
276957
|
+
|
|
276958
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276959
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
276960
|
+
|
|
276961
|
+
|
|
276962
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276963
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (0ms)
|
|
276964
|
+
|
|
276965
|
+
|
|
276966
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276967
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (0ms)
|
|
276968
|
+
|
|
276969
|
+
|
|
276970
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276971
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 304 Not Modified (0ms)
|
|
276972
|
+
|
|
276973
|
+
|
|
276974
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276975
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
276976
|
+
|
|
276977
|
+
|
|
276978
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276979
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (0ms)
|
|
276980
|
+
|
|
276981
|
+
|
|
276982
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276983
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (3ms)
|
|
276984
|
+
|
|
276985
|
+
|
|
276986
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276987
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
276988
|
+
|
|
276989
|
+
|
|
276990
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276991
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (0ms)
|
|
276992
|
+
|
|
276993
|
+
|
|
276994
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276995
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (0ms)
|
|
276996
|
+
|
|
276997
|
+
|
|
276998
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
276999
|
+
Served asset /woople-theme/certification/red-icon.png - 304 Not Modified (0ms)
|
|
277000
|
+
|
|
277001
|
+
|
|
277002
|
+
Started GET "/assets/woople-theme/certification/yellow-status.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
277003
|
+
Served asset /woople-theme/certification/yellow-status.png - 304 Not Modified (0ms)
|
|
277004
|
+
|
|
277005
|
+
|
|
277006
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
277007
|
+
Served asset /woople-theme/certification/green-icon.png - 304 Not Modified (0ms)
|
|
277008
|
+
|
|
277009
|
+
|
|
277010
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
277011
|
+
Served asset /woople-theme/certification/yellow-icon.png - 304 Not Modified (0ms)
|
|
277012
|
+
|
|
277013
|
+
|
|
277014
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
277015
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 304 Not Modified (0ms)
|
|
277016
|
+
|
|
277017
|
+
|
|
277018
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 14:41:59 -0400
|
|
277019
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (0ms)
|
|
277020
|
+
|
|
277021
|
+
|
|
277022
|
+
Started GET "/" for 10.0.1.17 at 2012-10-23 16:32:10 -0400
|
|
277023
|
+
Processing by BrowseController#show as HTML
|
|
277024
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
277025
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_content_item_header.html.erb (0.5ms)
|
|
277026
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_content_item.html.erb (2.5ms)
|
|
277027
|
+
Rendered browse/show.html.erb within layouts/theme (13.0ms)
|
|
277028
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
277029
|
+
Compiled woople-theme/theme.js (34ms) (pid 54231)
|
|
277030
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.8ms)
|
|
277031
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.5ms)
|
|
277032
|
+
Completed 200 OK in 190ms (Views: 151.6ms)
|
|
277033
|
+
|
|
277034
|
+
|
|
277035
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277036
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (0ms)
|
|
277037
|
+
|
|
277038
|
+
|
|
277039
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277040
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (0ms)
|
|
277041
|
+
|
|
277042
|
+
|
|
277043
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277044
|
+
Served asset /woople-theme/base.css - 304 Not Modified (0ms)
|
|
277045
|
+
|
|
277046
|
+
|
|
277047
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277048
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (0ms)
|
|
277049
|
+
|
|
277050
|
+
|
|
277051
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277052
|
+
Served asset /woople-theme/content.css - 304 Not Modified (0ms)
|
|
277053
|
+
|
|
277054
|
+
|
|
277055
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277056
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (0ms)
|
|
277057
|
+
|
|
277058
|
+
|
|
277059
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277060
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (0ms)
|
|
277061
|
+
|
|
277062
|
+
|
|
277063
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277064
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (0ms)
|
|
277065
|
+
|
|
277066
|
+
|
|
277067
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277068
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (0ms)
|
|
277069
|
+
|
|
277070
|
+
|
|
277071
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277072
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (0ms)
|
|
277073
|
+
|
|
277074
|
+
|
|
277075
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277076
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (0ms)
|
|
277077
|
+
|
|
277078
|
+
|
|
277079
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277080
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (0ms)
|
|
277081
|
+
|
|
277082
|
+
|
|
277083
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277084
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (0ms)
|
|
277085
|
+
|
|
277086
|
+
|
|
277087
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277088
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (0ms)
|
|
277089
|
+
|
|
277090
|
+
|
|
277091
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277092
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (0ms)
|
|
277093
|
+
|
|
277094
|
+
|
|
277095
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277096
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (0ms)
|
|
277097
|
+
|
|
277098
|
+
|
|
277099
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277100
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (0ms)
|
|
277101
|
+
|
|
277102
|
+
|
|
277103
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277104
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (0ms)
|
|
277105
|
+
|
|
277106
|
+
|
|
277107
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277108
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (0ms)
|
|
277109
|
+
|
|
277110
|
+
|
|
277111
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277112
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (0ms)
|
|
277113
|
+
|
|
277114
|
+
|
|
277115
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277116
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (0ms)
|
|
277117
|
+
|
|
277118
|
+
|
|
277119
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277120
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (0ms)
|
|
277121
|
+
|
|
277122
|
+
|
|
277123
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277124
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (0ms)
|
|
277125
|
+
|
|
277126
|
+
|
|
277127
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277128
|
+
Served asset /woople-theme/course.css - 304 Not Modified (0ms)
|
|
277129
|
+
|
|
277130
|
+
|
|
277131
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277132
|
+
Served asset /woople-theme/index.css - 304 Not Modified (3ms)
|
|
277133
|
+
|
|
277134
|
+
|
|
277135
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277136
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
277137
|
+
|
|
277138
|
+
|
|
277139
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277140
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
277141
|
+
|
|
277142
|
+
|
|
277143
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277144
|
+
Served asset /modernizr.js - 304 Not Modified (0ms)
|
|
277145
|
+
|
|
277146
|
+
|
|
277147
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277148
|
+
Served asset /spin.min.js - 304 Not Modified (0ms)
|
|
277149
|
+
|
|
277150
|
+
|
|
277151
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277152
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (0ms)
|
|
277153
|
+
|
|
277154
|
+
|
|
277155
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277156
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (0ms)
|
|
277157
|
+
|
|
277158
|
+
|
|
277159
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277160
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (0ms)
|
|
277161
|
+
|
|
277162
|
+
|
|
277163
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277164
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (0ms)
|
|
277165
|
+
|
|
277166
|
+
|
|
277167
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277168
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (0ms)
|
|
277169
|
+
|
|
277170
|
+
|
|
277171
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277172
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
277173
|
+
|
|
277174
|
+
|
|
277175
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277176
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (0ms)
|
|
277177
|
+
|
|
277178
|
+
|
|
277179
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277180
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
277181
|
+
|
|
277182
|
+
|
|
277183
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277184
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
277185
|
+
|
|
277186
|
+
|
|
277187
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277188
|
+
Served asset /fastclick.min_.js - 304 Not Modified (0ms)
|
|
277189
|
+
|
|
277190
|
+
|
|
277191
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277192
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (0ms)
|
|
277193
|
+
|
|
277194
|
+
|
|
277195
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277196
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
277197
|
+
|
|
277198
|
+
|
|
277199
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277200
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
277201
|
+
|
|
277202
|
+
|
|
277203
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277204
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (0ms)
|
|
277205
|
+
|
|
277206
|
+
|
|
277207
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277208
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (0ms)
|
|
277209
|
+
|
|
277210
|
+
|
|
277211
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277212
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (4ms)
|
|
277213
|
+
|
|
277214
|
+
|
|
277215
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277216
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
277217
|
+
|
|
277218
|
+
|
|
277219
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277220
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (0ms)
|
|
277221
|
+
|
|
277222
|
+
|
|
277223
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277224
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (33ms)
|
|
277225
|
+
|
|
277226
|
+
|
|
277227
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277228
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
277229
|
+
|
|
277230
|
+
|
|
277231
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277232
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
277233
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
277234
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277235
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277236
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277237
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277238
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277239
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.9ms)
|
|
277240
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277241
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277242
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (4.8ms)
|
|
277243
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (18.8ms)
|
|
277244
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (20.7ms)
|
|
277245
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (25.3ms)
|
|
277246
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (2.2ms)
|
|
277247
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (2.3ms)
|
|
277248
|
+
Completed 200 OK in 72ms (Views: 71.3ms)
|
|
277249
|
+
|
|
277250
|
+
|
|
277251
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277252
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (0ms)
|
|
277253
|
+
|
|
277254
|
+
|
|
277255
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277256
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (0ms)
|
|
277257
|
+
|
|
277258
|
+
|
|
277259
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277260
|
+
Served asset /woople-theme/base.css - 304 Not Modified (0ms)
|
|
277261
|
+
|
|
277262
|
+
|
|
277263
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277264
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (0ms)
|
|
277265
|
+
|
|
277266
|
+
|
|
277267
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277268
|
+
Served asset /woople-theme/content.css - 304 Not Modified (0ms)
|
|
277269
|
+
|
|
277270
|
+
|
|
277271
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277272
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (0ms)
|
|
277273
|
+
|
|
277274
|
+
|
|
277275
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277276
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (0ms)
|
|
277277
|
+
|
|
277278
|
+
|
|
277279
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277280
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (0ms)
|
|
277281
|
+
|
|
277282
|
+
|
|
277283
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277284
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (0ms)
|
|
277285
|
+
|
|
277286
|
+
|
|
277287
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277288
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (0ms)
|
|
277289
|
+
|
|
277290
|
+
|
|
277291
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277292
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (0ms)
|
|
277293
|
+
|
|
277294
|
+
|
|
277295
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277296
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (0ms)
|
|
277297
|
+
|
|
277298
|
+
|
|
277299
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277300
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (0ms)
|
|
277301
|
+
|
|
277302
|
+
|
|
277303
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277304
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (0ms)
|
|
277305
|
+
|
|
277306
|
+
|
|
277307
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277308
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (0ms)
|
|
277309
|
+
|
|
277310
|
+
|
|
277311
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277312
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (0ms)
|
|
277313
|
+
|
|
277314
|
+
|
|
277315
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277316
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (0ms)
|
|
277317
|
+
|
|
277318
|
+
|
|
277319
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277320
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (0ms)
|
|
277321
|
+
|
|
277322
|
+
|
|
277323
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277324
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (0ms)
|
|
277325
|
+
|
|
277326
|
+
|
|
277327
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277328
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (0ms)
|
|
277329
|
+
|
|
277330
|
+
|
|
277331
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277332
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (0ms)
|
|
277333
|
+
|
|
277334
|
+
|
|
277335
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277336
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (0ms)
|
|
277337
|
+
|
|
277338
|
+
|
|
277339
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277340
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (0ms)
|
|
277341
|
+
|
|
277342
|
+
|
|
277343
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277344
|
+
Served asset /woople-theme/course.css - 304 Not Modified (0ms)
|
|
277345
|
+
|
|
277346
|
+
|
|
277347
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277348
|
+
Served asset /woople-theme/index.css - 304 Not Modified (3ms)
|
|
277349
|
+
|
|
277350
|
+
|
|
277351
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277352
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
277353
|
+
|
|
277354
|
+
|
|
277355
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277356
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
277357
|
+
|
|
277358
|
+
|
|
277359
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277360
|
+
Served asset /modernizr.js - 304 Not Modified (0ms)
|
|
277361
|
+
|
|
277362
|
+
|
|
277363
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277364
|
+
Served asset /spin.min.js - 304 Not Modified (0ms)
|
|
277365
|
+
|
|
277366
|
+
|
|
277367
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277368
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (0ms)
|
|
277369
|
+
|
|
277370
|
+
|
|
277371
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:11 -0400
|
|
277372
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (0ms)
|
|
277373
|
+
|
|
277374
|
+
|
|
277375
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277376
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (0ms)
|
|
277377
|
+
|
|
277378
|
+
|
|
277379
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277380
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (0ms)
|
|
277381
|
+
|
|
277382
|
+
|
|
277383
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277384
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (0ms)
|
|
277385
|
+
|
|
277386
|
+
|
|
277387
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277388
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
277389
|
+
|
|
277390
|
+
|
|
277391
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277392
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (0ms)
|
|
277393
|
+
|
|
277394
|
+
|
|
277395
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277396
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
277397
|
+
|
|
277398
|
+
|
|
277399
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277400
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
277401
|
+
|
|
277402
|
+
|
|
277403
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277404
|
+
Served asset /fastclick.min_.js - 304 Not Modified (0ms)
|
|
277405
|
+
|
|
277406
|
+
|
|
277407
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277408
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (0ms)
|
|
277409
|
+
|
|
277410
|
+
|
|
277411
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277412
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
277413
|
+
|
|
277414
|
+
|
|
277415
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277416
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
277417
|
+
|
|
277418
|
+
|
|
277419
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277420
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (0ms)
|
|
277421
|
+
|
|
277422
|
+
|
|
277423
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277424
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (0ms)
|
|
277425
|
+
|
|
277426
|
+
|
|
277427
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277428
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 304 Not Modified (0ms)
|
|
277429
|
+
|
|
277430
|
+
|
|
277431
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277432
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
277433
|
+
|
|
277434
|
+
|
|
277435
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277436
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (0ms)
|
|
277437
|
+
|
|
277438
|
+
|
|
277439
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277440
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (2ms)
|
|
277441
|
+
|
|
277442
|
+
|
|
277443
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277444
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
277445
|
+
|
|
277446
|
+
|
|
277447
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277448
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (0ms)
|
|
277449
|
+
|
|
277450
|
+
|
|
277451
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277452
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (0ms)
|
|
277453
|
+
|
|
277454
|
+
|
|
277455
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277456
|
+
Served asset /woople-theme/certification/red-icon.png - 304 Not Modified (0ms)
|
|
277457
|
+
|
|
277458
|
+
|
|
277459
|
+
Started GET "/assets/woople-theme/completed-triangle.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277460
|
+
Served asset /woople-theme/completed-triangle.png - 200 OK (4ms)
|
|
277461
|
+
|
|
277462
|
+
|
|
277463
|
+
Started GET "/assets/training.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277464
|
+
Served asset /training.png - 200 OK (2ms)
|
|
277465
|
+
|
|
277466
|
+
|
|
277467
|
+
Started GET "/assets/pen.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277468
|
+
Served asset /pen.png - 200 OK (2ms)
|
|
277469
|
+
|
|
277470
|
+
|
|
277471
|
+
Started GET "/assets/leadership.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277472
|
+
Served asset /leadership.png - 200 OK (2ms)
|
|
277473
|
+
|
|
277474
|
+
|
|
277475
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277476
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 304 Not Modified (0ms)
|
|
277477
|
+
|
|
277478
|
+
|
|
277479
|
+
Started GET "/assets/woople-theme/missing.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277480
|
+
Served asset /woople-theme/missing.png - 200 OK (4ms)
|
|
277481
|
+
|
|
277482
|
+
|
|
277483
|
+
Started GET "/assets/course.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277484
|
+
Served asset /course.png - 200 OK (2ms)
|
|
277485
|
+
|
|
277486
|
+
|
|
277487
|
+
Started GET "/assets/innovation.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277488
|
+
Served asset /innovation.png - 200 OK (2ms)
|
|
277489
|
+
|
|
277490
|
+
|
|
277491
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277492
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (0ms)
|
|
277493
|
+
|
|
277494
|
+
|
|
277495
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277496
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (0ms)
|
|
277497
|
+
|
|
277498
|
+
|
|
277499
|
+
Started GET "/assets/woople-theme/certification/yellow-status.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277500
|
+
Served asset /woople-theme/certification/yellow-status.png - 304 Not Modified (0ms)
|
|
277501
|
+
|
|
277502
|
+
|
|
277503
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277504
|
+
Served asset /woople-theme/certification/red-icon.png - 304 Not Modified (0ms)
|
|
277505
|
+
|
|
277506
|
+
|
|
277507
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277508
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (0ms)
|
|
277509
|
+
|
|
277510
|
+
|
|
277511
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277512
|
+
Served asset /woople-theme/certification/green-icon.png - 304 Not Modified (0ms)
|
|
277513
|
+
|
|
277514
|
+
|
|
277515
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277516
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 304 Not Modified (0ms)
|
|
277517
|
+
|
|
277518
|
+
|
|
277519
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277520
|
+
Served asset /woople-theme/certification/yellow-icon.png - 304 Not Modified (0ms)
|
|
277521
|
+
|
|
277522
|
+
|
|
277523
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:12 -0400
|
|
277524
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (0ms)
|
|
277525
|
+
|
|
277526
|
+
|
|
277527
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:32:48 -0400
|
|
277528
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
277529
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
277530
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277531
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277532
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (2.6ms)
|
|
277533
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277534
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277535
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (3.3ms)
|
|
277536
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277537
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (1.8ms)
|
|
277538
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (12.9ms)
|
|
277539
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (14.3ms)
|
|
277540
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (19.1ms)
|
|
277541
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
277542
|
+
Compiled woople-theme/theme.js (55ms) (pid 54231)
|
|
277543
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (2.4ms)
|
|
277544
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.6ms)
|
|
277545
|
+
Completed 200 OK in 151ms (Views: 151.0ms)
|
|
277546
|
+
|
|
277547
|
+
|
|
277548
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277549
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
277550
|
+
|
|
277551
|
+
|
|
277552
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277553
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
277554
|
+
|
|
277555
|
+
|
|
277556
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277557
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
277558
|
+
|
|
277559
|
+
|
|
277560
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277561
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
277562
|
+
|
|
277563
|
+
|
|
277564
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277565
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
277566
|
+
|
|
277567
|
+
|
|
277568
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277569
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
277570
|
+
|
|
277571
|
+
|
|
277572
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277573
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
277574
|
+
|
|
277575
|
+
|
|
277576
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277577
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
277578
|
+
|
|
277579
|
+
|
|
277580
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277581
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
277582
|
+
|
|
277583
|
+
|
|
277584
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277585
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
277586
|
+
|
|
277587
|
+
|
|
277588
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277589
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
277590
|
+
|
|
277591
|
+
|
|
277592
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277593
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
277594
|
+
|
|
277595
|
+
|
|
277596
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277597
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
277598
|
+
|
|
277599
|
+
|
|
277600
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277601
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
277602
|
+
|
|
277603
|
+
|
|
277604
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277605
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
277606
|
+
|
|
277607
|
+
|
|
277608
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277609
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
277610
|
+
|
|
277611
|
+
|
|
277612
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277613
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
277614
|
+
|
|
277615
|
+
|
|
277616
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277617
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
277618
|
+
|
|
277619
|
+
|
|
277620
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277621
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
277622
|
+
|
|
277623
|
+
|
|
277624
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277625
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
277626
|
+
|
|
277627
|
+
|
|
277628
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277629
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
277630
|
+
|
|
277631
|
+
|
|
277632
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277633
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
277634
|
+
|
|
277635
|
+
|
|
277636
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277637
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
277638
|
+
|
|
277639
|
+
|
|
277640
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277641
|
+
Served asset /woople-theme/index.css - 200 OK (2ms)
|
|
277642
|
+
|
|
277643
|
+
|
|
277644
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277645
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
277646
|
+
|
|
277647
|
+
|
|
277648
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277649
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
277650
|
+
|
|
277651
|
+
|
|
277652
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277653
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
277654
|
+
|
|
277655
|
+
|
|
277656
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277657
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
277658
|
+
|
|
277659
|
+
|
|
277660
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277661
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
277662
|
+
|
|
277663
|
+
|
|
277664
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277665
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
277666
|
+
|
|
277667
|
+
|
|
277668
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277669
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
277670
|
+
|
|
277671
|
+
|
|
277672
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277673
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
277674
|
+
|
|
277675
|
+
|
|
277676
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277677
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
277678
|
+
|
|
277679
|
+
|
|
277680
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277681
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
277682
|
+
|
|
277683
|
+
|
|
277684
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277685
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
277686
|
+
|
|
277687
|
+
|
|
277688
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277689
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
277690
|
+
|
|
277691
|
+
|
|
277692
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277693
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
277694
|
+
|
|
277695
|
+
|
|
277696
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277697
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
277698
|
+
|
|
277699
|
+
|
|
277700
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277701
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
277702
|
+
|
|
277703
|
+
|
|
277704
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277705
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
277706
|
+
|
|
277707
|
+
|
|
277708
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277709
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
277710
|
+
|
|
277711
|
+
|
|
277712
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277713
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
277714
|
+
|
|
277715
|
+
|
|
277716
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277717
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
277718
|
+
|
|
277719
|
+
|
|
277720
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277721
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
277722
|
+
|
|
277723
|
+
|
|
277724
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277725
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (5ms)
|
|
277726
|
+
|
|
277727
|
+
|
|
277728
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277729
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
277730
|
+
|
|
277731
|
+
|
|
277732
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277733
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
277734
|
+
|
|
277735
|
+
|
|
277736
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277737
|
+
Served asset /woople-theme/theme.js - 200 OK (63ms)
|
|
277738
|
+
|
|
277739
|
+
|
|
277740
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277741
|
+
Served asset /application.js - 200 OK (0ms)
|
|
277742
|
+
|
|
277743
|
+
|
|
277744
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277745
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
277746
|
+
|
|
277747
|
+
|
|
277748
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277749
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
277750
|
+
|
|
277751
|
+
|
|
277752
|
+
Started GET "/assets/woople-theme/certification/red-status.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277753
|
+
Served asset /woople-theme/certification/red-status.png - 200 OK (0ms)
|
|
277754
|
+
|
|
277755
|
+
|
|
277756
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277757
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
277758
|
+
|
|
277759
|
+
|
|
277760
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277761
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
277762
|
+
|
|
277763
|
+
|
|
277764
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277765
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
277766
|
+
|
|
277767
|
+
|
|
277768
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277769
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
277770
|
+
|
|
277771
|
+
|
|
277772
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:32:49 -0400
|
|
277773
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
277774
|
+
|
|
277775
|
+
|
|
277776
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:32:51 -0400
|
|
277777
|
+
Processing by BrowseController#send_reminder as */*
|
|
277778
|
+
Completed 400 Bad Request in 0ms
|
|
277779
|
+
|
|
277780
|
+
|
|
277781
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:32:54 -0400
|
|
277782
|
+
Processing by BrowseController#send_reminder as */*
|
|
277783
|
+
Completed 200 OK in 0ms
|
|
277784
|
+
|
|
277785
|
+
|
|
277786
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:32:56 -0400
|
|
277787
|
+
Processing by BrowseController#send_reminder as */*
|
|
277788
|
+
Completed 200 OK in 0ms
|
|
277789
|
+
|
|
277790
|
+
|
|
277791
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:33:02 -0400
|
|
277792
|
+
Processing by BrowseController#send_reminder as */*
|
|
277793
|
+
Completed 400 Bad Request in 0ms
|
|
277794
|
+
|
|
277795
|
+
|
|
277796
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:33:07 -0400
|
|
277797
|
+
Processing by BrowseController#send_reminder as */*
|
|
277798
|
+
Completed 400 Bad Request in 0ms
|
|
277799
|
+
|
|
277800
|
+
|
|
277801
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277802
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
277803
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
277804
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277805
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277806
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277807
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277808
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
277809
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.2ms)
|
|
277810
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (8.8ms)
|
|
277811
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (9.9ms)
|
|
277812
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (13.0ms)
|
|
277813
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (2.0ms)
|
|
277814
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.2ms)
|
|
277815
|
+
Completed 200 OK in 53ms (Views: 52.7ms)
|
|
277816
|
+
|
|
277817
|
+
|
|
277818
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277819
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
277820
|
+
|
|
277821
|
+
|
|
277822
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277823
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
277824
|
+
|
|
277825
|
+
|
|
277826
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277827
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
277828
|
+
|
|
277829
|
+
|
|
277830
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277831
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
277832
|
+
|
|
277833
|
+
|
|
277834
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277835
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
277836
|
+
|
|
277837
|
+
|
|
277838
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277839
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
277840
|
+
|
|
277841
|
+
|
|
277842
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277843
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
277844
|
+
|
|
277845
|
+
|
|
277846
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277847
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
277848
|
+
|
|
277849
|
+
|
|
277850
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277851
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
277852
|
+
|
|
277853
|
+
|
|
277854
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277855
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
277856
|
+
|
|
277857
|
+
|
|
277858
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277859
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
277860
|
+
|
|
277861
|
+
|
|
277862
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277863
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
277864
|
+
|
|
277865
|
+
|
|
277866
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277867
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
277868
|
+
|
|
277869
|
+
|
|
277870
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277871
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
277872
|
+
|
|
277873
|
+
|
|
277874
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277875
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
277876
|
+
|
|
277877
|
+
|
|
277878
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:08 -0400
|
|
277879
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
277880
|
+
|
|
277881
|
+
|
|
277882
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277883
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
277884
|
+
|
|
277885
|
+
|
|
277886
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277887
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
277888
|
+
|
|
277889
|
+
|
|
277890
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277891
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
277892
|
+
|
|
277893
|
+
|
|
277894
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277895
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
277896
|
+
|
|
277897
|
+
|
|
277898
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277899
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
277900
|
+
|
|
277901
|
+
|
|
277902
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277903
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
277904
|
+
|
|
277905
|
+
|
|
277906
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277907
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
277908
|
+
|
|
277909
|
+
|
|
277910
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277911
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
277912
|
+
|
|
277913
|
+
|
|
277914
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277915
|
+
Served asset /woople-theme/index.css - 200 OK (2ms)
|
|
277916
|
+
|
|
277917
|
+
|
|
277918
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277919
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
277920
|
+
|
|
277921
|
+
|
|
277922
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277923
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
277924
|
+
|
|
277925
|
+
|
|
277926
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277927
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
277928
|
+
|
|
277929
|
+
|
|
277930
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277931
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
277932
|
+
|
|
277933
|
+
|
|
277934
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277935
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
277936
|
+
|
|
277937
|
+
|
|
277938
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277939
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
277940
|
+
|
|
277941
|
+
|
|
277942
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277943
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
277944
|
+
|
|
277945
|
+
|
|
277946
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277947
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
277948
|
+
|
|
277949
|
+
|
|
277950
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277951
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
277952
|
+
|
|
277953
|
+
|
|
277954
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277955
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
277956
|
+
|
|
277957
|
+
|
|
277958
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277959
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
277960
|
+
|
|
277961
|
+
|
|
277962
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277963
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
277964
|
+
|
|
277965
|
+
|
|
277966
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277967
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
277968
|
+
|
|
277969
|
+
|
|
277970
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277971
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
277972
|
+
|
|
277973
|
+
|
|
277974
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277975
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
277976
|
+
|
|
277977
|
+
|
|
277978
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277979
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
277980
|
+
|
|
277981
|
+
|
|
277982
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277983
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
277984
|
+
|
|
277985
|
+
|
|
277986
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277987
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
277988
|
+
|
|
277989
|
+
|
|
277990
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277991
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
277992
|
+
|
|
277993
|
+
|
|
277994
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277995
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (0ms)
|
|
277996
|
+
|
|
277997
|
+
|
|
277998
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
277999
|
+
Served asset /woople-theme/theme.js - 200 OK (1ms)
|
|
278000
|
+
|
|
278001
|
+
|
|
278002
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278003
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
278004
|
+
|
|
278005
|
+
|
|
278006
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278007
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
278008
|
+
|
|
278009
|
+
|
|
278010
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278011
|
+
Served asset /application.js - 200 OK (0ms)
|
|
278012
|
+
|
|
278013
|
+
|
|
278014
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278015
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
278016
|
+
|
|
278017
|
+
|
|
278018
|
+
Started GET "/assets/woople-theme/certification/red-status.png" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278019
|
+
Served asset /woople-theme/certification/red-status.png - 200 OK (0ms)
|
|
278020
|
+
|
|
278021
|
+
|
|
278022
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278023
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
278024
|
+
|
|
278025
|
+
|
|
278026
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278027
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
278028
|
+
|
|
278029
|
+
|
|
278030
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278031
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
278032
|
+
|
|
278033
|
+
|
|
278034
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278035
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
278036
|
+
|
|
278037
|
+
|
|
278038
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:33:09 -0400
|
|
278039
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
278040
|
+
|
|
278041
|
+
|
|
278042
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278043
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
278044
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.2ms)
|
|
278045
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278046
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278047
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.2ms)
|
|
278048
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278049
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278050
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (7.1ms)
|
|
278051
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278052
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278053
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278054
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (5.8ms)
|
|
278055
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (17.7ms)
|
|
278056
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (19.1ms)
|
|
278057
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (24.9ms)
|
|
278058
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
278059
|
+
Compiled woople-theme/theme.js (42ms) (pid 54231)
|
|
278060
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.8ms)
|
|
278061
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.4ms)
|
|
278062
|
+
Completed 200 OK in 150ms (Views: 149.6ms)
|
|
278063
|
+
|
|
278064
|
+
|
|
278065
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278066
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
278067
|
+
|
|
278068
|
+
|
|
278069
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278070
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
278071
|
+
|
|
278072
|
+
|
|
278073
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278074
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
278075
|
+
|
|
278076
|
+
|
|
278077
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278078
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
278079
|
+
|
|
278080
|
+
|
|
278081
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278082
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
278083
|
+
|
|
278084
|
+
|
|
278085
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278086
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
278087
|
+
|
|
278088
|
+
|
|
278089
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278090
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
278091
|
+
|
|
278092
|
+
|
|
278093
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278094
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
278095
|
+
|
|
278096
|
+
|
|
278097
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278098
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
278099
|
+
|
|
278100
|
+
|
|
278101
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278102
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
278103
|
+
|
|
278104
|
+
|
|
278105
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278106
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
278107
|
+
|
|
278108
|
+
|
|
278109
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278110
|
+
Served asset /woople-theme/buttons.css - 200 OK (19ms)
|
|
278111
|
+
|
|
278112
|
+
|
|
278113
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278114
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
278115
|
+
|
|
278116
|
+
|
|
278117
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278118
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
278119
|
+
|
|
278120
|
+
|
|
278121
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278122
|
+
Served asset /woople-theme/legacy.css - 200 OK (2ms)
|
|
278123
|
+
|
|
278124
|
+
|
|
278125
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278126
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
278127
|
+
|
|
278128
|
+
|
|
278129
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278130
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
278131
|
+
|
|
278132
|
+
|
|
278133
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278134
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
278135
|
+
|
|
278136
|
+
|
|
278137
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278138
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
278139
|
+
|
|
278140
|
+
|
|
278141
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278142
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
278143
|
+
|
|
278144
|
+
|
|
278145
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278146
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
278147
|
+
|
|
278148
|
+
|
|
278149
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278150
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
278151
|
+
|
|
278152
|
+
|
|
278153
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278154
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
278155
|
+
|
|
278156
|
+
|
|
278157
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278158
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
278159
|
+
|
|
278160
|
+
|
|
278161
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278162
|
+
Served asset /woople-theme/index.css - 200 OK (3ms)
|
|
278163
|
+
|
|
278164
|
+
|
|
278165
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278166
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
278167
|
+
|
|
278168
|
+
|
|
278169
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278170
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
278171
|
+
|
|
278172
|
+
|
|
278173
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278174
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
278175
|
+
|
|
278176
|
+
|
|
278177
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278178
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
278179
|
+
|
|
278180
|
+
|
|
278181
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278182
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
278183
|
+
|
|
278184
|
+
|
|
278185
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278186
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
278187
|
+
|
|
278188
|
+
|
|
278189
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278190
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
278191
|
+
|
|
278192
|
+
|
|
278193
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278194
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
278195
|
+
|
|
278196
|
+
|
|
278197
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278198
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
278199
|
+
|
|
278200
|
+
|
|
278201
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278202
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
278203
|
+
|
|
278204
|
+
|
|
278205
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278206
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
278207
|
+
|
|
278208
|
+
|
|
278209
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278210
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
278211
|
+
|
|
278212
|
+
|
|
278213
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278214
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
278215
|
+
|
|
278216
|
+
|
|
278217
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278218
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
278219
|
+
|
|
278220
|
+
|
|
278221
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278222
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
278223
|
+
|
|
278224
|
+
|
|
278225
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278226
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
278227
|
+
|
|
278228
|
+
|
|
278229
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278230
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
278231
|
+
|
|
278232
|
+
|
|
278233
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278234
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
278235
|
+
|
|
278236
|
+
|
|
278237
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278238
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
278239
|
+
|
|
278240
|
+
|
|
278241
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278242
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (4ms)
|
|
278243
|
+
|
|
278244
|
+
|
|
278245
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278246
|
+
Served asset /application.js - 200 OK (0ms)
|
|
278247
|
+
|
|
278248
|
+
|
|
278249
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278250
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
278251
|
+
|
|
278252
|
+
|
|
278253
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278254
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
278255
|
+
|
|
278256
|
+
|
|
278257
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:38:19 -0400
|
|
278258
|
+
Served asset /woople-theme/theme.js - 200 OK (41ms)
|
|
278259
|
+
|
|
278260
|
+
|
|
278261
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278262
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
278263
|
+
|
|
278264
|
+
|
|
278265
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278266
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
278267
|
+
|
|
278268
|
+
|
|
278269
|
+
Started GET "/assets/woople-theme/certification/red-status.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278270
|
+
Served asset /woople-theme/certification/red-status.png - 200 OK (0ms)
|
|
278271
|
+
|
|
278272
|
+
|
|
278273
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278274
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
278275
|
+
|
|
278276
|
+
|
|
278277
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278278
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
278279
|
+
|
|
278280
|
+
|
|
278281
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278282
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
278283
|
+
|
|
278284
|
+
|
|
278285
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278286
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (1ms)
|
|
278287
|
+
|
|
278288
|
+
|
|
278289
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:38:20 -0400
|
|
278290
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
278291
|
+
|
|
278292
|
+
|
|
278293
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:38:21 -0400
|
|
278294
|
+
Processing by BrowseController#send_reminder as */*
|
|
278295
|
+
Completed 200 OK in 0ms
|
|
278296
|
+
|
|
278297
|
+
|
|
278298
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:38:24 -0400
|
|
278299
|
+
Processing by BrowseController#send_reminder as */*
|
|
278300
|
+
Completed 200 OK in 0ms
|
|
278301
|
+
|
|
278302
|
+
|
|
278303
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:38:27 -0400
|
|
278304
|
+
Processing by BrowseController#send_reminder as */*
|
|
278305
|
+
Completed 400 Bad Request in 0ms
|
|
278306
|
+
|
|
278307
|
+
|
|
278308
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:42:05 -0400
|
|
278309
|
+
Processing by BrowseController#send_reminder as */*
|
|
278310
|
+
Completed 200 OK in 0ms
|
|
278311
|
+
|
|
278312
|
+
|
|
278313
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278314
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
278315
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
278316
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.2ms)
|
|
278317
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278318
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (1.8ms)
|
|
278319
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (3.2ms)
|
|
278320
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (4.3ms)
|
|
278321
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (9.2ms)
|
|
278322
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.7ms)
|
|
278323
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.2ms)
|
|
278324
|
+
Completed 200 OK in 46ms (Views: 46.2ms)
|
|
278325
|
+
|
|
278326
|
+
|
|
278327
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278328
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
278329
|
+
|
|
278330
|
+
|
|
278331
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278332
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
278333
|
+
|
|
278334
|
+
|
|
278335
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278336
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
278337
|
+
|
|
278338
|
+
|
|
278339
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278340
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
278341
|
+
|
|
278342
|
+
|
|
278343
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278344
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
278345
|
+
|
|
278346
|
+
|
|
278347
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278348
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
278349
|
+
|
|
278350
|
+
|
|
278351
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278352
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
278353
|
+
|
|
278354
|
+
|
|
278355
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278356
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
278357
|
+
|
|
278358
|
+
|
|
278359
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278360
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
278361
|
+
|
|
278362
|
+
|
|
278363
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278364
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
278365
|
+
|
|
278366
|
+
|
|
278367
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278368
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
278369
|
+
|
|
278370
|
+
|
|
278371
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278372
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
278373
|
+
|
|
278374
|
+
|
|
278375
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278376
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
278377
|
+
|
|
278378
|
+
|
|
278379
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278380
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
278381
|
+
|
|
278382
|
+
|
|
278383
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278384
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
278385
|
+
|
|
278386
|
+
|
|
278387
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278388
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
278389
|
+
|
|
278390
|
+
|
|
278391
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278392
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
278393
|
+
|
|
278394
|
+
|
|
278395
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278396
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
278397
|
+
|
|
278398
|
+
|
|
278399
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278400
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
278401
|
+
|
|
278402
|
+
|
|
278403
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278404
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
278405
|
+
|
|
278406
|
+
|
|
278407
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278408
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
278409
|
+
|
|
278410
|
+
|
|
278411
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278412
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
278413
|
+
|
|
278414
|
+
|
|
278415
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278416
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
278417
|
+
|
|
278418
|
+
|
|
278419
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278420
|
+
Served asset /woople-theme/index.css - 200 OK (2ms)
|
|
278421
|
+
|
|
278422
|
+
|
|
278423
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278424
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
278425
|
+
|
|
278426
|
+
|
|
278427
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278428
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
278429
|
+
|
|
278430
|
+
|
|
278431
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278432
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
278433
|
+
|
|
278434
|
+
|
|
278435
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278436
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
278437
|
+
|
|
278438
|
+
|
|
278439
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278440
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
278441
|
+
|
|
278442
|
+
|
|
278443
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278444
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
278445
|
+
|
|
278446
|
+
|
|
278447
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278448
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
278449
|
+
|
|
278450
|
+
|
|
278451
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278452
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
278453
|
+
|
|
278454
|
+
|
|
278455
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278456
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
278457
|
+
|
|
278458
|
+
|
|
278459
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278460
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
278461
|
+
|
|
278462
|
+
|
|
278463
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278464
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
278465
|
+
|
|
278466
|
+
|
|
278467
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278468
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
278469
|
+
|
|
278470
|
+
|
|
278471
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278472
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
278473
|
+
|
|
278474
|
+
|
|
278475
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278476
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
278477
|
+
|
|
278478
|
+
|
|
278479
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278480
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
278481
|
+
|
|
278482
|
+
|
|
278483
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278484
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
278485
|
+
|
|
278486
|
+
|
|
278487
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278488
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
278489
|
+
|
|
278490
|
+
|
|
278491
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278492
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
278493
|
+
|
|
278494
|
+
|
|
278495
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278496
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
278497
|
+
|
|
278498
|
+
|
|
278499
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278500
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
278501
|
+
|
|
278502
|
+
|
|
278503
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278504
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (0ms)
|
|
278505
|
+
|
|
278506
|
+
|
|
278507
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278508
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
278509
|
+
|
|
278510
|
+
|
|
278511
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278512
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
278513
|
+
|
|
278514
|
+
|
|
278515
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278516
|
+
Served asset /woople-theme/theme.js - 200 OK (3ms)
|
|
278517
|
+
|
|
278518
|
+
|
|
278519
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:11 -0400
|
|
278520
|
+
Served asset /application.js - 200 OK (0ms)
|
|
278521
|
+
|
|
278522
|
+
|
|
278523
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278524
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
278525
|
+
|
|
278526
|
+
|
|
278527
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278528
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
278529
|
+
|
|
278530
|
+
|
|
278531
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278532
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
278533
|
+
|
|
278534
|
+
|
|
278535
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278536
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
278537
|
+
|
|
278538
|
+
|
|
278539
|
+
Started GET "/assets/woople-theme/certification/green-status.png" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278540
|
+
Served asset /woople-theme/certification/green-status.png - 200 OK (0ms)
|
|
278541
|
+
|
|
278542
|
+
|
|
278543
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278544
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
278545
|
+
|
|
278546
|
+
|
|
278547
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:12 -0400
|
|
278548
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
278549
|
+
|
|
278550
|
+
|
|
278551
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:42:19 -0400
|
|
278552
|
+
Processing by BrowseController#send_reminder as */*
|
|
278553
|
+
Completed 400 Bad Request in 0ms
|
|
278554
|
+
|
|
278555
|
+
|
|
278556
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:42:32 -0400
|
|
278557
|
+
Processing by BrowseController#send_reminder as */*
|
|
278558
|
+
Completed 200 OK in 0ms
|
|
278559
|
+
|
|
278560
|
+
|
|
278561
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278562
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
278563
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.2ms)
|
|
278564
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.2ms)
|
|
278565
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278566
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278567
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278568
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278569
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.2ms)
|
|
278570
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (8.9ms)
|
|
278571
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (10.1ms)
|
|
278572
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (15.2ms)
|
|
278573
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.7ms)
|
|
278574
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.2ms)
|
|
278575
|
+
Completed 200 OK in 51ms (Views: 51.0ms)
|
|
278576
|
+
|
|
278577
|
+
|
|
278578
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278579
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
278580
|
+
|
|
278581
|
+
|
|
278582
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278583
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
278584
|
+
|
|
278585
|
+
|
|
278586
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278587
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
278588
|
+
|
|
278589
|
+
|
|
278590
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278591
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
278592
|
+
|
|
278593
|
+
|
|
278594
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278595
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
278596
|
+
|
|
278597
|
+
|
|
278598
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278599
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
278600
|
+
|
|
278601
|
+
|
|
278602
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278603
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
278604
|
+
|
|
278605
|
+
|
|
278606
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278607
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
278608
|
+
|
|
278609
|
+
|
|
278610
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278611
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
278612
|
+
|
|
278613
|
+
|
|
278614
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278615
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
278616
|
+
|
|
278617
|
+
|
|
278618
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278619
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
278620
|
+
|
|
278621
|
+
|
|
278622
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278623
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
278624
|
+
|
|
278625
|
+
|
|
278626
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278627
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
278628
|
+
|
|
278629
|
+
|
|
278630
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278631
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
278632
|
+
|
|
278633
|
+
|
|
278634
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278635
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
278636
|
+
|
|
278637
|
+
|
|
278638
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278639
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
278640
|
+
|
|
278641
|
+
|
|
278642
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278643
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
278644
|
+
|
|
278645
|
+
|
|
278646
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278647
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
278648
|
+
|
|
278649
|
+
|
|
278650
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278651
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
278652
|
+
|
|
278653
|
+
|
|
278654
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278655
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
278656
|
+
|
|
278657
|
+
|
|
278658
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278659
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
278660
|
+
|
|
278661
|
+
|
|
278662
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278663
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
278664
|
+
|
|
278665
|
+
|
|
278666
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278667
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
278668
|
+
|
|
278669
|
+
|
|
278670
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278671
|
+
Served asset /woople-theme/index.css - 200 OK (3ms)
|
|
278672
|
+
|
|
278673
|
+
|
|
278674
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278675
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
278676
|
+
|
|
278677
|
+
|
|
278678
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278679
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
278680
|
+
|
|
278681
|
+
|
|
278682
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278683
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
278684
|
+
|
|
278685
|
+
|
|
278686
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278687
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
278688
|
+
|
|
278689
|
+
|
|
278690
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278691
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
278692
|
+
|
|
278693
|
+
|
|
278694
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278695
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
278696
|
+
|
|
278697
|
+
|
|
278698
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278699
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
278700
|
+
|
|
278701
|
+
|
|
278702
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278703
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
278704
|
+
|
|
278705
|
+
|
|
278706
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278707
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
278708
|
+
|
|
278709
|
+
|
|
278710
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278711
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
278712
|
+
|
|
278713
|
+
|
|
278714
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278715
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
278716
|
+
|
|
278717
|
+
|
|
278718
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278719
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
278720
|
+
|
|
278721
|
+
|
|
278722
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278723
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
278724
|
+
|
|
278725
|
+
|
|
278726
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278727
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
278728
|
+
|
|
278729
|
+
|
|
278730
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278731
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
278732
|
+
|
|
278733
|
+
|
|
278734
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278735
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
278736
|
+
|
|
278737
|
+
|
|
278738
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278739
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
278740
|
+
|
|
278741
|
+
|
|
278742
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278743
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
278744
|
+
|
|
278745
|
+
|
|
278746
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278747
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
278748
|
+
|
|
278749
|
+
|
|
278750
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278751
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
278752
|
+
|
|
278753
|
+
|
|
278754
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278755
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
278756
|
+
|
|
278757
|
+
|
|
278758
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278759
|
+
Served asset /woople-theme/theme.js - 200 OK (2ms)
|
|
278760
|
+
|
|
278761
|
+
|
|
278762
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278763
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
278764
|
+
|
|
278765
|
+
|
|
278766
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278767
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (0ms)
|
|
278768
|
+
|
|
278769
|
+
|
|
278770
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:42:35 -0400
|
|
278771
|
+
Served asset /application.js - 200 OK (0ms)
|
|
278772
|
+
|
|
278773
|
+
|
|
278774
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278775
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
278776
|
+
|
|
278777
|
+
|
|
278778
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278779
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
278780
|
+
|
|
278781
|
+
|
|
278782
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278783
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
278784
|
+
|
|
278785
|
+
|
|
278786
|
+
Started GET "/assets/woople-theme/certification/green-status.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278787
|
+
Served asset /woople-theme/certification/green-status.png - 200 OK (0ms)
|
|
278788
|
+
|
|
278789
|
+
|
|
278790
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278791
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
278792
|
+
|
|
278793
|
+
|
|
278794
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278795
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
278796
|
+
|
|
278797
|
+
|
|
278798
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278799
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
278800
|
+
|
|
278801
|
+
|
|
278802
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:42:36 -0400
|
|
278803
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
278804
|
+
|
|
278805
|
+
|
|
278806
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:42:37 -0400
|
|
278807
|
+
Processing by BrowseController#send_reminder as */*
|
|
278808
|
+
Completed 400 Bad Request in 0ms
|
|
278809
|
+
|
|
278810
|
+
|
|
278811
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:42:40 -0400
|
|
278812
|
+
Processing by BrowseController#send_reminder as */*
|
|
278813
|
+
Completed 200 OK in 0ms
|
|
278814
|
+
|
|
278815
|
+
|
|
278816
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:31 -0400
|
|
278817
|
+
Processing by BrowseController#send_reminder as */*
|
|
278818
|
+
Completed 200 OK in 0ms
|
|
278819
|
+
|
|
278820
|
+
|
|
278821
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:32 -0400
|
|
278822
|
+
Processing by BrowseController#send_reminder as */*
|
|
278823
|
+
Completed 200 OK in 0ms
|
|
278824
|
+
|
|
278825
|
+
|
|
278826
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:33 -0400
|
|
278827
|
+
Processing by BrowseController#send_reminder as */*
|
|
278828
|
+
Completed 200 OK in 0ms
|
|
278829
|
+
|
|
278830
|
+
|
|
278831
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:43:34 -0400
|
|
278832
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
278833
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.3ms)
|
|
278834
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278835
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278836
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278837
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (3.4ms)
|
|
278838
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278839
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278840
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (3.2ms)
|
|
278841
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278842
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
278843
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (2.7ms)
|
|
278844
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (15.2ms)
|
|
278845
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (16.8ms)
|
|
278846
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (21.8ms)
|
|
278847
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
278848
|
+
Compiled woople-theme/theme.js (54ms) (pid 54231)
|
|
278849
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (2.0ms)
|
|
278850
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.2ms)
|
|
278851
|
+
Completed 200 OK in 156ms (Views: 155.2ms)
|
|
278852
|
+
|
|
278853
|
+
|
|
278854
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278855
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
278856
|
+
|
|
278857
|
+
|
|
278858
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278859
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
278860
|
+
|
|
278861
|
+
|
|
278862
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278863
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
278864
|
+
|
|
278865
|
+
|
|
278866
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278867
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
278868
|
+
|
|
278869
|
+
|
|
278870
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278871
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
278872
|
+
|
|
278873
|
+
|
|
278874
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278875
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
278876
|
+
|
|
278877
|
+
|
|
278878
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278879
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
278880
|
+
|
|
278881
|
+
|
|
278882
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278883
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
278884
|
+
|
|
278885
|
+
|
|
278886
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278887
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
278888
|
+
|
|
278889
|
+
|
|
278890
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278891
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
278892
|
+
|
|
278893
|
+
|
|
278894
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278895
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
278896
|
+
|
|
278897
|
+
|
|
278898
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278899
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
278900
|
+
|
|
278901
|
+
|
|
278902
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278903
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
278904
|
+
|
|
278905
|
+
|
|
278906
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278907
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
278908
|
+
|
|
278909
|
+
|
|
278910
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278911
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
278912
|
+
|
|
278913
|
+
|
|
278914
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278915
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
278916
|
+
|
|
278917
|
+
|
|
278918
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278919
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
278920
|
+
|
|
278921
|
+
|
|
278922
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278923
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
278924
|
+
|
|
278925
|
+
|
|
278926
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278927
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
278928
|
+
|
|
278929
|
+
|
|
278930
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278931
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
278932
|
+
|
|
278933
|
+
|
|
278934
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278935
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
278936
|
+
|
|
278937
|
+
|
|
278938
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278939
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
278940
|
+
|
|
278941
|
+
|
|
278942
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278943
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
278944
|
+
|
|
278945
|
+
|
|
278946
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278947
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
278948
|
+
|
|
278949
|
+
|
|
278950
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278951
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
278952
|
+
|
|
278953
|
+
|
|
278954
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278955
|
+
Served asset /woople-theme/index.css - 200 OK (2ms)
|
|
278956
|
+
|
|
278957
|
+
|
|
278958
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278959
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
278960
|
+
|
|
278961
|
+
|
|
278962
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278963
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
278964
|
+
|
|
278965
|
+
|
|
278966
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278967
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
278968
|
+
|
|
278969
|
+
|
|
278970
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278971
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
278972
|
+
|
|
278973
|
+
|
|
278974
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278975
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
278976
|
+
|
|
278977
|
+
|
|
278978
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278979
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
278980
|
+
|
|
278981
|
+
|
|
278982
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278983
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
278984
|
+
|
|
278985
|
+
|
|
278986
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278987
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
278988
|
+
|
|
278989
|
+
|
|
278990
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278991
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
278992
|
+
|
|
278993
|
+
|
|
278994
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278995
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
278996
|
+
|
|
278997
|
+
|
|
278998
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
278999
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
279000
|
+
|
|
279001
|
+
|
|
279002
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279003
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
279004
|
+
|
|
279005
|
+
|
|
279006
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279007
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
279008
|
+
|
|
279009
|
+
|
|
279010
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279011
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
279012
|
+
|
|
279013
|
+
|
|
279014
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279015
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
279016
|
+
|
|
279017
|
+
|
|
279018
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279019
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
279020
|
+
|
|
279021
|
+
|
|
279022
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279023
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
279024
|
+
|
|
279025
|
+
|
|
279026
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279027
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
279028
|
+
|
|
279029
|
+
|
|
279030
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279031
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
279032
|
+
|
|
279033
|
+
|
|
279034
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279035
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
279036
|
+
|
|
279037
|
+
|
|
279038
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279039
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (6ms)
|
|
279040
|
+
|
|
279041
|
+
|
|
279042
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279043
|
+
Served asset /woople-theme/theme.js - 200 OK (65ms)
|
|
279044
|
+
|
|
279045
|
+
|
|
279046
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279047
|
+
Served asset /application.js - 200 OK (0ms)
|
|
279048
|
+
|
|
279049
|
+
|
|
279050
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279051
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
279052
|
+
|
|
279053
|
+
|
|
279054
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279055
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
279056
|
+
|
|
279057
|
+
|
|
279058
|
+
Started GET "/assets/woople-theme/certification/yellow-status.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279059
|
+
Served asset /woople-theme/certification/yellow-status.png - 200 OK (0ms)
|
|
279060
|
+
|
|
279061
|
+
|
|
279062
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279063
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
279064
|
+
|
|
279065
|
+
|
|
279066
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279067
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
279068
|
+
|
|
279069
|
+
|
|
279070
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279071
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
279072
|
+
|
|
279073
|
+
|
|
279074
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279075
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
279076
|
+
|
|
279077
|
+
|
|
279078
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:43:35 -0400
|
|
279079
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
279080
|
+
|
|
279081
|
+
|
|
279082
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:36 -0400
|
|
279083
|
+
Processing by BrowseController#send_reminder as */*
|
|
279084
|
+
Completed 400 Bad Request in 0ms
|
|
279085
|
+
|
|
279086
|
+
|
|
279087
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:39 -0400
|
|
279088
|
+
Processing by BrowseController#send_reminder as */*
|
|
279089
|
+
Completed 400 Bad Request in 0ms
|
|
279090
|
+
|
|
279091
|
+
|
|
279092
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:42 -0400
|
|
279093
|
+
Processing by BrowseController#send_reminder as */*
|
|
279094
|
+
Completed 400 Bad Request in 0ms
|
|
279095
|
+
|
|
279096
|
+
|
|
279097
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:43:44 -0400
|
|
279098
|
+
Processing by BrowseController#send_reminder as */*
|
|
279099
|
+
Completed 200 OK in 0ms
|
|
279100
|
+
|
|
279101
|
+
|
|
279102
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279103
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
279104
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
279105
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279106
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279107
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (1.6ms)
|
|
279108
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279109
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (1.3ms)
|
|
279110
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279111
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279112
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279113
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (4.9ms)
|
|
279114
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (12.4ms)
|
|
279115
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (14.2ms)
|
|
279116
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (18.1ms)
|
|
279117
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 54231)
|
|
279118
|
+
Compiled woople-theme/theme.js (41ms) (pid 54231)
|
|
279119
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (2.0ms)
|
|
279120
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.3ms)
|
|
279121
|
+
Completed 200 OK in 145ms (Views: 144.2ms)
|
|
279122
|
+
|
|
279123
|
+
|
|
279124
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279125
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
279126
|
+
|
|
279127
|
+
|
|
279128
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279129
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
279130
|
+
|
|
279131
|
+
|
|
279132
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279133
|
+
Served asset /woople-theme/base.css - 200 OK (0ms)
|
|
279134
|
+
|
|
279135
|
+
|
|
279136
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279137
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
279138
|
+
|
|
279139
|
+
|
|
279140
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279141
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
279142
|
+
|
|
279143
|
+
|
|
279144
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279145
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
279146
|
+
|
|
279147
|
+
|
|
279148
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279149
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
279150
|
+
|
|
279151
|
+
|
|
279152
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279153
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
279154
|
+
|
|
279155
|
+
|
|
279156
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279157
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
279158
|
+
|
|
279159
|
+
|
|
279160
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279161
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
279162
|
+
|
|
279163
|
+
|
|
279164
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279165
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
279166
|
+
|
|
279167
|
+
|
|
279168
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279169
|
+
Served asset /woople-theme/buttons.css - 200 OK (1ms)
|
|
279170
|
+
|
|
279171
|
+
|
|
279172
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279173
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
279174
|
+
|
|
279175
|
+
|
|
279176
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279177
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
279178
|
+
|
|
279179
|
+
|
|
279180
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279181
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
279182
|
+
|
|
279183
|
+
|
|
279184
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279185
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
279186
|
+
|
|
279187
|
+
|
|
279188
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279189
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
279190
|
+
|
|
279191
|
+
|
|
279192
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279193
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
279194
|
+
|
|
279195
|
+
|
|
279196
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279197
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
279198
|
+
|
|
279199
|
+
|
|
279200
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279201
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
279202
|
+
|
|
279203
|
+
|
|
279204
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279205
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
279206
|
+
|
|
279207
|
+
|
|
279208
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279209
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
279210
|
+
|
|
279211
|
+
|
|
279212
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279213
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
279214
|
+
|
|
279215
|
+
|
|
279216
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279217
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
279218
|
+
|
|
279219
|
+
|
|
279220
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279221
|
+
Served asset /woople-theme/index.css - 200 OK (4ms)
|
|
279222
|
+
|
|
279223
|
+
|
|
279224
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279225
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
279226
|
+
|
|
279227
|
+
|
|
279228
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279229
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
279230
|
+
|
|
279231
|
+
|
|
279232
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279233
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
279234
|
+
|
|
279235
|
+
|
|
279236
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279237
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
279238
|
+
|
|
279239
|
+
|
|
279240
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279241
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
279242
|
+
|
|
279243
|
+
|
|
279244
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279245
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
279246
|
+
|
|
279247
|
+
|
|
279248
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279249
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
279250
|
+
|
|
279251
|
+
|
|
279252
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:35 -0400
|
|
279253
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
279254
|
+
|
|
279255
|
+
|
|
279256
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279257
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
279258
|
+
|
|
279259
|
+
|
|
279260
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279261
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
279262
|
+
|
|
279263
|
+
|
|
279264
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279265
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
279266
|
+
|
|
279267
|
+
|
|
279268
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279269
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
279270
|
+
|
|
279271
|
+
|
|
279272
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279273
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
279274
|
+
|
|
279275
|
+
|
|
279276
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279277
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
279278
|
+
|
|
279279
|
+
|
|
279280
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279281
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
279282
|
+
|
|
279283
|
+
|
|
279284
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279285
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
279286
|
+
|
|
279287
|
+
|
|
279288
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279289
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
279290
|
+
|
|
279291
|
+
|
|
279292
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279293
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
279294
|
+
|
|
279295
|
+
|
|
279296
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279297
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
279298
|
+
|
|
279299
|
+
|
|
279300
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279301
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (20ms)
|
|
279302
|
+
|
|
279303
|
+
|
|
279304
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279305
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
279306
|
+
|
|
279307
|
+
|
|
279308
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279309
|
+
Served asset /application.js - 200 OK (0ms)
|
|
279310
|
+
|
|
279311
|
+
|
|
279312
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279313
|
+
Served asset /woople-theme/theme.js - 200 OK (54ms)
|
|
279314
|
+
|
|
279315
|
+
|
|
279316
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279317
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
279318
|
+
|
|
279319
|
+
|
|
279320
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279321
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
279322
|
+
|
|
279323
|
+
|
|
279324
|
+
Started GET "/assets/woople-theme/certification/yellow-status.png" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279325
|
+
Served asset /woople-theme/certification/yellow-status.png - 200 OK (0ms)
|
|
279326
|
+
|
|
279327
|
+
|
|
279328
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279329
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
279330
|
+
|
|
279331
|
+
|
|
279332
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279333
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
279334
|
+
|
|
279335
|
+
|
|
279336
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279337
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
279338
|
+
|
|
279339
|
+
|
|
279340
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279341
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
279342
|
+
|
|
279343
|
+
|
|
279344
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:36 -0400
|
|
279345
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
279346
|
+
|
|
279347
|
+
|
|
279348
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:48:38 -0400
|
|
279349
|
+
Processing by BrowseController#send_reminder as */*
|
|
279350
|
+
Completed 200 OK in 0ms
|
|
279351
|
+
|
|
279352
|
+
|
|
279353
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279354
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
279355
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.2ms)
|
|
279356
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279357
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279358
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279359
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279360
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279361
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (5.5ms)
|
|
279362
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279363
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279364
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279365
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279366
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.3ms)
|
|
279367
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279368
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279369
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279370
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
279371
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.1ms)
|
|
279372
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (26.3ms)
|
|
279373
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (27.7ms)
|
|
279374
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (33.5ms)
|
|
279375
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (3.1ms)
|
|
279376
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (2.1ms)
|
|
279377
|
+
Completed 200 OK in 85ms (Views: 84.4ms)
|
|
279378
|
+
|
|
279379
|
+
|
|
279380
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279381
|
+
Served asset /woople-theme/full_control.css - 200 OK (0ms)
|
|
279382
|
+
|
|
279383
|
+
|
|
279384
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279385
|
+
Served asset /woople-theme/menu.css - 200 OK (0ms)
|
|
279386
|
+
|
|
279387
|
+
|
|
279388
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279389
|
+
Served asset /woople-theme/base.css - 200 OK (26ms)
|
|
279390
|
+
|
|
279391
|
+
|
|
279392
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279393
|
+
Served asset /woople-theme/responsive.css - 200 OK (0ms)
|
|
279394
|
+
|
|
279395
|
+
|
|
279396
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279397
|
+
Served asset /woople-theme/profile.css - 200 OK (0ms)
|
|
279398
|
+
|
|
279399
|
+
|
|
279400
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279401
|
+
Served asset /woople-theme/content.css - 200 OK (0ms)
|
|
279402
|
+
|
|
279403
|
+
|
|
279404
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279405
|
+
Served asset /woople-theme/page-header.css - 200 OK (0ms)
|
|
279406
|
+
|
|
279407
|
+
|
|
279408
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279409
|
+
Served asset /woople-theme/buttons.css - 200 OK (0ms)
|
|
279410
|
+
|
|
279411
|
+
|
|
279412
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279413
|
+
Served asset /woople-theme/content-item.css - 200 OK (0ms)
|
|
279414
|
+
|
|
279415
|
+
|
|
279416
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279417
|
+
Served asset /woople-theme/outline.css - 200 OK (0ms)
|
|
279418
|
+
|
|
279419
|
+
|
|
279420
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279421
|
+
Served asset /woople-theme/grid.css - 200 OK (0ms)
|
|
279422
|
+
|
|
279423
|
+
|
|
279424
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279425
|
+
Served asset /woople-theme/search-results.css - 200 OK (0ms)
|
|
279426
|
+
|
|
279427
|
+
|
|
279428
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279429
|
+
Served asset /woople-theme/modal.css - 200 OK (0ms)
|
|
279430
|
+
|
|
279431
|
+
|
|
279432
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:54 -0400
|
|
279433
|
+
Served asset /woople-theme/assessment.css - 200 OK (0ms)
|
|
279434
|
+
|
|
279435
|
+
|
|
279436
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279437
|
+
Served asset /woople-theme/dashboard/base.css - 200 OK (0ms)
|
|
279438
|
+
|
|
279439
|
+
|
|
279440
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279441
|
+
Served asset /woople-theme/legacy.css - 200 OK (0ms)
|
|
279442
|
+
|
|
279443
|
+
|
|
279444
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279445
|
+
Served asset /woople-theme/basic-content.css - 200 OK (0ms)
|
|
279446
|
+
|
|
279447
|
+
|
|
279448
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279449
|
+
Served asset /woople-theme/pagination.css - 200 OK (0ms)
|
|
279450
|
+
|
|
279451
|
+
|
|
279452
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279453
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 200 OK (0ms)
|
|
279454
|
+
|
|
279455
|
+
|
|
279456
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279457
|
+
Served asset /woople-theme/dashboard/status-alert.css - 200 OK (0ms)
|
|
279458
|
+
|
|
279459
|
+
|
|
279460
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279461
|
+
Served asset /woople-theme/course.css - 200 OK (0ms)
|
|
279462
|
+
|
|
279463
|
+
|
|
279464
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279465
|
+
Served asset /woople-theme/dashboard/status-popover.css - 200 OK (0ms)
|
|
279466
|
+
|
|
279467
|
+
|
|
279468
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279469
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 200 OK (0ms)
|
|
279470
|
+
|
|
279471
|
+
|
|
279472
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279473
|
+
Served asset /woople-theme/reports/base.css - 200 OK (0ms)
|
|
279474
|
+
|
|
279475
|
+
|
|
279476
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279477
|
+
Served asset /twitter/bootstrap/transition.js - 200 OK (0ms)
|
|
279478
|
+
|
|
279479
|
+
|
|
279480
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279481
|
+
Served asset /woople-theme/index.css - 200 OK (2ms)
|
|
279482
|
+
|
|
279483
|
+
|
|
279484
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279485
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
279486
|
+
|
|
279487
|
+
|
|
279488
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279489
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
279490
|
+
|
|
279491
|
+
|
|
279492
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279493
|
+
Served asset /modernizr.js - 200 OK (0ms)
|
|
279494
|
+
|
|
279495
|
+
|
|
279496
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279497
|
+
Served asset /spin.min.js - 200 OK (0ms)
|
|
279498
|
+
|
|
279499
|
+
|
|
279500
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279501
|
+
Served asset /twitter/bootstrap/dropdown.js - 200 OK (0ms)
|
|
279502
|
+
|
|
279503
|
+
|
|
279504
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279505
|
+
Served asset /twitter/bootstrap/modal.js - 200 OK (0ms)
|
|
279506
|
+
|
|
279507
|
+
|
|
279508
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279509
|
+
Served asset /twitter/bootstrap/collapse.js - 200 OK (0ms)
|
|
279510
|
+
|
|
279511
|
+
|
|
279512
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279513
|
+
Served asset /twitter/bootstrap/button.js - 200 OK (0ms)
|
|
279514
|
+
|
|
279515
|
+
|
|
279516
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279517
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (0ms)
|
|
279518
|
+
|
|
279519
|
+
|
|
279520
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279521
|
+
Served asset /twitter/bootstrap/alert.js - 200 OK (0ms)
|
|
279522
|
+
|
|
279523
|
+
|
|
279524
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279525
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (0ms)
|
|
279526
|
+
|
|
279527
|
+
|
|
279528
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279529
|
+
Served asset /highcharts.js - 200 OK (0ms)
|
|
279530
|
+
|
|
279531
|
+
|
|
279532
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279533
|
+
Served asset /underscore-min.js - 200 OK (0ms)
|
|
279534
|
+
|
|
279535
|
+
|
|
279536
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279537
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (0ms)
|
|
279538
|
+
|
|
279539
|
+
|
|
279540
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279541
|
+
Served asset /fastclick.min_.js - 200 OK (0ms)
|
|
279542
|
+
|
|
279543
|
+
|
|
279544
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279545
|
+
Served asset /jwplayer/jwplayer.js - 200 OK (0ms)
|
|
279546
|
+
|
|
279547
|
+
|
|
279548
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279549
|
+
Served asset /woople-theme/assessment_form.js - 200 OK (0ms)
|
|
279550
|
+
|
|
279551
|
+
|
|
279552
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279553
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (0ms)
|
|
279554
|
+
|
|
279555
|
+
|
|
279556
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279557
|
+
Served asset /woople-theme/assessment_overview.js - 200 OK (0ms)
|
|
279558
|
+
|
|
279559
|
+
|
|
279560
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279561
|
+
Served asset /application.js - 200 OK (0ms)
|
|
279562
|
+
|
|
279563
|
+
|
|
279564
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279565
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (0ms)
|
|
279566
|
+
|
|
279567
|
+
|
|
279568
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279569
|
+
Served asset /woople-theme/reports/initializer.js - 200 OK (0ms)
|
|
279570
|
+
|
|
279571
|
+
|
|
279572
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279573
|
+
Served asset /woople-theme/theme.js - 200 OK (2ms)
|
|
279574
|
+
|
|
279575
|
+
|
|
279576
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279577
|
+
Served asset /woople-theme/logo.png - 200 OK (0ms)
|
|
279578
|
+
|
|
279579
|
+
|
|
279580
|
+
Started GET "/assets/woople-theme/certification/yellow-icon.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279581
|
+
Served asset /woople-theme/certification/yellow-icon.png - 200 OK (0ms)
|
|
279582
|
+
|
|
279583
|
+
|
|
279584
|
+
Started GET "/assets/woople-theme/certification/yellow-status.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279585
|
+
Served asset /woople-theme/certification/yellow-status.png - 200 OK (0ms)
|
|
279586
|
+
|
|
279587
|
+
|
|
279588
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279589
|
+
Served asset /woople-theme/certification/green-icon.png - 200 OK (0ms)
|
|
279590
|
+
|
|
279591
|
+
|
|
279592
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279593
|
+
Served asset /woople-theme/certification/red-icon.png - 200 OK (0ms)
|
|
279594
|
+
|
|
279595
|
+
|
|
279596
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279597
|
+
Served asset /woople-theme/missing-profile.png - 200 OK (0ms)
|
|
279598
|
+
|
|
279599
|
+
|
|
279600
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279601
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 200 OK (0ms)
|
|
279602
|
+
|
|
279603
|
+
|
|
279604
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-23 16:48:55 -0400
|
|
279605
|
+
Served asset /woople-theme/theme-retina.css - 200 OK (0ms)
|
|
279606
|
+
|
|
279607
|
+
|
|
279608
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:48:56 -0400
|
|
279609
|
+
Processing by BrowseController#send_reminder as */*
|
|
279610
|
+
Completed 200 OK in 0ms
|
|
279611
|
+
|
|
279612
|
+
|
|
279613
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:48:58 -0400
|
|
279614
|
+
Processing by BrowseController#send_reminder as */*
|
|
279615
|
+
Completed 200 OK in 0ms
|
|
279616
|
+
|
|
279617
|
+
|
|
279618
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:49:00 -0400
|
|
279619
|
+
Processing by BrowseController#send_reminder as */*
|
|
279620
|
+
Completed 200 OK in 0ms
|
|
279621
|
+
|
|
279622
|
+
|
|
279623
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:49:01 -0400
|
|
279624
|
+
Processing by BrowseController#send_reminder as */*
|
|
279625
|
+
Completed 200 OK in 0ms
|
|
279626
|
+
|
|
279627
|
+
|
|
279628
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 16:49:03 -0400
|
|
279629
|
+
Processing by BrowseController#send_reminder as */*
|
|
279630
|
+
Completed 400 Bad Request in 0ms
|
|
279631
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279632
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (4.3ms)
|
|
279633
|
+
Completed 200 OK in 37ms (Views: 15.0ms)
|
|
279634
|
+
Served asset /konacha.css - 200 OK (9ms)
|
|
279635
|
+
Served asset /mocha.js - 200 OK (8ms)
|
|
279636
|
+
Served asset /konacha/parent.js - 200 OK (4ms)
|
|
279637
|
+
Served asset /konacha/runner.js - 200 OK (4ms)
|
|
279638
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279639
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279640
|
+
Compiled organization_dashboard_controller_spec.js (85ms) (pid 81640)
|
|
279641
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (126.2ms)
|
|
279642
|
+
Completed 200 OK in 132ms (Views: 130.3ms)
|
|
279643
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279644
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279645
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (24.8ms)
|
|
279646
|
+
Completed 200 OK in 31ms (Views: 27.0ms)
|
|
279647
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
279648
|
+
Served asset /chai.js - 200 OK (6ms)
|
|
279649
|
+
Served asset /konacha/iframe.js - 200 OK (5ms)
|
|
279650
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279651
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (4ms)
|
|
279652
|
+
Served asset /templates/tabs.js - 200 OK (4ms)
|
|
279653
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279654
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279655
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
279656
|
+
Served asset /spec_helper.js - 200 OK (8ms)
|
|
279657
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (5ms)
|
|
279658
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
279659
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (16ms)
|
|
279660
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (4ms)
|
|
279661
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
279662
|
+
Served asset /reports/personal_report_spec.js - 200 OK (17ms)
|
|
279663
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
279664
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279665
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (22.6ms)
|
|
279666
|
+
Completed 200 OK in 46ms (Views: 32.6ms)
|
|
279667
|
+
Served asset /konacha.css - 200 OK (9ms)
|
|
279668
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279669
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279670
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279671
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279672
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 81860)
|
|
279673
|
+
Compiled organization_dashboard_controller_spec.js (107ms) (pid 81860)
|
|
279674
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (163.4ms)
|
|
279675
|
+
Completed 200 OK in 169ms (Views: 166.8ms)
|
|
279676
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279677
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279678
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (27.4ms)
|
|
279679
|
+
Completed 200 OK in 32ms (Views: 30.0ms)
|
|
279680
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
279681
|
+
Served asset /chai.js - 200 OK (4ms)
|
|
279682
|
+
Served asset /konacha/iframe.js - 200 OK (5ms)
|
|
279683
|
+
Served asset /jquery.js - 200 OK (6ms)
|
|
279684
|
+
Served asset /templates/tabs.js - 200 OK (7ms)
|
|
279685
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
279686
|
+
Served asset /spec_helper.js - 200 OK (8ms)
|
|
279687
|
+
Served asset /sinon.js - 200 OK (3ms)
|
|
279688
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (6ms)
|
|
279689
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (5ms)
|
|
279690
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (9ms)
|
|
279691
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (20ms)
|
|
279692
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
279693
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279694
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
279695
|
+
Served asset /highcharts.js - 200 OK (5ms)
|
|
279696
|
+
Served asset /reports/personal_report_spec.js - 200 OK (21ms)
|
|
279697
|
+
Processing by Konacha::SpecsController#parent as
|
|
279698
|
+
Parameters: {"path"=>"favicon"}
|
|
279699
|
+
Rendered text template (0.0ms)
|
|
279700
|
+
Completed 404 Not Found in 7ms (Views: 3.9ms)
|
|
279701
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279702
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
279703
|
+
Completed 200 OK in 28ms (Views: 12.3ms)
|
|
279704
|
+
Served asset /konacha.css - 200 OK (7ms)
|
|
279705
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279706
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279707
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279708
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279709
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279710
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (16.2ms)
|
|
279711
|
+
Completed 200 OK in 20ms (Views: 18.2ms)
|
|
279712
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279713
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279714
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.5ms)
|
|
279715
|
+
Completed 200 OK in 21ms (Views: 19.5ms)
|
|
279716
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
279717
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279718
|
+
Served asset /konacha/iframe.js - 200 OK (7ms)
|
|
279719
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279720
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279721
|
+
Served asset /templates/tabs.js - 200 OK (19ms)
|
|
279722
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279723
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279724
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
279725
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (6ms)
|
|
279726
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
279727
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
279728
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (19ms)
|
|
279729
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (6ms)
|
|
279730
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
279731
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
279732
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
279733
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279734
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
279735
|
+
Completed 200 OK in 46ms (Views: 32.2ms)
|
|
279736
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
279737
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279738
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279739
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279740
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279741
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279742
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 82046)
|
|
279743
|
+
Compiled organization_dashboard_controller_spec.js (82ms) (pid 82046)
|
|
279744
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (135.2ms)
|
|
279745
|
+
Completed 200 OK in 139ms (Views: 137.1ms)
|
|
279746
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279747
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279748
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.2ms)
|
|
279749
|
+
Completed 200 OK in 22ms (Views: 20.1ms)
|
|
279750
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279751
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279752
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279753
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279754
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279755
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279756
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279757
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279758
|
+
Served asset /spec_helper.js - 200 OK (7ms)
|
|
279759
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
279760
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
279761
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
279762
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (17ms)
|
|
279763
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279764
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
279765
|
+
Served asset /reports/personal_report_spec.js - 200 OK (17ms)
|
|
279766
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
279767
|
+
Processing by Konacha::SpecsController#iframe as */*
|
|
279768
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279769
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (5.6ms)
|
|
279770
|
+
Completed 200 OK in 16ms (Views: 13.7ms)
|
|
279771
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279772
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
279773
|
+
Completed 200 OK in 47ms (Views: 34.1ms)
|
|
279774
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
279775
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279776
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279777
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279778
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279779
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279780
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (16.0ms)
|
|
279781
|
+
Completed 200 OK in 19ms (Views: 18.0ms)
|
|
279782
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279783
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279784
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (39.9ms)
|
|
279785
|
+
Completed 200 OK in 44ms (Views: 42.1ms)
|
|
279786
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279787
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279788
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279789
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279790
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (3ms)
|
|
279791
|
+
Served asset /templates/tabs.js - 200 OK (5ms)
|
|
279792
|
+
Served asset /sinon.js - 200 OK (3ms)
|
|
279793
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
279794
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (5ms)
|
|
279795
|
+
Served asset /spec_helper.js - 200 OK (11ms)
|
|
279796
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (5ms)
|
|
279797
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
279798
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (40ms)
|
|
279799
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (3ms)
|
|
279800
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
279801
|
+
Served asset /reports/personal_report_spec.js - 200 OK (13ms)
|
|
279802
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
279803
|
+
Processing by Konacha::SpecsController#iframe as */*
|
|
279804
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279805
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (8.0ms)
|
|
279806
|
+
Completed 200 OK in 18ms (Views: 15.1ms)
|
|
279807
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279808
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
279809
|
+
Completed 200 OK in 44ms (Views: 31.9ms)
|
|
279810
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
279811
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279812
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279813
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279814
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279815
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279816
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 82246)
|
|
279817
|
+
Compiled organization_dashboard_controller_spec.js (111ms) (pid 82246)
|
|
279818
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (161.2ms)
|
|
279819
|
+
Completed 200 OK in 165ms (Views: 163.1ms)
|
|
279820
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279821
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279822
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (16.9ms)
|
|
279823
|
+
Completed 200 OK in 22ms (Views: 19.8ms)
|
|
279824
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279825
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279826
|
+
Served asset /konacha/iframe.js - 200 OK (4ms)
|
|
279827
|
+
Served asset /jquery.js - 200 OK (2ms)
|
|
279828
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279829
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279830
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
279831
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279832
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (2ms)
|
|
279833
|
+
Served asset /spec_helper.js - 200 OK (9ms)
|
|
279834
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (5ms)
|
|
279835
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
279836
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (14ms)
|
|
279837
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (3ms)
|
|
279838
|
+
Served asset /highcharts.js - 200 OK (4ms)
|
|
279839
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
279840
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
279841
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279842
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.5ms)
|
|
279843
|
+
Completed 200 OK in 44ms (Views: 31.2ms)
|
|
279844
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
279845
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279846
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279847
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279848
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279849
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279850
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 82302)
|
|
279851
|
+
Compiled organization_dashboard_controller_spec.js (89ms) (pid 82302)
|
|
279852
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (138.8ms)
|
|
279853
|
+
Completed 200 OK in 142ms (Views: 140.7ms)
|
|
279854
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279855
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279856
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.8ms)
|
|
279857
|
+
Completed 200 OK in 23ms (Views: 20.7ms)
|
|
279858
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279859
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279860
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279861
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279862
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279863
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279864
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
279865
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
279866
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
279867
|
+
Served asset /spec_helper.js - 200 OK (12ms)
|
|
279868
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
279869
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (1ms)
|
|
279870
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (16ms)
|
|
279871
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279872
|
+
Served asset /highcharts.js - 200 OK (4ms)
|
|
279873
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
279874
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
279875
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279876
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.5ms)
|
|
279877
|
+
Completed 200 OK in 48ms (Views: 34.5ms)
|
|
279878
|
+
Served asset /konacha.css - 200 OK (7ms)
|
|
279879
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279880
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279881
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279882
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279883
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279884
|
+
Compiled organization_dashboard_controller_spec.js (84ms) (pid 82382)
|
|
279885
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (137.7ms)
|
|
279886
|
+
Completed 200 OK in 141ms (Views: 139.8ms)
|
|
279887
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279888
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279889
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (19.3ms)
|
|
279890
|
+
Completed 200 OK in 25ms (Views: 22.5ms)
|
|
279891
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279892
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279893
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279894
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279895
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279896
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279897
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279898
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279899
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (2ms)
|
|
279900
|
+
Served asset /spec_helper.js - 200 OK (9ms)
|
|
279901
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
279902
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
279903
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (16ms)
|
|
279904
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279905
|
+
Served asset /highcharts.js - 200 OK (5ms)
|
|
279906
|
+
Served asset /reports/personal_report_spec.js - 200 OK (13ms)
|
|
279907
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
279908
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279909
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (4.0ms)
|
|
279910
|
+
Completed 200 OK in 58ms (Views: 36.5ms)
|
|
279911
|
+
Served asset /konacha.css - 200 OK (9ms)
|
|
279912
|
+
Served asset /mocha.js - 200 OK (44ms)
|
|
279913
|
+
Served asset /konacha/parent.js - 200 OK (6ms)
|
|
279914
|
+
Served asset /konacha/runner.js - 200 OK (4ms)
|
|
279915
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279916
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279917
|
+
Compiled organization_dashboard_controller_spec.js (86ms) (pid 82950)
|
|
279918
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (146.5ms)
|
|
279919
|
+
Completed 200 OK in 151ms (Views: 149.1ms)
|
|
279920
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279921
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279922
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (26.9ms)
|
|
279923
|
+
Completed 200 OK in 32ms (Views: 30.0ms)
|
|
279924
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279925
|
+
Served asset /chai.js - 200 OK (6ms)
|
|
279926
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279927
|
+
Served asset /jquery.js - 200 OK (2ms)
|
|
279928
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279929
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279930
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279931
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
279932
|
+
Served asset /spec_helper.js - 200 OK (7ms)
|
|
279933
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
279934
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (3ms)
|
|
279935
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
279936
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (12ms)
|
|
279937
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279938
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
279939
|
+
Served asset /reports/personal_report_spec.js - 200 OK (18ms)
|
|
279940
|
+
Served asset /highcharts.js - 200 OK (4ms)
|
|
279941
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279942
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.6ms)
|
|
279943
|
+
Completed 200 OK in 46ms (Views: 32.1ms)
|
|
279944
|
+
Served asset /konacha.css - 200 OK (7ms)
|
|
279945
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279946
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279947
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279948
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279949
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279950
|
+
Compiled organization_dashboard_controller_spec.js (81ms) (pid 82999)
|
|
279951
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (130.9ms)
|
|
279952
|
+
Completed 200 OK in 134ms (Views: 132.9ms)
|
|
279953
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279954
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279955
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (22.1ms)
|
|
279956
|
+
Completed 200 OK in 28ms (Views: 25.8ms)
|
|
279957
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279958
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279959
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279960
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279961
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279962
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279963
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
279964
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
279965
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (4ms)
|
|
279966
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
279967
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (3ms)
|
|
279968
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (1ms)
|
|
279969
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (15ms)
|
|
279970
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
279971
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
279972
|
+
Served asset /reports/personal_report_spec.js - 200 OK (16ms)
|
|
279973
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (1ms)
|
|
279974
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
279975
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
279976
|
+
Completed 200 OK in 45ms (Views: 32.8ms)
|
|
279977
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
279978
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
279979
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
279980
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
279981
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279982
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
279983
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 83078)
|
|
279984
|
+
Compiled organization_dashboard_controller_spec.js (83ms) (pid 83078)
|
|
279985
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (131.5ms)
|
|
279986
|
+
Completed 200 OK in 135ms (Views: 133.5ms)
|
|
279987
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
279988
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
279989
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (21.8ms)
|
|
279990
|
+
Completed 200 OK in 27ms (Views: 24.7ms)
|
|
279991
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
279992
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
279993
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
279994
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
279995
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
279996
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
279997
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
279998
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
279999
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (4ms)
|
|
280000
|
+
Served asset /spec_helper.js - 200 OK (7ms)
|
|
280001
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (3ms)
|
|
280002
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (1ms)
|
|
280003
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (15ms)
|
|
280004
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
280005
|
+
Served asset /highcharts.js - 200 OK (5ms)
|
|
280006
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
280007
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
280008
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280009
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.5ms)
|
|
280010
|
+
Completed 200 OK in 26ms (Views: 12.4ms)
|
|
280011
|
+
Served asset /konacha.css - 200 OK (10ms)
|
|
280012
|
+
Served asset /mocha.js - 200 OK (6ms)
|
|
280013
|
+
Served asset /konacha/parent.js - 200 OK (6ms)
|
|
280014
|
+
Served asset /konacha/runner.js - 200 OK (6ms)
|
|
280015
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280016
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280017
|
+
Compiled organization_dashboard_controller_spec.js (81ms) (pid 83126)
|
|
280018
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (110.0ms)
|
|
280019
|
+
Completed 200 OK in 113ms (Views: 111.9ms)
|
|
280020
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280021
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280022
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (18.8ms)
|
|
280023
|
+
Completed 200 OK in 24ms (Views: 21.4ms)
|
|
280024
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
280025
|
+
Served asset /chai.js - 200 OK (4ms)
|
|
280026
|
+
Served asset /konacha/iframe.js - 200 OK (7ms)
|
|
280027
|
+
Served asset /jquery.js - 200 OK (4ms)
|
|
280028
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280029
|
+
Served asset /templates/tabs.js - 200 OK (5ms)
|
|
280030
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
280031
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
280032
|
+
Served asset /spec_helper.js - 200 OK (12ms)
|
|
280033
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
280034
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
280035
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
280036
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (18ms)
|
|
280037
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
280038
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (4ms)
|
|
280039
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
280040
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
280041
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280042
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.3ms)
|
|
280043
|
+
Completed 200 OK in 46ms (Views: 33.2ms)
|
|
280044
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
280045
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280046
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
280047
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
280048
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280049
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280050
|
+
Compiled organization_dashboard_controller_spec.js (83ms) (pid 83174)
|
|
280051
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (129.0ms)
|
|
280052
|
+
Completed 200 OK in 132ms (Views: 130.8ms)
|
|
280053
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280054
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280055
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (16.9ms)
|
|
280056
|
+
Completed 200 OK in 22ms (Views: 20.1ms)
|
|
280057
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
280058
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
280059
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
280060
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280061
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280062
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
280063
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
280064
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
280065
|
+
Served asset /spec_helper.js - 200 OK (7ms)
|
|
280066
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
280067
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
280068
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
280069
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (15ms)
|
|
280070
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
280071
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
280072
|
+
Served asset /reports/personal_report_spec.js - 200 OK (15ms)
|
|
280073
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
280074
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280075
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (4.4ms)
|
|
280076
|
+
Completed 200 OK in 46ms (Views: 21.5ms)
|
|
280077
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
280078
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280079
|
+
Served asset /konacha/parent.js - 200 OK (5ms)
|
|
280080
|
+
Served asset /konacha/runner.js - 200 OK (4ms)
|
|
280081
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280082
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280083
|
+
Compiled organization_dashboard_controller_spec.js (85ms) (pid 83221)
|
|
280084
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (112.2ms)
|
|
280085
|
+
Completed 200 OK in 116ms (Views: 114.2ms)
|
|
280086
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280087
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280088
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (19.4ms)
|
|
280089
|
+
Completed 200 OK in 24ms (Views: 22.0ms)
|
|
280090
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
280091
|
+
Served asset /chai.js - 200 OK (5ms)
|
|
280092
|
+
Served asset /konacha/iframe.js - 200 OK (4ms)
|
|
280093
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280094
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280095
|
+
Served asset /templates/tabs.js - 200 OK (4ms)
|
|
280096
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
280097
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
280098
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
280099
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (6ms)
|
|
280100
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (5ms)
|
|
280101
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
280102
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (14ms)
|
|
280103
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (6ms)
|
|
280104
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
280105
|
+
Served asset /reports/personal_report_spec.js - 200 OK (14ms)
|
|
280106
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
280107
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280108
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.5ms)
|
|
280109
|
+
Completed 200 OK in 45ms (Views: 32.3ms)
|
|
280110
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
280111
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280112
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
280113
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
280114
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280115
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280116
|
+
Compiled organization_dashboard_controller_spec.js (81ms) (pid 83269)
|
|
280117
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (127.5ms)
|
|
280118
|
+
Completed 200 OK in 131ms (Views: 129.4ms)
|
|
280119
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280120
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280121
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.7ms)
|
|
280122
|
+
Completed 200 OK in 22ms (Views: 19.8ms)
|
|
280123
|
+
Served asset /application.css - 404 Not Found (6ms)
|
|
280124
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
280125
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
280126
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280127
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280128
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
280129
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
280130
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
280131
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (4ms)
|
|
280132
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
280133
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (5ms)
|
|
280134
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
280135
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (17ms)
|
|
280136
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (5ms)
|
|
280137
|
+
Served asset /highcharts.js - 200 OK (4ms)
|
|
280138
|
+
Served asset /reports/personal_report_spec.js - 200 OK (13ms)
|
|
280139
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
280140
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280141
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
280142
|
+
Completed 200 OK in 46ms (Views: 32.0ms)
|
|
280143
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
280144
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280145
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
280146
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
280147
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280148
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280149
|
+
Compiled organization_dashboard_controller_spec.js (81ms) (pid 83316)
|
|
280150
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (126.7ms)
|
|
280151
|
+
Completed 200 OK in 130ms (Views: 128.6ms)
|
|
280152
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280153
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280154
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.6ms)
|
|
280155
|
+
Completed 200 OK in 22ms (Views: 20.2ms)
|
|
280156
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
280157
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
280158
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
280159
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280160
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280161
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
280162
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
280163
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
280164
|
+
Served asset /spec_helper.js - 200 OK (7ms)
|
|
280165
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (3ms)
|
|
280166
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (3ms)
|
|
280167
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
280168
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (15ms)
|
|
280169
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (4ms)
|
|
280170
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (3ms)
|
|
280171
|
+
Served asset /reports/personal_report_spec.js - 200 OK (18ms)
|
|
280172
|
+
Served asset /highcharts.js - 200 OK (5ms)
|
|
280173
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280174
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (4.8ms)
|
|
280175
|
+
Completed 200 OK in 32ms (Views: 15.7ms)
|
|
280176
|
+
Served asset /konacha.css - 200 OK (7ms)
|
|
280177
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280178
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
280179
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
280180
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280181
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280182
|
+
Compiled organization_dashboard_controller_spec.js (84ms) (pid 83363)
|
|
280183
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (109.0ms)
|
|
280184
|
+
Completed 200 OK in 113ms (Views: 111.0ms)
|
|
280185
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280186
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280187
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (18.5ms)
|
|
280188
|
+
Completed 200 OK in 24ms (Views: 21.6ms)
|
|
280189
|
+
Served asset /application.css - 404 Not Found (7ms)
|
|
280190
|
+
Served asset /chai.js - 200 OK (4ms)
|
|
280191
|
+
Served asset /konacha/iframe.js - 200 OK (7ms)
|
|
280192
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280193
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280194
|
+
Served asset /templates/tabs.js - 200 OK (21ms)
|
|
280195
|
+
Served asset /sinon.js - 200 OK (2ms)
|
|
280196
|
+
Served asset /underscore-min.js - 200 OK (2ms)
|
|
280197
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (4ms)
|
|
280198
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
280199
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (3ms)
|
|
280200
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
280201
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (20ms)
|
|
280202
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (4ms)
|
|
280203
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
280204
|
+
Served asset /reports/personal_report_spec.js - 200 OK (16ms)
|
|
280205
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
280206
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280207
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (3.4ms)
|
|
280208
|
+
Completed 200 OK in 44ms (Views: 31.0ms)
|
|
280209
|
+
Served asset /konacha.css - 200 OK (6ms)
|
|
280210
|
+
Served asset /mocha.js - 200 OK (4ms)
|
|
280211
|
+
Served asset /konacha/parent.js - 200 OK (3ms)
|
|
280212
|
+
Served asset /konacha/runner.js - 200 OK (3ms)
|
|
280213
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280214
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280215
|
+
Compiled organization_dashboard_controller_spec.js (83ms) (pid 83412)
|
|
280216
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (129.4ms)
|
|
280217
|
+
Completed 200 OK in 133ms (Views: 131.4ms)
|
|
280218
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280219
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280220
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (17.0ms)
|
|
280221
|
+
Completed 200 OK in 22ms (Views: 19.7ms)
|
|
280222
|
+
Served asset /application.css - 404 Not Found (5ms)
|
|
280223
|
+
Served asset /chai.js - 200 OK (3ms)
|
|
280224
|
+
Served asset /konacha/iframe.js - 200 OK (6ms)
|
|
280225
|
+
Served asset /jquery.js - 200 OK (3ms)
|
|
280226
|
+
Served asset /sinon-chai/sinon-chai.js - 200 OK (2ms)
|
|
280227
|
+
Served asset /templates/tabs.js - 200 OK (3ms)
|
|
280228
|
+
Served asset /sinon.js - 200 OK (1ms)
|
|
280229
|
+
Served asset /underscore-min.js - 200 OK (3ms)
|
|
280230
|
+
Served asset /twitter/bootstrap/tooltip.js - 200 OK (4ms)
|
|
280231
|
+
Served asset /spec_helper.js - 200 OK (10ms)
|
|
280232
|
+
Served asset /twitter/bootstrap/popover.js - 200 OK (4ms)
|
|
280233
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (2ms)
|
|
280234
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (14ms)
|
|
280235
|
+
Served asset /twitter/bootstrap/tab.js - 200 OK (3ms)
|
|
280236
|
+
Served asset /highcharts.js - 200 OK (3ms)
|
|
280237
|
+
Served asset /reports/personal_report_spec.js - 200 OK (16ms)
|
|
280238
|
+
Served asset /woople-theme/reports/activity_report.js - 200 OK (2ms)
|
|
280239
|
+
Processing by Konacha::SpecsController#parent as HTML
|
|
280240
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/parent.html.erb (1.9ms)
|
|
280241
|
+
Completed 200 OK in 7ms (Views: 5.1ms)
|
|
280242
|
+
Served asset /konacha.css - 304 Not Modified (0ms)
|
|
280243
|
+
Served asset /mocha.js - 304 Not Modified (0ms)
|
|
280244
|
+
Served asset /konacha/parent.js - 304 Not Modified (0ms)
|
|
280245
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280246
|
+
Parameters: {"path"=>"organization_dashboard_controller_spec"}
|
|
280247
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 81860)
|
|
280248
|
+
Compiled organization_dashboard_controller_spec.js (24ms) (pid 81860)
|
|
280249
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (55.5ms)
|
|
280250
|
+
Completed 200 OK in 59ms (Views: 57.5ms)
|
|
280251
|
+
Processing by Konacha::SpecsController#iframe as HTML
|
|
280252
|
+
Parameters: {"path"=>"reports/personal_report_spec"}
|
|
280253
|
+
Rendered /Users/paul/.rvm/gems/ruby-1.9.3-p194/gems/konacha-2.0.0.beta3/app/views/konacha/specs/iframe.html.erb (4.1ms)
|
|
280254
|
+
Completed 200 OK in 8ms (Views: 6.2ms)
|
|
280255
|
+
Served asset /application.css - 404 Not Found (10ms)
|
|
280256
|
+
Served asset /chai.js - 304 Not Modified (0ms)
|
|
280257
|
+
Served asset /konacha/iframe.js - 304 Not Modified (0ms)
|
|
280258
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
280259
|
+
Served asset /sinon.js - 304 Not Modified (0ms)
|
|
280260
|
+
Served asset /sinon-chai/sinon-chai.js - 304 Not Modified (0ms)
|
|
280261
|
+
Served asset /templates/tabs.js - 304 Not Modified (0ms)
|
|
280262
|
+
Served asset /spec_helper.js - 304 Not Modified (0ms)
|
|
280263
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
280264
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
280265
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
280266
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (3ms)
|
|
280267
|
+
Served asset /organization_dashboard_controller_spec.js - 200 OK (19ms)
|
|
280268
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
280269
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
280270
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
280271
|
+
Served asset /reports/personal_report_spec.js - 304 Not Modified (1ms)
|
|
280272
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
280273
|
+
Served asset /konacha/iframe.js - 304 Not Modified (0ms)
|
|
280274
|
+
Served asset /sinon-chai/sinon-chai.js - 304 Not Modified (0ms)
|
|
280275
|
+
Served asset /sinon.js - 304 Not Modified (0ms)
|
|
280276
|
+
Served asset /templates/tabs.js - 304 Not Modified (0ms)
|
|
280277
|
+
Served asset /sinon-chai/sinon-chai.js - 304 Not Modified (0ms)
|
|
280278
|
+
Served asset /spec_helper.js - 304 Not Modified (0ms)
|
|
280279
|
+
Served asset /templates/tabs.js - 304 Not Modified (0ms)
|
|
280280
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
280281
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
280282
|
+
Served asset /reports/personal_report_spec.js - 304 Not Modified (0ms)
|
|
280283
|
+
Processing by Konacha::SpecsController#parent as
|
|
280284
|
+
Parameters: {"path"=>"favicon"}
|
|
280285
|
+
Rendered text template (0.0ms)
|
|
280286
|
+
Completed 404 Not Found in 4ms (Views: 0.7ms)
|
|
280287
|
+
|
|
280288
|
+
|
|
280289
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 18:05:40 -0400
|
|
280290
|
+
Processing by BrowseController#send_reminder as */*
|
|
280291
|
+
Completed 200 OK in 0ms
|
|
280292
|
+
|
|
280293
|
+
|
|
280294
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 18:05:42 -0400
|
|
280295
|
+
Processing by BrowseController#send_reminder as */*
|
|
280296
|
+
Completed 200 OK in 0ms
|
|
280297
|
+
|
|
280298
|
+
|
|
280299
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 18:05:43 -0400
|
|
280300
|
+
Processing by BrowseController#send_reminder as */*
|
|
280301
|
+
Completed 200 OK in 0ms
|
|
280302
|
+
|
|
280303
|
+
|
|
280304
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-23 18:05:45 -0400
|
|
280305
|
+
Processing by BrowseController#send_reminder as */*
|
|
280306
|
+
Completed 200 OK in 0ms
|
|
280307
|
+
|
|
280308
|
+
|
|
280309
|
+
Started GET "/" for 10.0.1.17 at 2012-10-24 09:56:37 -0400
|
|
280310
|
+
Processing by BrowseController#show as HTML
|
|
280311
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (1.3ms)
|
|
280312
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_content_item_header.html.erb (12.6ms)
|
|
280313
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_content_item.html.erb (2.8ms)
|
|
280314
|
+
Rendered browse/show.html.erb within layouts/theme (43.9ms)
|
|
280315
|
+
Compiled woople-theme/organization_dashboard_controller.js (0ms) (pid 91077)
|
|
280316
|
+
Compiled woople-theme/theme.js (38ms) (pid 91077)
|
|
280317
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (8.2ms)
|
|
280318
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (5.5ms)
|
|
280319
|
+
Completed 200 OK in 422ms (Views: 400.3ms)
|
|
280320
|
+
|
|
280321
|
+
|
|
280322
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280323
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (3ms)
|
|
280324
|
+
|
|
280325
|
+
|
|
280326
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280327
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (4ms)
|
|
280328
|
+
|
|
280329
|
+
|
|
280330
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280331
|
+
Served asset /woople-theme/base.css - 304 Not Modified (3ms)
|
|
280332
|
+
|
|
280333
|
+
|
|
280334
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280335
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (3ms)
|
|
280336
|
+
|
|
280337
|
+
|
|
280338
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280339
|
+
Served asset /woople-theme/content.css - 304 Not Modified (3ms)
|
|
280340
|
+
|
|
280341
|
+
|
|
280342
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280343
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (3ms)
|
|
280344
|
+
|
|
280345
|
+
|
|
280346
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280347
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (5ms)
|
|
280348
|
+
|
|
280349
|
+
|
|
280350
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280351
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (3ms)
|
|
280352
|
+
|
|
280353
|
+
|
|
280354
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280355
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (3ms)
|
|
280356
|
+
|
|
280357
|
+
|
|
280358
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280359
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (3ms)
|
|
280360
|
+
|
|
280361
|
+
|
|
280362
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280363
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (4ms)
|
|
280364
|
+
|
|
280365
|
+
|
|
280366
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280367
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (4ms)
|
|
280368
|
+
|
|
280369
|
+
|
|
280370
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280371
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (4ms)
|
|
280372
|
+
|
|
280373
|
+
|
|
280374
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280375
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (4ms)
|
|
280376
|
+
|
|
280377
|
+
|
|
280378
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280379
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (3ms)
|
|
280380
|
+
|
|
280381
|
+
|
|
280382
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280383
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (3ms)
|
|
280384
|
+
|
|
280385
|
+
|
|
280386
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280387
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (3ms)
|
|
280388
|
+
|
|
280389
|
+
|
|
280390
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280391
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (3ms)
|
|
280392
|
+
|
|
280393
|
+
|
|
280394
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280395
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (5ms)
|
|
280396
|
+
|
|
280397
|
+
|
|
280398
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280399
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (2ms)
|
|
280400
|
+
|
|
280401
|
+
|
|
280402
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280403
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (3ms)
|
|
280404
|
+
|
|
280405
|
+
|
|
280406
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280407
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (3ms)
|
|
280408
|
+
|
|
280409
|
+
|
|
280410
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280411
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (3ms)
|
|
280412
|
+
|
|
280413
|
+
|
|
280414
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280415
|
+
Served asset /woople-theme/course.css - 304 Not Modified (3ms)
|
|
280416
|
+
|
|
280417
|
+
|
|
280418
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280419
|
+
Served asset /woople-theme/index.css - 304 Not Modified (25ms)
|
|
280420
|
+
|
|
280421
|
+
|
|
280422
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280423
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
280424
|
+
|
|
280425
|
+
|
|
280426
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280427
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
280428
|
+
|
|
280429
|
+
|
|
280430
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280431
|
+
Served asset /modernizr.js - 304 Not Modified (3ms)
|
|
280432
|
+
|
|
280433
|
+
|
|
280434
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280435
|
+
Served asset /spin.min.js - 304 Not Modified (3ms)
|
|
280436
|
+
|
|
280437
|
+
|
|
280438
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280439
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (5ms)
|
|
280440
|
+
|
|
280441
|
+
|
|
280442
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280443
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (8ms)
|
|
280444
|
+
|
|
280445
|
+
|
|
280446
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280447
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (8ms)
|
|
280448
|
+
|
|
280449
|
+
|
|
280450
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280451
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (7ms)
|
|
280452
|
+
|
|
280453
|
+
|
|
280454
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280455
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (5ms)
|
|
280456
|
+
|
|
280457
|
+
|
|
280458
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280459
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (31ms)
|
|
280460
|
+
|
|
280461
|
+
|
|
280462
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280463
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (7ms)
|
|
280464
|
+
|
|
280465
|
+
|
|
280466
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280467
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (7ms)
|
|
280468
|
+
|
|
280469
|
+
|
|
280470
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280471
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (7ms)
|
|
280472
|
+
|
|
280473
|
+
|
|
280474
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280475
|
+
Served asset /fastclick.min_.js - 304 Not Modified (3ms)
|
|
280476
|
+
|
|
280477
|
+
|
|
280478
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280479
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (4ms)
|
|
280480
|
+
|
|
280481
|
+
|
|
280482
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280483
|
+
Served asset /highcharts.js - 304 Not Modified (6ms)
|
|
280484
|
+
|
|
280485
|
+
|
|
280486
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280487
|
+
Served asset /underscore-min.js - 304 Not Modified (2ms)
|
|
280488
|
+
|
|
280489
|
+
|
|
280490
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280491
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (6ms)
|
|
280492
|
+
|
|
280493
|
+
|
|
280494
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280495
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (5ms)
|
|
280496
|
+
|
|
280497
|
+
|
|
280498
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280499
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 200 OK (5ms)
|
|
280500
|
+
|
|
280501
|
+
|
|
280502
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280503
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (4ms)
|
|
280504
|
+
|
|
280505
|
+
|
|
280506
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280507
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (5ms)
|
|
280508
|
+
|
|
280509
|
+
|
|
280510
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280511
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (32ms)
|
|
280512
|
+
|
|
280513
|
+
|
|
280514
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280515
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
280516
|
+
|
|
280517
|
+
|
|
280518
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280519
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (5ms)
|
|
280520
|
+
|
|
280521
|
+
|
|
280522
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280523
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (4ms)
|
|
280524
|
+
|
|
280525
|
+
|
|
280526
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280527
|
+
Served asset /woople-theme/certification/red-icon.png - 304 Not Modified (4ms)
|
|
280528
|
+
|
|
280529
|
+
|
|
280530
|
+
Started GET "/assets/woople-theme/completed-triangle.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280531
|
+
Served asset /woople-theme/completed-triangle.png - 304 Not Modified (4ms)
|
|
280532
|
+
|
|
280533
|
+
|
|
280534
|
+
Started GET "/assets/innovation.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280535
|
+
Served asset /innovation.png - 304 Not Modified (1ms)
|
|
280536
|
+
|
|
280537
|
+
|
|
280538
|
+
Started GET "/assets/training.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280539
|
+
Served asset /training.png - 304 Not Modified (1ms)
|
|
280540
|
+
|
|
280541
|
+
|
|
280542
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280543
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 304 Not Modified (7ms)
|
|
280544
|
+
|
|
280545
|
+
|
|
280546
|
+
Started GET "/assets/coffee.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280547
|
+
Served asset /coffee.png - 200 OK (1ms)
|
|
280548
|
+
|
|
280549
|
+
|
|
280550
|
+
Started GET "/assets/pen.png" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280551
|
+
Served asset /pen.png - 304 Not Modified (2ms)
|
|
280552
|
+
|
|
280553
|
+
|
|
280554
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:38 -0400
|
|
280555
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (2ms)
|
|
280556
|
+
|
|
280557
|
+
|
|
280558
|
+
Started GET "/organization-dashboard" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280559
|
+
Processing by BrowseController#organization_dashboard as HTML
|
|
280560
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_page_header.html.erb (0.1ms)
|
|
280561
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.5ms)
|
|
280562
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
280563
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
280564
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
280565
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_status_alert.html.erb (0.1ms)
|
|
280566
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_account_user.html.erb (6.1ms)
|
|
280567
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_account.html.erb (12.0ms)
|
|
280568
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/dashboard/_organization_accounts.html.erb (16.3ms)
|
|
280569
|
+
Rendered browse/organization_dashboard.html.erb within layouts/theme (26.6ms)
|
|
280570
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_profile.html.erb (1.8ms)
|
|
280571
|
+
Rendered /Users/paul/Sites/woople-theme/app/views/woople-theme/_menu.html.erb (1.4ms)
|
|
280572
|
+
Completed 200 OK in 59ms (Views: 58.7ms)
|
|
280573
|
+
|
|
280574
|
+
|
|
280575
|
+
Started GET "/assets/woople-theme/full_control.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280576
|
+
Served asset /woople-theme/full_control.css - 304 Not Modified (0ms)
|
|
280577
|
+
|
|
280578
|
+
|
|
280579
|
+
Started GET "/assets/woople-theme/responsive.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280580
|
+
Served asset /woople-theme/responsive.css - 304 Not Modified (0ms)
|
|
280581
|
+
|
|
280582
|
+
|
|
280583
|
+
Started GET "/assets/woople-theme/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280584
|
+
Served asset /woople-theme/base.css - 304 Not Modified (0ms)
|
|
280585
|
+
|
|
280586
|
+
|
|
280587
|
+
Started GET "/assets/woople-theme/menu.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280588
|
+
Served asset /woople-theme/menu.css - 304 Not Modified (0ms)
|
|
280589
|
+
|
|
280590
|
+
|
|
280591
|
+
Started GET "/assets/woople-theme/content.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280592
|
+
Served asset /woople-theme/content.css - 304 Not Modified (0ms)
|
|
280593
|
+
|
|
280594
|
+
|
|
280595
|
+
Started GET "/assets/woople-theme/profile.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280596
|
+
Served asset /woople-theme/profile.css - 304 Not Modified (0ms)
|
|
280597
|
+
|
|
280598
|
+
|
|
280599
|
+
Started GET "/assets/woople-theme/page-header.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280600
|
+
Served asset /woople-theme/page-header.css - 304 Not Modified (0ms)
|
|
280601
|
+
|
|
280602
|
+
|
|
280603
|
+
Started GET "/assets/woople-theme/outline.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280604
|
+
Served asset /woople-theme/outline.css - 304 Not Modified (0ms)
|
|
280605
|
+
|
|
280606
|
+
|
|
280607
|
+
Started GET "/assets/woople-theme/grid.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280608
|
+
Served asset /woople-theme/grid.css - 304 Not Modified (0ms)
|
|
280609
|
+
|
|
280610
|
+
|
|
280611
|
+
Started GET "/assets/woople-theme/buttons.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280612
|
+
Served asset /woople-theme/buttons.css - 304 Not Modified (0ms)
|
|
280613
|
+
|
|
280614
|
+
|
|
280615
|
+
Started GET "/assets/woople-theme/content-item.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280616
|
+
Served asset /woople-theme/content-item.css - 304 Not Modified (0ms)
|
|
280617
|
+
|
|
280618
|
+
|
|
280619
|
+
Started GET "/assets/woople-theme/search-results.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280620
|
+
Served asset /woople-theme/search-results.css - 304 Not Modified (0ms)
|
|
280621
|
+
|
|
280622
|
+
|
|
280623
|
+
Started GET "/assets/woople-theme/pagination.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280624
|
+
Served asset /woople-theme/pagination.css - 304 Not Modified (0ms)
|
|
280625
|
+
|
|
280626
|
+
|
|
280627
|
+
Started GET "/assets/woople-theme/modal.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280628
|
+
Served asset /woople-theme/modal.css - 304 Not Modified (0ms)
|
|
280629
|
+
|
|
280630
|
+
|
|
280631
|
+
Started GET "/assets/woople-theme/legacy.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280632
|
+
Served asset /woople-theme/legacy.css - 304 Not Modified (17ms)
|
|
280633
|
+
|
|
280634
|
+
|
|
280635
|
+
Started GET "/assets/woople-theme/basic-content.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280636
|
+
Served asset /woople-theme/basic-content.css - 304 Not Modified (0ms)
|
|
280637
|
+
|
|
280638
|
+
|
|
280639
|
+
Started GET "/assets/woople-theme/assessment.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280640
|
+
Served asset /woople-theme/assessment.css - 304 Not Modified (0ms)
|
|
280641
|
+
|
|
280642
|
+
|
|
280643
|
+
Started GET "/assets/woople-theme/dashboard/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280644
|
+
Served asset /woople-theme/dashboard/base.css - 304 Not Modified (0ms)
|
|
280645
|
+
|
|
280646
|
+
|
|
280647
|
+
Started GET "/assets/woople-theme/dashboard/organization-accounts.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280648
|
+
Served asset /woople-theme/dashboard/organization-accounts.css - 304 Not Modified (0ms)
|
|
280649
|
+
|
|
280650
|
+
|
|
280651
|
+
Started GET "/assets/woople-theme/dashboard/status-alert.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280652
|
+
Served asset /woople-theme/dashboard/status-alert.css - 304 Not Modified (0ms)
|
|
280653
|
+
|
|
280654
|
+
|
|
280655
|
+
Started GET "/assets/woople-theme/dashboard/status-popover.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280656
|
+
Served asset /woople-theme/dashboard/status-popover.css - 304 Not Modified (0ms)
|
|
280657
|
+
|
|
280658
|
+
|
|
280659
|
+
Started GET "/assets/woople-theme/dashboard/user_and_status.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280660
|
+
Served asset /woople-theme/dashboard/user_and_status.css - 304 Not Modified (0ms)
|
|
280661
|
+
|
|
280662
|
+
|
|
280663
|
+
Started GET "/assets/woople-theme/reports/base.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280664
|
+
Served asset /woople-theme/reports/base.css - 304 Not Modified (0ms)
|
|
280665
|
+
|
|
280666
|
+
|
|
280667
|
+
Started GET "/assets/woople-theme/course.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280668
|
+
Served asset /woople-theme/course.css - 304 Not Modified (0ms)
|
|
280669
|
+
|
|
280670
|
+
|
|
280671
|
+
Started GET "/assets/woople-theme/index.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280672
|
+
Served asset /woople-theme/index.css - 304 Not Modified (1ms)
|
|
280673
|
+
|
|
280674
|
+
|
|
280675
|
+
Started GET "/assets/jquery.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280676
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
280677
|
+
|
|
280678
|
+
|
|
280679
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280680
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
280681
|
+
|
|
280682
|
+
|
|
280683
|
+
Started GET "/assets/modernizr.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280684
|
+
Served asset /modernizr.js - 304 Not Modified (0ms)
|
|
280685
|
+
|
|
280686
|
+
|
|
280687
|
+
Started GET "/assets/spin.min.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280688
|
+
Served asset /spin.min.js - 304 Not Modified (0ms)
|
|
280689
|
+
|
|
280690
|
+
|
|
280691
|
+
Started GET "/assets/twitter/bootstrap/transition.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280692
|
+
Served asset /twitter/bootstrap/transition.js - 304 Not Modified (0ms)
|
|
280693
|
+
|
|
280694
|
+
|
|
280695
|
+
Started GET "/assets/twitter/bootstrap/dropdown.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280696
|
+
Served asset /twitter/bootstrap/dropdown.js - 304 Not Modified (0ms)
|
|
280697
|
+
|
|
280698
|
+
|
|
280699
|
+
Started GET "/assets/twitter/bootstrap/modal.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280700
|
+
Served asset /twitter/bootstrap/modal.js - 304 Not Modified (0ms)
|
|
280701
|
+
|
|
280702
|
+
|
|
280703
|
+
Started GET "/assets/twitter/bootstrap/button.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280704
|
+
Served asset /twitter/bootstrap/button.js - 304 Not Modified (0ms)
|
|
280705
|
+
|
|
280706
|
+
|
|
280707
|
+
Started GET "/assets/twitter/bootstrap/alert.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280708
|
+
Served asset /twitter/bootstrap/alert.js - 304 Not Modified (0ms)
|
|
280709
|
+
|
|
280710
|
+
|
|
280711
|
+
Started GET "/assets/twitter/bootstrap/tab.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280712
|
+
Served asset /twitter/bootstrap/tab.js - 304 Not Modified (0ms)
|
|
280713
|
+
|
|
280714
|
+
|
|
280715
|
+
Started GET "/assets/twitter/bootstrap/collapse.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280716
|
+
Served asset /twitter/bootstrap/collapse.js - 304 Not Modified (0ms)
|
|
280717
|
+
|
|
280718
|
+
|
|
280719
|
+
Started GET "/assets/twitter/bootstrap/tooltip.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280720
|
+
Served asset /twitter/bootstrap/tooltip.js - 304 Not Modified (0ms)
|
|
280721
|
+
|
|
280722
|
+
|
|
280723
|
+
Started GET "/assets/twitter/bootstrap/popover.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280724
|
+
Served asset /twitter/bootstrap/popover.js - 304 Not Modified (0ms)
|
|
280725
|
+
|
|
280726
|
+
|
|
280727
|
+
Started GET "/assets/fastclick.min_.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280728
|
+
Served asset /fastclick.min_.js - 304 Not Modified (0ms)
|
|
280729
|
+
|
|
280730
|
+
|
|
280731
|
+
Started GET "/assets/jwplayer/jwplayer.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280732
|
+
Served asset /jwplayer/jwplayer.js - 304 Not Modified (0ms)
|
|
280733
|
+
|
|
280734
|
+
|
|
280735
|
+
Started GET "/assets/highcharts.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280736
|
+
Served asset /highcharts.js - 304 Not Modified (0ms)
|
|
280737
|
+
|
|
280738
|
+
|
|
280739
|
+
Started GET "/assets/underscore-min.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280740
|
+
Served asset /underscore-min.js - 304 Not Modified (0ms)
|
|
280741
|
+
|
|
280742
|
+
|
|
280743
|
+
Started GET "/assets/woople-theme/assessment_form.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280744
|
+
Served asset /woople-theme/assessment_form.js - 304 Not Modified (0ms)
|
|
280745
|
+
|
|
280746
|
+
|
|
280747
|
+
Started GET "/assets/woople-theme/assessment_overview.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280748
|
+
Served asset /woople-theme/assessment_overview.js - 304 Not Modified (0ms)
|
|
280749
|
+
|
|
280750
|
+
|
|
280751
|
+
Started GET "/assets/woople-theme/organization_dashboard_controller.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280752
|
+
Served asset /woople-theme/organization_dashboard_controller.js - 304 Not Modified (0ms)
|
|
280753
|
+
|
|
280754
|
+
|
|
280755
|
+
Started GET "/assets/woople-theme/reports/activity_report.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280756
|
+
Served asset /woople-theme/reports/activity_report.js - 304 Not Modified (0ms)
|
|
280757
|
+
|
|
280758
|
+
|
|
280759
|
+
Started GET "/assets/woople-theme/reports/initializer.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280760
|
+
Served asset /woople-theme/reports/initializer.js - 304 Not Modified (0ms)
|
|
280761
|
+
|
|
280762
|
+
|
|
280763
|
+
Started GET "/assets/woople-theme/theme.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280764
|
+
Served asset /woople-theme/theme.js - 304 Not Modified (3ms)
|
|
280765
|
+
|
|
280766
|
+
|
|
280767
|
+
Started GET "/assets/application.js?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280768
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
280769
|
+
|
|
280770
|
+
|
|
280771
|
+
Started GET "/assets/woople-theme/logo.png" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280772
|
+
Served asset /woople-theme/logo.png - 304 Not Modified (0ms)
|
|
280773
|
+
|
|
280774
|
+
|
|
280775
|
+
Started GET "/assets/woople-theme/missing-profile.png" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280776
|
+
Served asset /woople-theme/missing-profile.png - 304 Not Modified (0ms)
|
|
280777
|
+
|
|
280778
|
+
|
|
280779
|
+
Started GET "/assets/woople-theme/certification/red-icon.png" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280780
|
+
Served asset /woople-theme/certification/red-icon.png - 304 Not Modified (0ms)
|
|
280781
|
+
|
|
280782
|
+
|
|
280783
|
+
Started GET "/assets/woople-theme/certification/red-status.png" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280784
|
+
Served asset /woople-theme/certification/red-status.png - 304 Not Modified (3ms)
|
|
280785
|
+
|
|
280786
|
+
|
|
280787
|
+
Started GET "/assets/woople-theme/certification/green-icon.png" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280788
|
+
Served asset /woople-theme/certification/green-icon.png - 304 Not Modified (4ms)
|
|
280789
|
+
|
|
280790
|
+
|
|
280791
|
+
Started GET "/assets/font-awesome/fontawesome-webfont.woff" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280792
|
+
Served asset /font-awesome/fontawesome-webfont.woff - 304 Not Modified (0ms)
|
|
280793
|
+
|
|
280794
|
+
|
|
280795
|
+
Started GET "/assets/woople-theme/theme-retina.css?body=1" for 10.0.1.17 at 2012-10-24 09:56:41 -0400
|
|
280796
|
+
Served asset /woople-theme/theme-retina.css - 304 Not Modified (0ms)
|
|
280797
|
+
|
|
280798
|
+
|
|
280799
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-24 09:56:43 -0400
|
|
280800
|
+
Processing by BrowseController#send_reminder as */*
|
|
280801
|
+
Completed 200 OK in 0ms
|
|
280802
|
+
|
|
280803
|
+
|
|
280804
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-24 09:56:44 -0400
|
|
280805
|
+
Processing by BrowseController#send_reminder as */*
|
|
280806
|
+
Completed 400 Bad Request in 0ms
|
|
280807
|
+
|
|
280808
|
+
|
|
280809
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-24 09:56:47 -0400
|
|
280810
|
+
Processing by BrowseController#send_reminder as */*
|
|
280811
|
+
Completed 400 Bad Request in 0ms
|
|
280812
|
+
|
|
280813
|
+
|
|
280814
|
+
Started POST "/reminder" for 10.0.1.17 at 2012-10-24 09:56:49 -0400
|
|
280815
|
+
Processing by BrowseController#send_reminder as */*
|
|
280816
|
+
Completed 400 Bad Request in 0ms
|