repo
string
commit
string
message
string
diff
string
antw/polymer
f197d918217c6d042fced27ad258f60533add366
Implement data URIs.
diff --git a/features/data_uri.feature b/features/data_uri.feature new file mode 100644 index 0000000..32fb83c --- /dev/null +++ b/features/data_uri.feature @@ -0,0 +1,31 @@ +@polymer-bond +Feature: Using Data URIs instead of a file + + In order to further decrease the number of requests + It should be possible to "i...
antw/polymer
e75402eceef7a39293d805668e43a0d6bc68bff7
Clean up Sass mixin feature.
diff --git a/features/sass_mixin.feature b/features/sass_mixin.feature index 945762f..64e51dd 100644 --- a/features/sass_mixin.feature +++ b/features/sass_mixin.feature @@ -1,30 +1,28 @@ @polymer-bond Feature: Sass mixin files In order to make Polymer awesome It should generate Sass mixins Scenario: Crea...
antw/polymer
4fc205953bc0c5422511458cb7b32f0c89b06fd1
Add Project#tmpdir.
diff --git a/lib/polymer/project.rb b/lib/polymer/project.rb index 67df988..51833c8 100644 --- a/lib/polymer/project.rb +++ b/lib/polymer/project.rb @@ -1,164 +1,175 @@ module Polymer # Represents a directory in which it is expected that there be a # configuration file, and source images. # # The Project c...
antw/polymer
c6af9fb7fc53f1f94556d3438890ef1f7c314e22
Version bump to 1.0.0.beta.4
diff --git a/lib/polymer/version.rb b/lib/polymer/version.rb index a2bf537..21b6c37 100644 --- a/lib/polymer/version.rb +++ b/lib/polymer/version.rb @@ -1,4 +1,4 @@ module Polymer # The current version of the Polymer library. - VERSION = '1.0.0.beta.3'.freeze + VERSION = '1.0.0.beta.4'.freeze end diff --git a/po...
antw/polymer
a09b6a1bdebc766b28cfd3b63cacc659e74943f2
Rename polymer-pos Sass mixin to polymer-position.
diff --git a/lib/polymer/templates/sass_mixins.erb b/lib/polymer/templates/sass_mixins.erb index 3c59d50..35b8bb4 100644 --- a/lib/polymer/templates/sass_mixins.erb +++ b/lib/polymer/templates/sass_mixins.erb @@ -1,29 +1,29 @@ // The mixins in this file are automatically generated by the 'polymer' // command provided...
antw/polymer
fa95b1752426ece42909209e45fc258ea07bced6
Fix a typo.
diff --git a/lib/polymer/cli.rb b/lib/polymer/cli.rb index 3a571d4..544b39e 100644 --- a/lib/polymer/cli.rb +++ b/lib/polymer/cli.rb @@ -1,379 +1,379 @@ require 'fileutils' require 'thor' module Polymer class CLI < Thor include Thor::Actions class_option 'no-color', :type => :boolean, :default => ...
antw/polymer
0230865095a1608ea48cee370e9a107f7e9e338a
Simplify optimisation steps in features.
diff --git a/features/bond_sprite.feature b/features/bond_sprite.feature index cfe1a0e..2fed503 100644 --- a/features/bond_sprite.feature +++ b/features/bond_sprite.feature @@ -1,45 +1,45 @@ @polymer-bond Feature: Generating sprites with Polymer In order to create sprites I want to be able to run a simple com...
antw/polymer
640b19149b2b6be19a798ef9fa39835d8228f947
Extract CLI optimisation to a separate method.
diff --git a/lib/polymer/cli.rb b/lib/polymer/cli.rb index 0df60db..3a571d4 100644 --- a/lib/polymer/cli.rb +++ b/lib/polymer/cli.rb @@ -1,380 +1,379 @@ require 'fileutils' require 'thor' module Polymer class CLI < Thor include Thor::Actions class_option 'no-color', :type => :boolean, :default => ...
antw/polymer
3c1b6183ad418eaf49d38184ffe0cc7d972a24a9
Use cache with polymer-optimise.
diff --git a/features/optimisation_cache.feature b/features/optimisation_cache.feature new file mode 100644 index 0000000..aea889a --- /dev/null +++ b/features/optimisation_cache.feature @@ -0,0 +1,32 @@ +@polymer-optimise +Feature: The optimisation cache + + Since optimising images can take a while + I want to run o...
antw/polymer
39bf751b74b644468a9ca8a1e0f4b01de730ae75
Replace Cache#remove_all_except with Cache#clean!
diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb index 032d915..30db8d4 100644 --- a/lib/polymer/cache.rb +++ b/lib/polymer/cache.rb @@ -1,154 +1,160 @@ module Polymer # Represents a cache file. Keeps track of the contents of each sprite and # provides an easy means of determining if the sprite has been ...
antw/polymer
4751120bfcae6530d716271b6c8e95b61e7dc374
Cache now support arbitrary paths.
diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb index e5a01ae..032d915 100644 --- a/lib/polymer/cache.rb +++ b/lib/polymer/cache.rb @@ -1,113 +1,154 @@ module Polymer # Represents a cache file. Keeps track of the contents of each sprite and # provides an easy means of determining if the sprite has been ...
antw/polymer
3d87c56bad77df9c5ef5c5ebd5261374bb146c4d
Adjust code spacing in CLI.
diff --git a/lib/polymer/cli.rb b/lib/polymer/cli.rb index f93dbc7..7ded351 100644 --- a/lib/polymer/cli.rb +++ b/lib/polymer/cli.rb @@ -1,346 +1,346 @@ require 'fileutils' require 'thor' module Polymer class CLI < Thor include Thor::Actions class_option 'no-color', :type => :boolean, :default => ...
antw/polymer
c42bc28c2286aba4377eaf6592f8ee373e7906cf
Allow polymer-optimise to accept path to a directory.
diff --git a/features/image_optimisation.feature b/features/image_optimisation.feature index 288bbbf..6c5efe4 100644 --- a/features/image_optimisation.feature +++ b/features/image_optimisation.feature @@ -1,50 +1,61 @@ @polymer-optimise Feature: Optimisation of non-sprite images In order optimise other PNG image...
antw/polymer
c0f53a62ef192abc1ef52d71de1d2976788cc75e
Expire outdated cache files.
diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb index de911e4..e5a01ae 100644 --- a/lib/polymer/cache.rb +++ b/lib/polymer/cache.rb @@ -1,112 +1,113 @@ module Polymer # Represents a cache file. Keeps track of the contents of each sprite and # provides an easy means of determining if the sprite has been ...
antw/polymer
6676a87bc555e229fe9c0f2fc076b28dc9d57634
Extract default cache into a constant.
diff --git a/lib/polymer/cache.rb b/lib/polymer/cache.rb index ef1211e..de911e4 100644 --- a/lib/polymer/cache.rb +++ b/lib/polymer/cache.rb @@ -1,106 +1,112 @@ module Polymer # Represents a cache file. Keeps track of the contents of each sprite and # provides an easy means of determining if the sprite has been ...
antw/polymer
56c569f33ca12e95bb172733250535a8c079716b
Fix some typos in polymer(5)
diff --git a/man/polymer.5.ronn b/man/polymer.5.ronn index c39d1d2..5b27051 100644 --- a/man/polymer.5.ronn +++ b/man/polymer.5.ronn @@ -1,126 +1,128 @@ .polymer(5) -- a format for describing image sprites and their sources ====================================================================== DESCRIPTION -------...
antw/polymer
0907fd05d160081248e9355937b1310fdca03d61
Fix gemspec homepage.
diff --git a/polymer.gemspec b/polymer.gemspec index aed6dbf..199572a 100644 --- a/polymer.gemspec +++ b/polymer.gemspec @@ -1,94 +1,94 @@ # -*- encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) Gem::Specification.new do |s| s.required_rubygems_version = '>= 1.3.6' # The following...
antw/polymer
996c1ce1af099d53458471e921dc1e01b952497b
Version bump to 1.0.0.beta.3
diff --git a/lib/polymer/version.rb b/lib/polymer/version.rb index c4dbc0b..a2bf537 100644 --- a/lib/polymer/version.rb +++ b/lib/polymer/version.rb @@ -1,4 +1,4 @@ module Polymer # The current version of the Polymer library. - VERSION = '1.0.0.beta.2'.freeze + VERSION = '1.0.0.beta.3'.freeze end diff --git a/po...
antw/polymer
51daab2e40a05b8301b1bdd94150df32c33500ca
Adjust the pages task again.
diff --git a/Rakefile b/Rakefile index 12f515e..2c6f3e7 100644 --- a/Rakefile +++ b/Rakefile @@ -1,186 +1,186 @@ require 'rake' require 'rake/clean' $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) require 'polymer/version' CLOBBER.include %w( pkg *.gem documentation coverage measur...
antw/polymer
f7cd672bd4146614d31bcf6c50959ea459a08c03
Rebuild manual.
diff --git a/polymer-bond.1.html b/polymer-bond.1.html new file mode 100644 index 0000000..2d12721 --- /dev/null +++ b/polymer-bond.1.html @@ -0,0 +1,147 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv='content-type' value='text/html;charset=utf8'> + <meta name='generator' value='Ronn/v0.7.3 (http://github.com...
antw/polymer
09acb23230e7f591bd3f4eb223484192026731b4
First pages commit.
diff --git a/index.html b/index.html new file mode 100644 index 0000000..0f12ac4 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +Temporary page.
antw/polymer
8e1e9b75bcf9f06ab8d97ac308c2539e5c47bc92
Embolden our allies.
diff --git a/README.md b/README.md index de8917a..a194f86 100644 --- a/README.md +++ b/README.md @@ -1,229 +1,229 @@ POLYMER ======= DESCRIPTION ----------- Polymer is a tool for creating sprite images which combine many smaller sources into a single larger image. Spriting allows you to reduce the number of ...
antw/polymer
f03d7fee08bada65819b41cd9ea2c9da8fae2fe2
Link to manpages in the README.
diff --git a/README.md b/README.md index a618d98..de8917a 100644 --- a/README.md +++ b/README.md @@ -1,207 +1,229 @@ POLYMER ======= DESCRIPTION ----------- Polymer is a tool for creating sprite images which combine many smaller sources into a single larger image. Spriting allows you to reduce the number of ...
antw/polymer
287e0efdff0ca8422071640613339fa1dc3a8738
Rename gemset.
diff --git a/.rvmrc b/.rvmrc index add0d78..94d5bc5 100644 --- a/.rvmrc +++ b/.rvmrc @@ -1,2 +1,2 @@ rvm_gemset_create_on_use_flag=1 -rvm gemset use flexo +rvm gemset use polymer
antw/polymer
c9d44545a03f2d6a14ee2c814aad600b5237e03a
polymer-generate(1) is now polymer-bond(1)
diff --git a/features/generate_sprite.feature b/features/bond_sprite.feature similarity index 88% rename from features/generate_sprite.feature rename to features/bond_sprite.feature index a4ebad4..cfe1a0e 100644 --- a/features/generate_sprite.feature +++ b/features/bond_sprite.feature @@ -1,45 +1,45 @@ -@polymer-genera...
antw/polymer
2933165446e1cdaeab3fadb0b9db50ad165a432a
Settle on a final name.
diff --git a/.gitignore b/.gitignore index fd532d6..ce74f55 100644 --- a/.gitignore +++ b/.gitignore @@ -1,39 +1,39 @@ ## MAC OS .DS_Store Icon* ## TEXTMATE *.tmproj tmtags ## EMACS *~ \#* .\#* ## VIM *.swp ## RUBINIUS *.rbc rakefile.compiled.rbc ## PROJECT::GENERAL .bundle .yardoc coverage...
antw/polymer
fe7b4ed2636d68e511bcb3f397d0956d003c9dbd
Add pages rake task.
diff --git a/Rakefile b/Rakefile index fe96291..2a423d5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,159 +1,183 @@ require 'rake' require 'rake/clean' $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) require 'flexo/version' CLOBBER.include %w( pkg *.gem documentation coverage measurem...
antw/polymer
77f9c10e87d9dfaa3656e07316a768e3a4706207
Ignore pages/
diff --git a/.gitignore b/.gitignore index 831373e..fd532d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,38 +1,39 @@ ## MAC OS .DS_Store Icon* ## TEXTMATE *.tmproj tmtags ## EMACS *~ \#* .\#* ## VIM *.swp ## RUBINIUS *.rbc rakefile.compiled.rbc ## PROJECT::GENERAL .bundle .yardoc coverage...
antw/polymer
17d16cfb7297fac1da51e457f80dfaf828793057
Add a temporary HTML page to man/
diff --git a/.gitignore b/.gitignore index bb720da..831373e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,35 +1,38 @@ ## MAC OS .DS_Store Icon* ## TEXTMATE *.tmproj tmtags ## EMACS *~ \#* .\#* ## VIM *.swp ## RUBINIUS *.rbc rakefile.compiled.rbc ## PROJECT::GENERAL .bundle .yardoc coverage...
antw/polymer
e74a07d9d710aa21f52d180b329d58cc335c3979
Document use of Bundler.
diff --git a/README.md b/README.md index 7476667..afc07f7 100644 --- a/README.md +++ b/README.md @@ -1,141 +1,145 @@ Flexo ===== This file is an example of [Readme Driven Development][rdd], and not everything will work as written... _yet_. Flexo's prececessor -- [Montage][montage] -- should provide for most of y...
antw/polymer
6dbcbe8ebcaf57f03bc1e250856ebefa7cae8f89
Document the cache option.
diff --git a/man/flexo.5.ronn b/man/flexo.5.ronn index 31163a3..240b719 100644 --- a/man/flexo.5.ronn +++ b/man/flexo.5.ronn @@ -1,119 +1,126 @@ .flexo(5) -- a format for describing image sprites and their sources ==================================================================== DESCRIPTION ----------- A `....
antw/polymer
1e071ced9d5cf4e7e0c51e9246e7fe26c3a5cb99
Rakefile fixes.
diff --git a/Rakefile b/Rakefile index 02d2242..fe96291 100644 --- a/Rakefile +++ b/Rakefile @@ -1,155 +1,159 @@ require 'rake' require 'rake/clean' $LOAD_PATH.unshift File.expand_path('../lib', __FILE__) require 'flexo/version' CLOBBER.include %w( pkg *.gem documentation coverage measurem...
antw/polymer
045f5adb5a077cf8ca03a8a4a5577fc098525854
Use ~/.rspec, and progress formatter with Cucumber.
diff --git a/.rspec b/.rspec deleted file mode 100644 index 0d9a0dd..0000000 --- a/.rspec +++ /dev/null @@ -1,2 +0,0 @@ ---colour ---format nested diff --git a/Rakefile b/Rakefile index b6a754e..02d2242 100644 --- a/Rakefile +++ b/Rakefile @@ -1,155 +1,155 @@ require 'rake' require 'rake/clean' $LOAD_PATH.unshift ...
antw/polymer
b83fa1a467e5779c05767776784167d78e093050
Bin flexo-describe.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb720da --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +## MAC OS +.DS_Store +Icon* + +## TEXTMATE +*.tmproj +tmtags + +## EMACS +*~ +\#* +.\#* + +## VIM +*.swp + +## RUBINIUS +*.rbc +rakefile.compiled.rbc + +## PROJECT::GENERAL +.bundle +.yardoc...
richardc/perl-games-set
2063967a1d5c531bcc276b3c60f38b95c7811d59
sync from penfold
diff --git a/count b/count new file mode 100644 index 0000000..d122c27 --- /dev/null +++ b/count @@ -0,0 +1,19 @@ +use YAML; +use Games::Set; +use Algorithm::ChooseSubsets; +package Games::Set; +use Memoize; +memoize('set'); +package main; + +my $game = Games::Set->new; +my @deck = Games::Set->standard_deck; +my $iter ...
richardc/perl-games-set
ab7361594291544a86e554e727f8b4294dcab60c
okay, ship it
diff --git a/Changes b/Changes new file mode 100644 index 0000000..7c791e3 --- /dev/null +++ b/Changes @@ -0,0 +1,2 @@ +0.01 Monday 8th September, 2003 + initial CPAN release
richardc/perl-games-set
bd7a613ab14c9d780c1bdc9da132c8e56fdbc704
external references
diff --git a/lib/Games/Set.pm b/lib/Games/Set.pm index 858a393..13cda3b 100644 --- a/lib/Games/Set.pm +++ b/lib/Games/Set.pm @@ -1,147 +1,154 @@ use strict; package Games::Set; use Games::Set::Card; use Algorithm::ChooseSubsets; use Algorithm::GenerateSequence; use List::Util qw( max ); use Class::Accessor::Fast...
richardc/perl-games-set
b7ae9f8a13dbc1727d3343cf80f74e201e8d52d7
docs, packaging
diff --git a/Build.PL b/Build.PL index d76a9ca..13bb895 100644 --- a/Build.PL +++ b/Build.PL @@ -1,13 +1,19 @@ #!perl -w use strict; use Module::Build; Module::Build ->new( module_name => "Games::Set", license => 'perl', - build_requires => { + build_requires => { 'Test::More...
richardc/perl-games-set
1b3e6e06955ece0c629996222889fe19f98bdf92
small doc nit
diff --git a/lib/Games/Set.pm b/lib/Games/Set.pm index 0debf36..c34c03b 100644 --- a/lib/Games/Set.pm +++ b/lib/Games/Set.pm @@ -1,131 +1,131 @@ use strict; package Games::Set; use Games::Set::Card; use Algorithm::ChooseSubsets; use Algorithm::GenerateSequence; use List::Util qw( max ); use base 'Class::Accessor...
richardc/perl-games-set
28fb45fa84921d0b4e229041cb400a1abbdd7338
go go gadget brute force
diff --git a/t/set.t b/t/set.t index 3446c23..15be39c 100644 --- a/t/set.t +++ b/t/set.t @@ -1,35 +1,40 @@ #!perl -w use strict; -use Test::More tests => 12; +use Test::More tests => 14; require_ok( 'Games::Set' ); my $game = Games::Set->new; isa_ok( $game, 'Games::Set' ); my ($card) = $game->random_deck( 1...
richardc/perl-games-set
593af7e70b08b9589b55e706a657f06f3ae93ac0
generate a deck
diff --git a/lib/Games/Set.pm b/lib/Games/Set.pm index 1930d59..0debf36 100644 --- a/lib/Games/Set.pm +++ b/lib/Games/Set.pm @@ -1,124 +1,131 @@ use strict; package Games::Set; use Games::Set::Card; -use Algorithm::ChooseSubsets (); +use Algorithm::ChooseSubsets; +use Algorithm::GenerateSequence; use List::Util qw(...
richardc/perl-games-set
c597f60102841ec686380d4d6f52b6a8f7a33c00
find_sets is actually really easy, Brian++
diff --git a/lib/Games/Set.pm b/lib/Games/Set.pm index 920c9cf..1930d59 100644 --- a/lib/Games/Set.pm +++ b/lib/Games/Set.pm @@ -1,113 +1,124 @@ use strict; package Games::Set; use Games::Set::Card; +use Algorithm::ChooseSubsets (); use List::Util qw( max ); use base 'Class::Accessor::Fast'; __PACKAGE__->mk_acces...
richardc/perl-games-set
4296a749e9bac9d2fb4510c3b7c7368e1410d2b8
fix precedence glitch, and the Card class
diff --git a/lib/Games/Set.pm b/lib/Games/Set.pm index 1acc644..920c9cf 100644 --- a/lib/Games/Set.pm +++ b/lib/Games/Set.pm @@ -1,112 +1,113 @@ use strict; package Games::Set; use Games::Set::Card; use List::Util qw( max ); -use base 'Class::Acessor::Fast'; +use base 'Class::Accessor::Fast'; __PACKAGE__->mk_acces...
richardc/perl-games-set
cccbb78f8aa313392403a17ebb4e78ee09c1e393
sketch
diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..d76a9ca --- /dev/null +++ b/Build.PL @@ -0,0 +1,13 @@ +#!perl -w +use strict; +use Module::Build; +Module::Build + ->new( module_name => "Games::Set", + license => 'perl', + build_requires => { + 'Test::More' => 0, + }, + ...
Munksgaard/Maskinarkitektur-Opgave-2
bd79afcbad153df246facf0768c7140743c324f9
cleanup inden reinstall
diff --git a/primes.asm b/primes.asm index 6e88bb8..493281d 100644 --- a/primes.asm +++ b/primes.asm @@ -1,128 +1,128 @@ main: addiu $a0, $0, 28 # gør argumentet klar jal largest_prime # largest_prime(28) - addu $v0, $0, $0 # return 0 +# addu $v0, $0, $0 # return 0 j end largest_prime: addiu $s...
Munksgaard/Maskinarkitektur-Opgave-2
b501d511494395f6b7e4754bc96b8bc0a1dd08c5
afleveringsklar
diff --git a/g2.circ b/g2.circ index 50cc980..ed8c574 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2437 +1,2437 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
868c69b7175a96cae83a6b59faa2d58619a91299
rapport skrevet
diff --git a/control.png b/control.png new file mode 100644 index 0000000..322a8d4 Binary files /dev/null and b/control.png differ diff --git a/forwarding.png b/forwarding.png new file mode 100644 index 0000000..3fc1c2c Binary files /dev/null and b/forwarding.png differ diff --git a/g2.circ b/g2.circ index c601c4a..50c...
Munksgaard/Maskinarkitektur-Opgave-2
aa3025bdce9410e678a4de67dcd6748f1ee9f5d2
fjernet de gamle circuits
diff --git a/g2.circ b/g2.circ index a13c574..c601c4a 100644 --- a/g2.circ +++ b/g2.circ @@ -1,3019 +1,2342 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
ee38a7f501ae9b0e8c8721b3585a9be08542d09a
g2 opdateret til den rigtige version
diff --git a/g2.circ b/g2.circ index e548b9f..a13c574 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2544 +1,2657 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
5d4aded4061dc2f974ab559cfebb97b44041ca9f
primes virker for test-caset (28)
diff --git a/primes.asm b/primes.asm index 57e9c62..6e88bb8 100644 --- a/primes.asm +++ b/primes.asm @@ -1,122 +1,128 @@ main: addiu $a0, $0, 28 # gør argumentet klar jal largest_prime # largest_prime(28) addu $v0, $0, $0 # return 0 j end -largest_prime: +largest_prime: addiu $sp, $sp, -24 # GÃ...
Munksgaard/Maskinarkitektur-Opgave-2
7bc24f65886230a2a88b5bba9ccbf0fcf26656b8
registre rettet.
diff --git a/primes.asm b/primes.asm index ed42d15..57e9c62 100644 --- a/primes.asm +++ b/primes.asm @@ -1,122 +1,122 @@ main: addiu $a0, $0, 28 # gør argumentet klar jal largest_prime # largest_prime(28) addu $v0, $0, $0 # return 0 j end largest_prime: addiu $sp, $sp, -24 # Gør plads til 4 re...
Munksgaard/Maskinarkitektur-Opgave-2
64f9ce44de60bf56f6155c81374c3582e6eea9d4
primes første prototype, eksklusiv rigtige registre
diff --git a/primes.asm b/primes.asm index 22c0543..ed42d15 100644 --- a/primes.asm +++ b/primes.asm @@ -1,49 +1,122 @@ +main: addiu $a0, $0, 28 # gør argumentet klar + jal largest_prime # largest_prime(28) + + addu $v0, $0, $0 # return 0 + j end + largest_prime: addiu $sp, $sp, -24 # Gør plads til 4 reg...
Munksgaard/Maskinarkitektur-Opgave-2
1b64b63a11be70c344817ba976bba1d70d78a2b5
tilfoejet exit saa den ikke loeber over i mul
diff --git a/primes.asm b/primes.asm index ddccdb6..22c0543 100644 --- a/primes.asm +++ b/primes.asm @@ -1,49 +1,49 @@ largest_prime: addiu $sp, $sp, -24 # Gør plads til 4 registre sw $ra, 20($sp) # Gem registrene på stacken sw $s4, 16($sp) sw $s3, 12($sp) sw $s2, 8($sp) sw $s1, 4($sp) sw $s0, 0...
Munksgaard/Maskinarkitektur-Opgave-2
5dd2dce6f79b687129c5774ceabd2b5cdda6b263
tilføjet test
diff --git a/test.asm b/test.asm new file mode 100644 index 0000000..91f8b18 --- /dev/null +++ b/test.asm @@ -0,0 +1,33 @@ +# test af MIPS instruktioner. + +addiu $1, $0, 0x1 # $1 = 0 + 1 = 0x1 +addiu $2, $0, 0xc # $2 = 0 + 12 = 0xc +addiu $3, $0, 0xffff # $3 = 0 + 0xffff = 0xffff...
Munksgaard/Maskinarkitektur-Opgave-2
b66ff8a5448758721b56d7d9263a66c86d92f9c9
opgave 1 færdig, begyndt primes
diff --git a/g2.circ b/g2.circ index 10a1939..e548b9f 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2924 +1,2906 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
694fcad43b172b25c82e51a573cb3fccdac4a11d
ny udgave
diff --git a/g2.circ b/g2.circ index bfc1f52..10a1939 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2860 +1,2924 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
0fd6236e457427477c478aad1c0b963fae1b9bc3
ny udgave
diff --git a/g2.circ b/g2.circ index 9803abf..bfc1f52 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2639 +1,2860 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
Munksgaard/Maskinarkitektur-Opgave-2
9225f5e92d964811c52fb7a2ad229c092dada590
forwarding og hazard detection lavet. stalling virker stadig ikke helt
diff --git a/g2.circ b/g2.circ index 66a066d..9803abf 100644 --- a/g2.circ +++ b/g2.circ @@ -1,2024 +1,2639 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.5.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Base" name="0"> ...
xonic/scribbler
d685c7a5ccc2867730201b614007fa42bb3d70c2
add glow to key window
diff --git a/SketchController.m b/SketchController.m index 4a7ec3b..7029b47 100644 --- a/SketchController.m +++ b/SketchController.m @@ -1,556 +1,562 @@ // // SketchController.m // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import "SketchContro...
xonic/scribbler
576c256d78c2d3cc814c85b84f3ff901b401445d
add ability to save screen shots onto the desktop
diff --git a/ScreenShotController.h b/ScreenShotController.h new file mode 100644 index 0000000..0389689 --- /dev/null +++ b/ScreenShotController.h @@ -0,0 +1,18 @@ +// +// ScreenShotController.h +// Scribbler +// +// Created by Thomas Nägele on 28.08.10. +// Copyright 2010 xonic. All rights reserved. +// + +#impo...
xonic/scribbler
0971bd0864da80e1065d94b8bd1e676319816b69
fix mouseMode
diff --git a/Scribbler.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Scribbler.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..cec8889 --- /dev/null +++ b/Scribbler.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding=...
xonic/scribbler
7d790d7d614423f3eec954285b84394b33d01628
adjust background color of sketchview
diff --git a/SketchView.m b/SketchView.m index 5e8f9c6..b21959d 100644 --- a/SketchView.m +++ b/SketchView.m @@ -1,196 +1,197 @@ // // SketchView.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "SketchView.h" @implementation...
xonic/scribbler
18d2bd7785516b3bdd8602f56fd01b7dba3c19ad
add timestamps and mouseMode
diff --git a/MainWindow.h b/MainWindow.h index f147633..b230a5c 100644 --- a/MainWindow.h +++ b/MainWindow.h @@ -1,34 +1,37 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationS...
xonic/scribbler
7ad311973be9a607d90df861ff571a676729a377
solved keyWindowHandler issues, when usingexposé or appSwitcher
diff --git a/SketchController.h b/SketchController.h index eacb377..281fbca 100644 --- a/SketchController.h +++ b/SketchController.h @@ -1,51 +1,56 @@ // // SketchController.h // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import <Cocoa/Cocoa.h>...
xonic/scribbler
d170c9bf557c87bb53aaada4e74d87e0d3d202ab
appSwitch Errors behoben
diff --git a/SketchController.m b/SketchController.m index f1bae33..bf02c53 100644 --- a/SketchController.m +++ b/SketchController.m @@ -1,327 +1,366 @@ // // SketchController.m // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import "SketchContro...
xonic/scribbler
5d043982685e5342e78c43f164d466ae8be17020
add WindowModel, TabModel; edit initializers to meet Apple guidelines, fix erase bug
diff --git a/PathModel.h b/PathModel.h index a424d93..dff0bc3 100644 --- a/PathModel.h +++ b/PathModel.h @@ -1,22 +1,24 @@ // // PathModel.h // Scribbler // // Created by Thomas Nägele on 17.07.10. // Copyright 2010 xonic. All rights reserved. // #import <Cocoa/Cocoa.h> @interface PathModel : NSObje...
xonic/scribbler
b07dac81194a9625901f32281906482eb91b425b
scrolling beginnings
diff --git a/SketchController.m b/SketchController.m index 569c120..e49815f 100644 --- a/SketchController.m +++ b/SketchController.m @@ -1,298 +1,322 @@ // // SketchController.m // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import "SketchContro...
xonic/scribbler
5a5a26294f5b257e8398122368df885d12d0b9de
save NSBezierPaths as PathModel objects; colors and dragging working fine
diff --git a/PathModel.h b/PathModel.h new file mode 100644 index 0000000..a424d93 --- /dev/null +++ b/PathModel.h @@ -0,0 +1,22 @@ +// +// PathModel.h +// Scribbler +// +// Created by Thomas Nägele on 17.07.10. +// Copyright 2010 xonic. All rights reserved. +// + +#import <Cocoa/Cocoa.h> + + +@interface PathModel...
xonic/scribbler
3203597d7deaa21ffe296068a31e57002c4c6333
optimize color handling, fix undo bug
diff --git a/SketchModel.h b/SketchModel.h index ba125a4..76403b9 100644 --- a/SketchModel.h +++ b/SketchModel.h @@ -1,42 +1,51 @@ // // SketchModel.h // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import <Cocoa/Cocoa.h> #import "PointModel.h" ...
xonic/scribbler
5fb93cecdefc87fa99ceb470177d65780bfcd215
add white, red, green, blue, black colors to status menu for drawing different colors
diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib index 12a254d..2947255 100644 --- a/English.lproj/MainMenu.xib +++ b/English.lproj/MainMenu.xib @@ -1,526 +1,529 @@ <?xml version="1.0" encoding="UTF-8"?> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <data> <int key="IB...
xonic/scribbler
ed6495ab4c928e105b880e141160db2595817037
fixed dragging
diff --git a/PointModel.m b/PointModel.m index 562abad..a8a06fc 100644 --- a/PointModel.m +++ b/PointModel.m @@ -1,78 +1,78 @@ // // MyPoint.m // Scribbler // // Created by Thomas Nägele on 09.05.10. // Copyright 2010 xonic. All rights reserved. // #import "PointModel.h" @implementation PointModel ...
xonic/scribbler
e2efc5373d0c02d3380961007c993e9b4e170cb2
gemerged auf neue struktur
diff --git a/MainWindow.h b/MainWindow.h index e7023d1..1dc0ba1 100644 --- a/MainWindow.h +++ b/MainWindow.h @@ -1,31 +1,32 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationS...
xonic/scribbler
7cb788d79b3b475abe198cdcc39f24b84f1b1c01
fix SketchView bug, add drag function
diff --git a/SketchController.m b/SketchController.m index e0d66df..3f17dd0 100644 --- a/SketchController.m +++ b/SketchController.m @@ -1,288 +1,292 @@ // // SketchController.m // Scribbler // // Created by Thomas Nägele on 20.05.10. // Copyright 2010 xonic. All rights reserved. // #import "SketchContro...
xonic/scribbler
c9ac343017e32bac14f283c38918dd9f53f81542
bug behoben: keyWindow on loading
diff --git a/GlassPane.h b/GlassPane.h index d104cd8..97ae0f1 100644 --- a/GlassPane.h +++ b/GlassPane.h @@ -1,35 +1,38 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationServi...
xonic/scribbler
7405cb9fe9b17c941c347236dad94857074bb32b
restructure project to match MVC design pattern, undo/redo still buggy
diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib index e6db055..12a254d 100644 --- a/English.lproj/MainMenu.xib +++ b/English.lproj/MainMenu.xib @@ -1,528 +1,526 @@ <?xml version="1.0" encoding="UTF-8"?> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <data> <int key="IB...
xonic/scribbler
fbdb507658e9e259f8ecb5d08f0efbc5239929bb
fix bug with line being drawn to outside of screen
diff --git a/PaintView.m b/PaintView.m index 7679dbb..1a46ffd 100644 --- a/PaintView.m +++ b/PaintView.m @@ -1,429 +1,429 @@ // // PaintView.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "PaintView.h" @implementation Paint...
xonic/scribbler
26cfba75319660066d3e54ffae0b75f0a3191851
added drag feature v.0.1
diff --git a/GlassPane.h b/GlassPane.h index c01c443..d104cd8 100644 --- a/GlassPane.h +++ b/GlassPane.h @@ -1,31 +1,35 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationServi...
xonic/scribbler
8045e6017ad6f9e85a4fd0f18afce95841fa7a75
verschieben anfaenge
diff --git a/GlassPane.m b/GlassPane.m index 85ab146..0162193 100644 --- a/GlassPane.m +++ b/GlassPane.m @@ -1,228 +1,236 @@ // // GlassPane.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "GlassPane.h" @implementation GlassPa...
xonic/scribbler
b6dca641ca5f8751fc3b8fb8debbdeae61ca2571
add undo/redo functions, yet still as keyDown events
diff --git a/GlassPane.m b/GlassPane.m index 85ab146..3d115a5 100644 --- a/GlassPane.m +++ b/GlassPane.m @@ -1,228 +1,254 @@ // // GlassPane.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "GlassPane.h" @implementation GlassPa...
xonic/scribbler
b91c1cae3568fb47753db2a33a358781868d60c3
add undoManager, yet not triggerable
diff --git a/PaintView.h b/PaintView.h index d80b36b..37d61d5 100644 --- a/PaintView.h +++ b/PaintView.h @@ -1,32 +1,35 @@ // // PaintView.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import "MyPoint.h" @i...
xonic/scribbler
975f678fb1db8c43b4d5408c35bdbcc0084bb968
add erasing support
diff --git a/GlassPane.h b/GlassPane.h index bb50a72..c01c443 100644 --- a/GlassPane.h +++ b/GlassPane.h @@ -1,30 +1,31 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationServi...
xonic/scribbler
9014aef09f2d2c3d28031cbfe8ec9183fc9cbc5a
drawing and smoothing works, drawn paths have shadow
diff --git a/PaintView.m b/PaintView.m index a4bd4ea..3f9ae83 100644 --- a/PaintView.m +++ b/PaintView.m @@ -1,397 +1,416 @@ // // PaintView.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "PaintView.h" @implementation Paint...
xonic/scribbler
4263812260f173e3c180d440932d4521190d5d19
BAD EXEC bug + mousedrawing bug beseitigt
diff --git a/PaintView.m b/PaintView.m index 0714351..a4bd4ea 100644 --- a/PaintView.m +++ b/PaintView.m @@ -1,373 +1,397 @@ // // PaintView.m // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import "PaintView.h" @implementation Paint...
xonic/scribbler
a7ad843b75f9cf0de35db63496c071e249ce26cc
fix .gitignore file
diff --git a/.gitignore b/.gitignore index d163863..49c5abc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,12 @@ -build/ \ No newline at end of file +.DS_Store +*.swp +*~.nib + +build/ + +Scribbler.xcodeproj/*.pbxuser +Scribbler.xcodeproj/*.perspective +Scribbler.xcodeproj/*.perspectivev3 + +Scribbler.xcodeproj/*.mo...
xonic/scribbler
a879ca61323ec2508876ee1cb78183ea91fc7770
add curve fitting methods, yet still bad memory access
diff --git a/MyPoint.h b/MyPoint.h index 56c1bad..fe374c2 100644 --- a/MyPoint.h +++ b/MyPoint.h @@ -1,21 +1,22 @@ // // MyPoint.h // Scribbler // // Created by Thomas Nägele on 09.05.10. // Copyright 2010 xonic. All rights reserved. // #import <Cocoa/Cocoa.h> @interface MyPoint : NSObject { NSPoi...
xonic/scribbler
c1693c9a43022bd09bc1d19d519d81d658e8f12d
add drawing support, lines not curved yet
diff --git a/MyPoint.h b/MyPoint.h new file mode 100644 index 0000000..56c1bad --- /dev/null +++ b/MyPoint.h @@ -0,0 +1,21 @@ +// +// MyPoint.h +// Scribbler +// +// Created by Thomas Nägele on 09.05.10. +// Copyright 2010 xonic. All rights reserved. +// + +#import <Cocoa/Cocoa.h> + + +@interface MyPoint : NSObjec...
xonic/scribbler
4215869380102cf09c5af61473a97c21a4dff60b
fix repository, copy from dropbox
diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib index c7ef135..e6db055 100644 --- a/English.lproj/MainMenu.xib +++ b/English.lproj/MainMenu.xib @@ -870,1758 +870,1755 @@ <int key="NSMnemonicLoc">2147483647</int> <reference key="NSOnImage" ref="35465992"/> <ref...
xonic/scribbler
eb8e3e05ce9c3ea6126faec620fbccb00520268d
after merge brnas_remote
diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib index b53aa02..c7ef135 100644 --- a/English.lproj/MainMenu.xib +++ b/English.lproj/MainMenu.xib @@ -1,528 +1,528 @@ <?xml version="1.0" encoding="UTF-8"?> <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> <data> <int key="IB...
xonic/scribbler
4940fa816b24f6a86c76326a84a595979d773e73
add glassPanes dictionary, new GlassPane gets created for every window, but does not show up in front yet. Needs to be fixed
diff --git a/GlassPane.h b/GlassPane.h index 56b6f1e..f6623a7 100644 --- a/GlassPane.h +++ b/GlassPane.h @@ -1,27 +1,24 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationServi...
xonic/scribbler
b8dd7cd7a9e6d457cc4a09652c168a7c6e5413e9
try fixing .gitignore again
diff --git a/.gitignore b/.gitignore index e4b2109..49c5abc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ .DS_Store *.swp *~.nib build/ -*/*.pbxuser -*/*.perspective -*/*.perspectivev3 +Scribbler.xcodeproj/*.pbxuser +Scribbler.xcodeproj/*.perspective +Scribbler.xcodeproj/*.perspectivev3 -*/*.mode...
xonic/scribbler
17c2d3fcc389f8204e275dd15cda974c4963ddbc
fix .gitignore
diff --git a/.gitignore b/.gitignore index 0d02274..e4b2109 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,12 @@ .DS_Store *.swp *~.nib build/ -*.pbxuser -*.perspective -*.perspectivev3 +*/*.pbxuser +*/*.perspective +*/*.perspectivev3 -*.mode1v3 -*.mode2v3 \ No newline at end of file +*/*.mode1v3 +*/*.m...
xonic/scribbler
bcbc7008e172450db282dabe41425b231a7fd67c
modify .gitignore
diff --git a/.gitignore b/.gitignore index d163863..0d02274 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,12 @@ -build/ \ No newline at end of file +.DS_Store +*.swp +*~.nib + +build/ + +*.pbxuser +*.perspective +*.perspectivev3 + +*.mode1v3 +*.mode2v3 \ No newline at end of file
xonic/scribbler
76b71a295ed0c75b97cb3777149eadfd48703a71
get active window and window order
diff --git a/GlassPane.h b/GlassPane.h index d32afc8..56b6f1e 100644 --- a/GlassPane.h +++ b/GlassPane.h @@ -1,22 +1,27 @@ // // GlassPane.h // Scribbler // // Created by Clemens Sagmeister on 21.04.10. // Copyright 2010 Apple Inc. All rights reserved. // #import <Cocoa/Cocoa.h> #import <ApplicationServi...
xonic/scribbler
857561211b6d839befc427c40ae38a582be055a1
addblab
diff --git a/blab b/blab new file mode 100644 index 0000000..e69de29
xonic/scribbler
a2cbd63a42afa7373fa06f9997ba27a8f4cb2d5e
add deleteme
diff --git a/Scribbler.xcodeproj/brnas.mode1v3 b/Scribbler.xcodeproj/brnas.mode1v3 index bc89d7a..ae775f4 100644 --- a/Scribbler.xcodeproj/brnas.mode1v3 +++ b/Scribbler.xcodeproj/brnas.mode1v3 @@ -1,1133 +1,1128 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www...
xonic/scribbler
3bfcadfe2f417467b238505f6a33c60dfd906545
remove build folder
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/build/Debug/Scribbler.app/Contents/Info.plist b/build/Debug/Scribbler.app/Contents/Info.plist deleted file mode 100644 index bac04da..0000000 ---...
jauco/Writo
0595a261c7c1da00987f590cb1a89c714cb42157
Added AGPL to the code
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..dba13ed --- /dev/null +++ b/COPYING @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permit...
jauco/Writo
ad62aeb2fb86e8cc9955c6b9d7730f7134c6b4d9
Small fixes the ability to move the cursor, including proper undo and redo support for it deleting and inserting paragraph and sentence markers works. Closes #4
diff --git a/javascriptFrontend/css/writo.css b/javascriptFrontend/css/writo.css index 31e1163..8c1677c 100644 --- a/javascriptFrontend/css/writo.css +++ b/javascriptFrontend/css/writo.css @@ -1,65 +1,69 @@ #DocumentContainer{ height:100%; overflow-y: scroll; } div.paragraph { border: thin gray solid;...
jauco/Writo
1640927582833c84af5b6e980bff10a6d34b3ddb
Add sentence markers
diff --git a/javascriptFrontend/css/writo.css b/javascriptFrontend/css/writo.css index b33cc20..31e1163 100644 --- a/javascriptFrontend/css/writo.css +++ b/javascriptFrontend/css/writo.css @@ -1,55 +1,65 @@ #DocumentContainer{ height:100%; overflow-y: scroll; } div.paragraph { border: thin gray solid;...
jauco/Writo
4bd2fcf2a4cadc0f9a3136423efb73bfc830b1bc
Added documentation and reformatted the code. No functional changes
diff --git a/javascriptFrontend/js/writo.js b/javascriptFrontend/js/writo.js index 8a16975..3e0af3b 100644 --- a/javascriptFrontend/js/writo.js +++ b/javascriptFrontend/js/writo.js @@ -1,581 +1,606 @@ /*jslint white:true, browser: true, evil: false, undef:true, nomen:true, ...