WPBDC 2013.1.11 → 2013.2.0

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.
Files changed (3) hide show
  1. checksums.yaml +8 -8
  2. data/ext/WPBDC/analysis.c +8 -8
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTgzMjhkMjY0YzBmMmJmOTc5MWRjYzI3NWI4YTM0ZTM1NDJjNWU0ZA==
4
+ NTEwZmJhNWU0MWRhOGZiYWUzMjExOGMwYjYxMTUzMDliNTIyMGNmOQ==
5
5
  data.tar.gz: !binary |-
6
- YTk2YjU5MDlkOGQ4N2FhZThhOWYwYzA3MTY0NWU4ZjFmZGQ0YzFkZQ==
6
+ NDJiMDgxNWI1YmVhZmMzYTc3NDc4YzQ3ZDA1NTE3MmNkZWQ2OGIzOQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- MzJkMjI5ODZjOWJjOTk1MTM3OTY1MDdkMTU4OTgxNDgwNDBkMmEwMjc0MTU5
10
- NmMxZmE1YTk1MDU4YjNiMzAxYWJjYmQ1OTg1Zjg0OTNkMjA2ZjBkNjg3NTM0
11
- NzEzY2JiYjQwZTEzMmYwZGM1N2I1ODUzZDE4ODc2MjAwNmY3ZmI=
9
+ OTU5MmUwN2FmYTM3ZmEyZTI0MjhmZTA4NDE0NTJmNjljMjU3ZTA5ZDhhNzFi
10
+ NmRlODRmYjdlMzllMmU4YWIzYzYwYmRlMTU1Yzg1NDFlNmJhZWQ2MzJjNTAz
11
+ ODEyZjM5YTYyYzQ3MjBiZTBlYzRmNDIxM2UzMWM0MjIyNGVkMzQ=
12
12
  data.tar.gz: !binary |-
13
- ZjQ1OGNmYzU1ZjgyZmIwOWRkZjFlODNhNjM0NDRiMTFiOGE5YmVlMWU4MTBi
14
- MzRjMzRhYTI3YTc3NWE4MjZjYzJkOTBiODNmMGI0YjE2NjlmOTNiNjgzNWYx
15
- NjAwYmJmZmU4ZWMzN2M4NmFhYWE3NzM0ZDZhMDRiMjE4NzVkMjE=
13
+ NzYzZTM2ODRkMDZkNGJiODhjZjliMWFkMjk5ZTdhMDg3MGM2MzZkMmNlMGU5
14
+ OGI2NDYyZjI4NTNjYjUwZDFjMTkwYjQyMmQ3YWM5NWE4ZmNjOTM0Y2VjMDlm
15
+ NmU3NzlmZGNjMjkxY2RiYTk4MWU1ZWU3N2M0NjI2OGI5ZWZjMWQ=
data/ext/WPBDC/analysis.c CHANGED
@@ -509,8 +509,8 @@ char *analysis_to_html(TAnalysis *analysis,
509
509
 
510
510
  // Header
511
511
  Append(
512
- "<table border=1 cellspacing=0 cellpadding=2>\n"
513
- "<tr><th colspan=15>"
512
+ "<table class=\"analysis\">\n"
513
+ "<tr><th class=\"analysis_head\" colspan=15>"
514
514
  );
515
515
  Append("Load Test Results Report (Design Iteration #");
516
516
  AppendInt(bridge->n_design_iterations);
@@ -526,14 +526,14 @@ char *analysis_to_html(TAnalysis *analysis,
526
526
  Append(
527
527
  ")</th></tr>\n"
528
528
  "<tr>\n"
529
- " <th colspan=5>Member</th><th>&nbsp;</th><th colspan=4>Compression</th><th>&nbsp;</th><th colspan=4>Tension</th>"
529
+ " <th class=\"analysis_head\" colspan=5>Member</th><th class=\"analysis_head\">&nbsp;</th><th class=\"analysis_head\" colspan=4>Compression</th><th class=\"analysis_head\" >&nbsp;</th><th class=\"analysis_head\" colspan=4>Tension</th>"
530
530
  "</tr>\n"
531
531
  "<tr>\n"
532
- " <th>#</th><th>Size</th><th>Section</th><th>Matl.</th><th>Length<br>(m)</th>\n"
533
- " <th>&nbsp;</th>\n"
534
- " <th>Force<br>(kN)</th><th>Strength<br>(kN)</th><th>Force/<br>Strength</th><th>Status</th>\n"
535
- " <th>&nbsp;</th>\n"
536
- " <th>Force<br>(kN)</th><th>Strength<br>(kN)</th><th>Force/<br>Strength</th><th>Status</th>\n"
532
+ " <th class=\"analysis_head\">#</th><th class=\"analysis_head\">Size</th><th class=\"analysis_head\">Section</th><th class=\"analysis_head\">Matl.</th><th class=\"analysis_head\">Length<br>(m)</th>\n"
533
+ " <th class=\"analysis_head\">&nbsp;</th>\n"
534
+ " <th class=\"analysis_head\">Force<br>(kN)</th><th class=\"analysis_head\">Strength<br>(kN)</th><th class=\"analysis_head\">Force/<br>Strength</th><th class=\"analysis_head\">Status</th>\n"
535
+ " <th class=\"analysis_head\">&nbsp;</th>\n"
536
+ " <th class=\"analysis_head\">Force<br>(kN)</th><th class=\"analysis_head\">Strength<br>(kN)</th><th class=\"analysis_head\">Force/<br>Strength</th><th class=\"analysis_head\">Status</th>\n"
537
537
  "</tr>\n"
538
538
  );
539
539
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: WPBDC
3
3
  version: !ruby/object:Gem::Version
4
- version: 2013.1.11
4
+ version: 2013.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene Ressler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-14 00:00:00.000000000 Z
11
+ date: 2013-07-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Container for C code extension that implements the West Point Bridge
14
14
  Contest Judge.