repo
string
commit
string
message
string
diff
string
soulstompp/MooseX-Traits-Attribute-Expirable
c27b385bf15fc381f229735fef3524bf09fba6c9
addition of the first helper module
diff --git a/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm index 99decf9..ad6aedf 100644 --- a/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm +++ b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm @@ -1,5 +1,77 @@ package Moose::Meta::Attribute::Custom::T...
soulstompp/MooseX-Traits-Attribute-Expirable
fbc55d5511b31e7e018fcdda7aa6c26e421c8fda
Named writers now supported and added expiration_date which nothing but the attribute should touch.
diff --git a/lib/MooseX/Traits/Attribute/Expirable.pm b/lib/MooseX/Traits/Attribute/Expirable.pm index 44f8295..5462c0a 100644 --- a/lib/MooseX/Traits/Attribute/Expirable.pm +++ b/lib/MooseX/Traits/Attribute/Expirable.pm @@ -1,139 +1,168 @@ package MooseX::Traits::Attribute::Expirable; use Moose::Role; -our $VERS...
soulstompp/MooseX-Traits-Attribute-Expirable
d21ac54d28f4ec2ea29ec4c55c6ab15ff82c1a31
An incomplete but working expiring attribute.
diff --git a/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm index 43f77dd..99decf9 100644 --- a/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm +++ b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm @@ -1,3 +1,5 @@ package Moose::Meta::Attribute::Custom::Tr...
soulstompp/MooseX-Traits-Attribute-Expirable
78a73284fe4dbf3df43344e6879360f278f098d4
Stub class.
diff --git a/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm new file mode 100644 index 0000000..43f77dd --- /dev/null +++ b/lib/Moose/Meta/Attribute/Custom/Trait/Expirable.pm @@ -0,0 +1,3 @@ +package Moose::Meta::Attribute::Custom::Trait::Expirable; + +sub regi...
soulstompp/MooseX-Traits-Attribute-Expirable
72000d21aa9493c25307ce5866fc97a5396b5394
the readme file
diff --git a/README b/README new file mode 100644 index 0000000..28adbe5 --- /dev/null +++ b/README @@ -0,0 +1,26 @@ +MooseX-Traits-Attribute-Expirable + +A simple set of attribute traits that can be used to automatically clear an attribute after a given amount of time. + +INSTALLATION + +To install this module, run th...
maxfolley/Oomph
6e0ca83192a4237ca399c0e878ccf9e7d1a2de26
adding files
diff --git a/com/oomph/Easing.as b/com/oomph/Easing.as new file mode 100644 index 0000000..ac5814f --- /dev/null +++ b/com/oomph/Easing.as @@ -0,0 +1,307 @@ +/** + * Robert Penner's easing equations + */ +/* +TERMS OF USE - EASING EQUATIONS + +Open source under the BSD License. + +Copyright © 2001 Robert Penner +All r...
cmaggard/pygram
51665078fc42ce27ce76d762e79a16e9437c2ee9
Adding some documentation and some reworking.
diff --git a/grammar.py b/grammar.py index 05da942..393f439 100644 --- a/grammar.py +++ b/grammar.py @@ -1,53 +1,59 @@ import re class Grammar(object): def __init__(self, filename): self.regex = re.compile("<([-\w]+?)>") self.tokens = {} self._process_file(filename) self._dims = {} for x...
cmaggard/pygram
742aa272f3b18df471e29e801a2ec6190650439e
Ignoring tmpfiles
diff --git a/.gitignore b/.gitignore index 0d20b64..b3421b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.pyc +.*
cmaggard/pygram
87caba402835a53a60c840d36ccdff991894fb19
Leading rules should be in angle brackets as well.
diff --git a/grammar.gr b/grammar.gr index ebb6f92..b009a8e 100644 --- a/grammar.gr +++ b/grammar.gr @@ -1,8 +1,8 @@ -alpha ::= <greeting> <noun> | <greeting> and <greeting> <noun> +<alpha> ::= <greeting> <noun> | <greeting> and <greeting> <noun> -greeting ::= Hello | Yarr +<greeting> ::= Hello | Yarr | G...
cmaggard/pygram
1eec03cadbea81c84b5b021db1da16f8ab3cd27d
Removing testing prints
diff --git a/grammar.py b/grammar.py index 467f423..6030067 100644 --- a/grammar.py +++ b/grammar.py @@ -1,55 +1,53 @@ import re class Grammar(object): def __init__(self, filename): self.regex = re.compile("(<([-\w]+?)>)") self.tokens = {} self._process_file(filename) self._dims = {} for...
cmaggard/pygram
323ea0f54afd7fd675f3450415397b8e55a2b3ba
Replacement engine working given codon stream
diff --git a/grammar.py b/grammar.py index 5fa2fbd..467f423 100644 --- a/grammar.py +++ b/grammar.py @@ -1,33 +1,55 @@ -from __future__ import with_statement +import re class Grammar(object): def __init__(self, filename): + self.regex = re.compile("(<([-\w]+?)>)") self.tokens = {} self._process_file(...
cmaggard/pygram
9fcaa4d813c72c8dc025ce22e4ad860c3d51418e
Adding multiple start rules for testing
diff --git a/grammar.gr b/grammar.gr index 88e7a58..ebb6f92 100644 --- a/grammar.gr +++ b/grammar.gr @@ -1,8 +1,8 @@ -alpha ::= <greeting> <noun> +alpha ::= <greeting> <noun> | <greeting> and <greeting> <noun> greeting ::= Hello | Yarr | Goodbye noun ::= World | Mars
cmaggard/pygram
a31efe3d9aea1b70a87217fb2e737b90f22b616c
Revising grammar separator
diff --git a/grammar.gr b/grammar.gr index 35a352a..88e7a58 100644 --- a/grammar.gr +++ b/grammar.gr @@ -1,8 +1,8 @@ -alpha :== <greeting> <noun> +alpha ::= <greeting> <noun> -greeting :== Hello | Yarr +greeting ::= Hello | Yarr | Goodbye -noun :== World +noun ::= World | Mars diff --git a/...
cmaggard/pygram
cf26584f8b113c9513cad179abd28314d7eb6404
Removing last reference to constant
diff --git a/grammar.py b/grammar.py index c507a53..7adaa46 100644 --- a/grammar.py +++ b/grammar.py @@ -1,34 +1,33 @@ from __future__ import with_statement class Grammar(object): - SEP = ':==' def __init__(self, filename): self.tokens = {} self._process_file(filename) def _process_file(self, fil...
cmaggard/pygram
6717e59a9fbc17c039f44552cb82d51a8fc16da6
Licensing under GPL v3
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy...
cmaggard/pygram
224b43b074804ddd221e21bb28e8afaeb460e2a4
Adding test grammar
diff --git a/grammar.gr b/grammar.gr new file mode 100644 index 0000000..35a352a --- /dev/null +++ b/grammar.gr @@ -0,0 +1,8 @@ +alpha :== <greeting> <noun> + +greeting :== Hello | Yarr + | Goodbye + +noun :== World + | Mars +
cmaggard/pygram
648d6605b853e5bb077961e508657f52e504b60c
Ignoring .pyc files
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc
msubra/Expression-Parser-using-Lex---Yacc
d0fbd485390cf2cc3baf761b12a84f1e946770c1
first push
diff --git a/Expression Parser using LEX and YACC.doc b/Expression Parser using LEX and YACC.doc new file mode 100755 index 0000000..da97b83 Binary files /dev/null and b/Expression Parser using LEX and YACC.doc differ diff --git a/Expression Parser using LEX and YACC.zip b/Expression Parser using LEX and YACC.zip new f...
Kryso/kFloatingText
e6a785423fe7009739e61402dd7ca15a7231860d
necessary updates because of libs merging
diff --git a/CombatTextFrame.lua b/CombatTextFrame.lua index a81d02e..7abbf42 100644 --- a/CombatTextFrame.lua +++ b/CombatTextFrame.lua @@ -1,265 +1,261 @@ local _, Internals = ...; -- **** imports **** local kCore = kCore; local kWidgets = kWidgets; local FloatingMessageFrame = kWidgets.FloatingMessageFrame...
Kryso/kFloatingText
0b52a485d0b44cc76d07c6bc49e65ed9a7b1002c
added 'stolen' message
diff --git a/CombatTextFrame.lua b/CombatTextFrame.lua index e490c05..a81d02e 100644 --- a/CombatTextFrame.lua +++ b/CombatTextFrame.lua @@ -1,254 +1,265 @@ local _, Internals = ...; -- **** imports **** local kCore = kCore; local kWidgets = kWidgets; local FloatingMessageFrame = kWidgets.FloatingMessageFrame...
Kryso/kFloatingText
8a14e6674631b8f8a7cf66505e7ed7fad257d5eb
removed dependency on Tukui_Heal_Layout
diff --git a/CombatTextFrame.lua b/CombatTextFrame.lua index c1818f9..e490c05 100644 --- a/CombatTextFrame.lua +++ b/CombatTextFrame.lua @@ -1,250 +1,254 @@ local _, Internals = ...; -- **** imports **** local kCore = kCore; local kWidgets = kWidgets; local FloatingMessageFrame = kWidgets.FloatingMessageFrame...
Kryso/kFloatingText
987897a0ec7279dfae86b6fd9cbb8ee914378a76
added dispels and combat state anounces
diff --git a/CombatTextFrame.lua b/CombatTextFrame.lua index 8fe51b5..c1818f9 100644 --- a/CombatTextFrame.lua +++ b/CombatTextFrame.lua @@ -1,149 +1,250 @@ local _, Internals = ...; -- **** imports **** local kCore = kCore; local kWidgets = kWidgets; local FloatingMessageFrame = kWidgets.FloatingMessageFrame...
flaptor/indextank-php
d3ce51977de487ed9c383d26ff30e78654308b74
changed tabs to spaces
diff --git a/Indextank/Api.php b/Indextank/Api.php index 9051416..462a754 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,115 +1,115 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
01f7268ca75df31c8250c6400faae40ce151c91f
removed extra spaces
diff --git a/Indextank/Api.php b/Indextank/Api.php index 4e41d33..9051416 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,115 +1,115 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
e55b72011f77027e27f8296faa021f9d6f85725b
add composer file
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ff5a1a3 --- /dev/null +++ b/composer.json @@ -0,0 +1,14 @@ +{ + "name": "flaptor/indextank-php", + "type": "library", + "description": "PHP Client for the IndexTank API", + "keywords": ["Indextank", "PHP", "Client", "Search"], + ...
flaptor/indextank-php
b50158d373a9ebcc8c00753f8f1eecfd9ab9c77f
Explicitly set curl option for basic auth
diff --git a/Indextank/Api.php b/Indextank/Api.php index 42293a2..4e41d33 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,109 +1,115 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
682ce6307b7c38fc7f25870174c03b491e34a0e8
Fix typo: docvar_filters => function_filters
diff --git a/Indextank/Index.php b/Indextank/Index.php index ffe4449..1588edb 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,466 +1,466 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
065b11b01ecfc4333529ab79b10b85a22ff2350e
Fix Categories encoding in search method
diff --git a/Indextank/Index.php b/Indextank/Index.php index 5576e54..ffe4449 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,466 +1,466 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
dfb7d03b31f0f915d91b2f38d332eb8f18c467ce
delete_by_query -> delete_by_search
diff --git a/Indextank/Index.php b/Indextank/Index.php index 00b4b81..5576e54 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,466 +1,466 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
fe0e79582e97ec7baf906e46e09bd09745443584
fix markup
diff --git a/README.md b/README.md index 817b129..4465c66 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,34 @@ IndexTank API Client for PHP by Gilles ====================================== Version 2.x: ------- __WARNING: NOT AUTOMATICALLY BACKWARDS COMPATIBLE.__ This version renames almost all the classes...
flaptor/indextank-php
badaa07d291eec8684feffc89f625716ca6dfe04
comment on multi parameters workaround
diff --git a/Indextank/Api.php b/Indextank/Api.php index 0c5c9d4..42293a2 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,105 +1,109 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
71093eb74aa117e1f05142d46c22bc0f3a612773
fix bulk delete
diff --git a/Indextank/Api.php b/Indextank/Api.php index 3e2a23b..0c5c9d4 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,104 +1,105 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
23f54b05fa2bccda16b81d5aba76ae486fbd181e
Indexing documents supports categories
diff --git a/Indextank/Index.php b/Indextank/Index.php index 305c324..3f24956 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,458 +1,469 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
f4f8a28174e3d9d45fa5f1b767fc4ada23d76635
merging in bulk_delete
diff --git a/Indextank/Api.php b/Indextank/Api.php index c0bc852..2f173b2 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,104 +1,104 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * * Licen...
flaptor/indextank-php
8a4e95d3675166f9ed052cafb187e942f5a2a33d
merging is_public_search_enabled
diff --git a/Indextank/Index.php b/Indextank/Index.php index e8da4f1..1d484a6 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,400 +1,405 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
9883772008b0be08b32acb82fddc1cfff1993f72
merging delete_documents
diff --git a/Indextank/Index.php b/Indextank/Index.php index 60fda5e..e8da4f1 100644 --- a/Indextank/Index.php +++ b/Indextank/Index.php @@ -1,385 +1,400 @@ <?php /** * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) * Copyright:: Copyright (c) 2011 Formspring.me * License:: Apache License, Version 2.0 * ...
flaptor/indextank-php
dda372502ce64217043c1d26de22f5f52aaa6406
removed dependency on pecl_http updated licenses
diff --git a/Indextank/Api.php b/Indextank/Api.php index 62063c2..c0bc852 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,93 +1,104 @@ <?php /** - * User: gilles - * Date: 5/19/11 - * Time: 4:29 PM + * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) + * Copyright:: Copyright (c) 2011 Formspring.me + *...
flaptor/indextank-php
0e44ee21360e13415809818f5baa1a58bff313a2
removed dependency on pecl_http updated licenses
diff --git a/Indextank/Exception/InvalidDefinition.php b/Indextank/Exception/InvalidDefinition.php index 3230b8e..3d0e973 100644 --- a/Indextank/Exception/InvalidDefinition.php +++ b/Indextank/Exception/InvalidDefinition.php @@ -1,6 +1,23 @@ <?php +/** + * Author:: Gilles Devaux (<gilles.devaux@gmail.com>) + * Copyrig...
flaptor/indextank-php
6a2e4aa5d6b10bc28cadf625a22137dd267a2b57
Add Query-Delete
diff --git a/indextank_client.php b/indextank_client.php index 7045ac2..63f7348 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,455 +1,507 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
fcf5813f80fc9189f2db5040725a80ec28cbb400
Public search status
diff --git a/indextank_client.php b/indextank_client.php index 7045ac2..6f7e416 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,455 +1,459 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
23829cce0ac363f478f5660ea85573e8a0e06e90
public_search option when creating index
diff --git a/indextank_client.php b/indextank_client.php index a9a4612..7045ac2 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,451 +1,455 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
56092ab754ce7bca086773086478caddae0ede1a
return json body in delete_documents
diff --git a/indextank_client.php b/indextank_client.php index 5ea9c6c..a9a4612 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,451 +1,451 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
0239872337f56d1d7974aaad0fbddc39d3fdc7e9
bulk delete
diff --git a/indextank_client.php b/indextank_client.php index c79161a..5ea9c6c 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,437 +1,451 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
317bc9f36e898cbfd937b8c2d90062d5e5c2406f
use built in php functions
diff --git a/Indextank/Api.php b/Indextank/Api.php index a17acd5..62063c2 100644 --- a/Indextank/Api.php +++ b/Indextank/Api.php @@ -1,100 +1,93 @@ <?php /** * User: gilles * Date: 5/19/11 * Time: 4:29 PM * */ class Indextank_Api { /* * Basic client for an account. * It needs an API url...
flaptor/indextank-php
fa5c0c027c8ed8f70aae521a027a1521497f1f8f
new indextank with pear convention for autoloading, some tests, prepare pear packaging, etc...
diff --git a/Indextank/Api.php b/Indextank/Api.php new file mode 100644 index 0000000..a17acd5 --- /dev/null +++ b/Indextank/Api.php @@ -0,0 +1,100 @@ +<?php +/** + * User: gilles + * Date: 5/19/11 + * Time: 4:29 PM + * + */ + +class Indextank_Api +{ + /* + * Basic client for an account. + * It needs an API ...
flaptor/indextank-php
d2a9b8bd92db6aaadce95961c973a826e9fedfda
fixing update_categories. No need to call convert_to_map
diff --git a/indextank_client.php b/indextank_client.php index 56c1e00..c79161a 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,437 +1,437 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
0ec360559d09fd46070ed4bc9ca3619a18187859
adding doc about needing UTF-8 strings on add_document(s)?. blame json_encode() :D
diff --git a/indextank_client.php b/indextank_client.php index 46c0193..56c1e00 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,437 +1,437 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
25e7457b6c1d5009bdefae88e96bbd7d5ba46952
Returning status code for calls that should return 200 and an empty body
diff --git a/indextank_client.php b/indextank_client.php index 1988f41..46c0193 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,428 +1,437 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
dbe45aeb80615c680897efc98c1b17ef84b44189
initial batch insert support.
diff --git a/indextank_client.php b/indextank_client.php index a8fc485..1988f41 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,380 +1,428 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
8ceabca510490b4332db808cca009f64f588c367
adding some documentation for range queries
diff --git a/indextank_client.php b/indextank_client.php index f2069b7..a8fc485 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,367 +1,380 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
ddfec33908e8fa19023d59b4f0985471a185d33f
adding query variables, and range queries. Fixing list_functions return type
diff --git a/indextank_client.php b/indextank_client.php index c6dc4b5..f2069b7 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,330 +1,367 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
48dd83f78347377fdd4fc7bad5e3ddad68daa512
Enforcing non null docid, docid no longer than 1024 bytes
diff --git a/indextank_client.php b/indextank_client.php index b5af368..c6dc4b5 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,328 +1,330 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
508abba6928288cdd40fea4635a18288eadd429a
Fixed typo in the snippet param
diff --git a/indextank_client.php b/indextank_client.php index fe4039b..b5af368 100644 --- a/indextank_client.php +++ b/indextank_client.php @@ -1,328 +1,328 @@ <?php // sudo apt-get install php5 php5-curl class InvalidResponseFromServer extends Exception {} class TooManyIndexes extends Exception {} class In...
flaptor/indextank-php
e431168c798d57d283a930ef1f54df433f933772
Renamed client file
diff --git a/indextank_client.php b/indextank_client.php new file mode 100644 index 0000000..3b7e7f1 --- /dev/null +++ b/indextank_client.php @@ -0,0 +1,316 @@ +<?php + +// sudo apt-get install php5 php5-curl + + +class InvalidResponseFromServer extends Exception {} +class TooManyIndexes extends Exception {} +class Ind...
flaptor/indextank-php
b1aac5369fc0e70b5a822acf04cec787cb3e882d
Added client
diff --git a/indextankv1.php b/indextankv1.php new file mode 100644 index 0000000..3b7e7f1 --- /dev/null +++ b/indextankv1.php @@ -0,0 +1,316 @@ +<?php + +// sudo apt-get install php5 php5-curl + + +class InvalidResponseFromServer extends Exception {} +class TooManyIndexes extends Exception {} +class IndexAlreadyExists...
constantinemavromoustakos/i18n
e674c6719ebe16ad0fcaf06003a5a0321250299d
I18N plugin
diff --git a/MIT-LICENSE b/MIT-LICENSE new file mode 100644 index 0000000..9376605 --- /dev/null +++ b/MIT-LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2009 [name of plugin creator] + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Sof...
mlaprise/twBlock
36d17f85477a33af57b6a2dc98ae8f26a0b4c974
Added compatibility with new oauth
diff --git a/twBlock/twBlock.py b/twBlock/twBlock.py index fb9277b..0e9b45b 100644 --- a/twBlock/twBlock.py +++ b/twBlock/twBlock.py @@ -1,602 +1,575 @@ -import twython.core as twython +from twython import Twython import time import PyRSS2Gen import datetime import re from operator import itemgetter -import simple...
tomafro/ratchet
a14aec562e3ee095d68abc7b5686b739afb9303a
Cleaned up Feed to/from_param, added deployment scripts and some documentation
diff --git a/.gitignore b/.gitignore index fbf828d..f5e1ace 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -log \ No newline at end of file +log +*.sqlite3 \ No newline at end of file diff --git a/Capfile b/Capfile new file mode 100644 index 0000000..c36d48d --- /dev/null +++ b/Capfile @@ -0,0 +1,3 @@ +load 'de...
lebinh/wdb
fe683c2fe55dc083d0688bfedd77ed2eb4120de4
Added quiz action for a simple quiz base on words db.
diff --git a/wdb.py b/wdb.py index f80865c..82c3362 100755 --- a/wdb.py +++ b/wdb.py @@ -1,93 +1,112 @@ #!/usr/bin/env python import urllib2 +import random from optparse import OptionParser from BeautifulSoup import BeautifulSoup from WordsDB import WordsDB DB_FILE = 'words.db' verbose = False def clean(l...
sms420/basicBlog
1d4ddcaaf7f35898f11aed2f77f48a521fef3b32
moved currentPosts method to model
diff --git a/app/controllers/posts_controller.rb b/app/controllers/posts_controller.rb index 1888b09..f2248df 100644 --- a/app/controllers/posts_controller.rb +++ b/app/controllers/posts_controller.rb @@ -1,86 +1,86 @@ class PostsController < ApplicationController # GET /posts # GET /posts.xml def index ...
sms420/basicBlog
2703bb76e5cce9a9288a9fce467fff5d00dcefce
g: 'recent posts function'
diff --git a/db/schema.rb b/db/schema.rb index 1fcd7a6..a60d8d5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1,21 +1,21 @@ # This file is auto-generated from the current state of the database. Instead of editing this file, # please use the migrations feature of Active Record to incrementally modify your database...
sms420/basicBlog
317c1379514d2f8da214e62c1bbe02e79bd26dc8
g: 'recent posts function'
diff --git a/app/controllers/posts_controller.rb b/app/controllers/posts_controller.rb index b189ee6..1888b09 100644 --- a/app/controllers/posts_controller.rb +++ b/app/controllers/posts_controller.rb @@ -1,86 +1,86 @@ class PostsController < ApplicationController # GET /posts # GET /posts.xml def index ...
sms420/basicBlog
da228c40de294cb485aacd75149eec16ea6056b4
because clean is addicting
diff --git a/app/views/posts/index.html.erb b/app/views/posts/index.html.erb index ecca971..3b64676 100644 --- a/app/views/posts/index.html.erb +++ b/app/views/posts/index.html.erb @@ -1,12 +1,10 @@ <div id="recentPosts"> <h1>Recent Posts</h1> (<%= link_to 'create new', new_post_path %>) <% for post in @recentPo...
sms420/basicBlog
5b3f019c76782b1756cf0d6e2eb6eadf80a42aad
some ue tweaks to get rid of tables
diff --git a/app/views/layouts/posts.html.erb b/app/views/layouts/posts.html.erb index 5a858e0..e7587c8 100644 --- a/app/views/layouts/posts.html.erb +++ b/app/views/layouts/posts.html.erb @@ -1,25 +1,54 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-t...
sms420/basicBlog
9f0809401ef4337722cc90a05c02ebb3eca4b5c6
factored for proper query
diff --git a/app/controllers/posts_controller.rb b/app/controllers/posts_controller.rb index 887462a..b189ee6 100644 --- a/app/controllers/posts_controller.rb +++ b/app/controllers/posts_controller.rb @@ -1,85 +1,86 @@ class PostsController < ApplicationController # GET /posts # GET /posts.xml def index ...
sms420/basicBlog
c6c09b497aa90597ad6723e61b0368ad62ccf632
hello git
diff --git a/app/views/layouts/posts.html.erb b/app/views/layouts/posts.html.erb index b526e09..5a858e0 100644 --- a/app/views/layouts/posts.html.erb +++ b/app/views/layouts/posts.html.erb @@ -1,25 +1,25 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-t...
sms420/basicBlog
78de128e1d4bf8586a1c44002b255d6263b5e221
hello world
diff --git a/app/views/layouts/posts.html.erb b/app/views/layouts/posts.html.erb index fac17b0..b526e09 100644 --- a/app/views/layouts/posts.html.erb +++ b/app/views/layouts/posts.html.erb @@ -1,25 +1,25 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-t...
jocelyn/dummy
5eb009c0843d83a2e4e5b4e5387c9bbc6062ab61
cleaning, addition .. still dummy commits
diff --git a/.gitignore b/.gitignore index 679b2bd..d890cd4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ EIFGENs .svn/ -pop_checker/data/ \ No newline at end of file +pop_checker/ +bricabrac/ +follow/ +esqlite/ diff --git a/basic_project/abstract_application.e b/basic_project/abstract_application.e new fi...
jocelyn/dummy
e9f5a98e258e6d325583c08de4b8e06078c916c6
added tests
diff --git a/pop_checker/tests/test_pop3.e b/pop_checker/tests/test_pop3.e new file mode 100644 index 0000000..70a2a33 --- /dev/null +++ b/pop_checker/tests/test_pop3.e @@ -0,0 +1,41 @@ +note + description: "[ + Eiffel tests that can be executed by testing tool. + ]" + author: "EiffelStudio test wizard" + date: "$Date...
jocelyn/dummy
b524e2b4a5586667916091568933ce896cd8848d
replaced POP3_LOCATION by POP3_URL
diff --git a/pop_checker/pop3_location.e b/pop_checker/pop3_location.e deleted file mode 100644 index 52e1be9..0000000 --- a/pop_checker/pop3_location.e +++ /dev/null @@ -1,94 +0,0 @@ -note - description: "Summary description for {POP3_LOCATION}." - author: "" - date: "$Date$" - revision: "$Revision$" - -class - POP3_L...
jocelyn/dummy
e8a5a4c1d101904935908a481b83be09b5face70
fixed default value for pop3 profile
diff --git a/pop_checker/pop3_profile.e b/pop_checker/pop3_profile.e index d226035..266f9b1 100644 --- a/pop_checker/pop3_profile.e +++ b/pop_checker/pop3_profile.e @@ -1,150 +1,151 @@ note description: "Summary description for {POP3_PROFILE}." author: "" date: "$Date$" revision: "$Revision$" class POP3_P...
jocelyn/dummy
7de9bf8a1c56c26f3f68647ca25ed180dc9ae493
new pop checker version
diff --git a/.gitignore b/.gitignore index 208bf25..679b2bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -EIFGENs \ No newline at end of file +EIFGENs +.svn/ +pop_checker/data/ \ No newline at end of file diff --git a/basic_project/application.e b/basic_project/application.e new file mode 100644 index 0000000...
jocelyn/dummy
79b97aadce0b0ed4d76b26a7bf441e09a66650cb
stable version of pop checker tool
diff --git a/pop_checker/mail_checker_data.e b/pop_checker/mail_checker_data.e new file mode 100644 index 0000000..64d243e --- /dev/null +++ b/pop_checker/mail_checker_data.e @@ -0,0 +1,223 @@ +note + description: "Summary description for {MAIL_CHECKER_DATA}." + author: "" + date: "$Date$" + revision: "$Revision$" + +c...
jocelyn/dummy
99104b6f34b7423bd28d5b6f96f0c46a2e3e28cd
improvement for the pop checker
diff --git a/pop_checker/pop3_location.e b/pop_checker/pop3_location.e new file mode 100644 index 0000000..52e1be9 --- /dev/null +++ b/pop_checker/pop3_location.e @@ -0,0 +1,94 @@ +note + description: "Summary description for {POP3_LOCATION}." + author: "" + date: "$Date$" + revision: "$Revision$" + +class + POP3_LOCAT...
jocelyn/dummy
a08d8937cc8bbdbe43f0521258d2fc771af5dd18
first import draft and dummy system
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..208bf25 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +EIFGENs \ No newline at end of file diff --git a/pop_checker/pop_checker_application.e b/pop_checker/pop_checker_application.e new file mode 100644 index 0000000..e60ac4d --- /dev/null +++ b/po...
dukebody/dceucm.theme
b7f5eb7f9060c95d89908064690f3ee862a48263
Revert "changed the theme color layout to fit the current logo color"
diff --git a/dceucm/theme/skins/dceucm_theme_styles/base_properties.props b/dceucm/theme/skins/dceucm_theme_styles/base_properties.props index 7b2e564..396a334 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/base_properties.props +++ b/dceucm/theme/skins/dceucm_theme_styles/base_properties.props @@ -1,47 +1,47 @@ ...
dukebody/dceucm.theme
1d015975fe3ac0ded759ee662327d486606ae4f5
let the breadcrumbs expand horizontally
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index 1f89bc4..ef1ac88 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -498,1025 +498,1024 @@ ul.portletNavigationTree li.navTr...
dukebody/dceucm.theme
d04f1f5f15b68994a167cefe02ac6804f000ae2f
ignoring backup files ending in ~
diff --git a/.gitignore b/.gitignore index ce8193f..3d83dfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pyc dceucm.theme.egg-info/* +*~
dukebody/dceucm.theme
c3fdb885feb8dbe0cba9cb11e7dfc1ba698268e7
changed the theme color layout to fit the current logo color
diff --git a/dceucm/theme/skins/dceucm_theme_styles/base_properties.props b/dceucm/theme/skins/dceucm_theme_styles/base_properties.props index 396a334..7b2e564 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/base_properties.props +++ b/dceucm/theme/skins/dceucm_theme_styles/base_properties.props @@ -1,47 +1,47 @@ ...
dukebody/dceucm.theme
45d584325b9562eddf7fcd740cd5cc2931a76a96
adjusted the width of the portal logo to fit available space
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index 9fccc88..1f89bc4 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -290,1025 +290,1025 @@ div.managePortletsLink { displa...
dukebody/dceucm.theme
e2fb548ba90273476fc2d256eef3d2811da71c0d
moved personal_bar viewlet after site_actions
diff --git a/dceucm/theme/browser/configure.zcml b/dceucm/theme/browser/configure.zcml index a2be21d..dc38d5a 100644 --- a/dceucm/theme/browser/configure.zcml +++ b/dceucm/theme/browser/configure.zcml @@ -1,50 +1,59 @@ <configure xmlns="http://namespaces.zope.org/zope" xmlns:browser="http://namespaces.zope.o...
dukebody/dceucm.theme
ee46739db0a16975852e814401ae530583b6510f
changed 'alumnos' to 'estudiantes' in the portal footer
diff --git a/dceucm/theme/browser/footer.pt b/dceucm/theme/browser/footer.pt index 4d87ad0..42452fa 100644 --- a/dceucm/theme/browser/footer.pt +++ b/dceucm/theme/browser/footer.pt @@ -1,5 +1,5 @@ <div id="portal-footer" metal:define-macro="portal_footer" i18n:domain="plone"> <p> - Delegación Central de A...
dukebody/dceucm.theme
d5571fca8c9c1374d74289d8de3a8ba2bc3b39af
assigned a title attribute to the dce logo
diff --git a/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif.metadata b/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif.metadata new file mode 100644 index 0000000..e3a5720 --- /dev/null +++ b/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif.metadata @@ -0,0 +1,3 @@ +[default] +title=DCE UCM webpage...
dukebody/dceucm.theme
570db30e037c0551eb33f72c615419b38f043493
increased the width of the content central column to gain some space and align the Entrar text with the right border of the portlets
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index 84d3646..9fccc88 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -1,737 +1,737 @@ /* Elements that still need discussio...
dukebody/dceucm.theme
a249b28ce9b30f6fdd2e952e5ddbe5e8c5d0578e
shrinked the document first header font size to avoid lines superposition
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index 15cb893..84d3646 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -828,1025 +828,1025 @@ dl.enableFormTabbing dd { fields...
dukebody/dceucm.theme
e63f25eeefdfae4fbec3adc5efc854125e095281
Adding dashes between site action elements to improve accessibilty
diff --git a/dceucm/theme/browser/configure.zcml b/dceucm/theme/browser/configure.zcml index 0773c31..a2be21d 100644 --- a/dceucm/theme/browser/configure.zcml +++ b/dceucm/theme/browser/configure.zcml @@ -1,40 +1,50 @@ <configure xmlns="http://namespaces.zope.org/zope" xmlns:browser="http://namespaces.zope.o...
dukebody/dceucm.theme
b9b1095b504746dbbcab29d12b57c2c4c8eb3fc5
Removed breadcrumbs viewlet to not collide with page title
diff --git a/dceucm/theme/profiles/default/viewlets.xml b/dceucm/theme/profiles/default/viewlets.xml index 520fbd0..7b79a2a 100644 --- a/dceucm/theme/profiles/default/viewlets.xml +++ b/dceucm/theme/profiles/default/viewlets.xml @@ -1,4 +1,6 @@ <?xml version="1.0"?> <object> - + <hidden manager="plone.portaltop" ski...
dukebody/dceucm.theme
ad2e4bf0e438483a15eacdd5d120eafed715cc31
Added UCM corporate header to the main template
diff --git a/dceucm/theme/skins/dceucm_theme_custom_templates/main_template.pt b/dceucm/theme/skins/dceucm_theme_custom_templates/main_template.pt index e047be5..1605417 100644 --- a/dceucm/theme/skins/dceucm_theme_custom_templates/main_template.pt +++ b/dceucm/theme/skins/dceucm_theme_custom_templates/main_template.pt...
dukebody/dceucm.theme
f954ed79831e39b22ce97ff0decb46f8fca802b2
official DCE logo added
diff --git a/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif b/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif index 198a2ba..d54dbf8 100644 Binary files a/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif and b/dceucm/theme/skins/dceucm_theme_custom_images/logo.gif differ diff --git a/dceucm/theme/s...
dukebody/dceucm.theme
1288ee73055b124097ff97ef3c465c4068708f00
title big and blue, Arial
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index 28e929a..3ee1743 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -828,1024 +828,1028 @@ dl.enableFormTabbing dd { fiel...
dukebody/dceucm.theme
c415c18a82e5546145051ee646b1126cd06a333f
portal footer changed to DCE-UCM
diff --git a/dceucm/theme/browser/configure.zcml b/dceucm/theme/browser/configure.zcml index 8131e17..0773c31 100644 --- a/dceucm/theme/browser/configure.zcml +++ b/dceucm/theme/browser/configure.zcml @@ -1,30 +1,40 @@ <configure xmlns="http://namespaces.zope.org/zope" xmlns:browser="http://namespaces.zope.o...
dukebody/dceucm.theme
0c204752caa608e5c5235ce92bb5204ff0565dc9
logo centered
diff --git a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css index f27a743..28e929a 100644 --- a/dceucm/theme/skins/dceucm_theme_styles/nuplone.css +++ b/dceucm/theme/skins/dceucm_theme_styles/nuplone.css @@ -294,1025 +294,1026 @@ div.managePortletsLink a { -moz...
dukebody/dceucm.theme
64abec8ccb34b863f8a1456df934cf81ae2ea863
initial theme based on NuPlone
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce8193f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.pyc +dceucm.theme.egg-info/* diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..665c073 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include dceucm * +...
rcoup/yachter
8a73af1b5205f194000a6eac5974b3751d5d00f5
Add some powered-by links in the HTML pages and in the exported pages.
diff --git a/README.md b/README.md index d908ca7..a01332c 100644 --- a/README.md +++ b/README.md @@ -1,68 +1,68 @@ Yachter - help run better yacht races ===================================== * [http://github.com/rcoup/yachter](http://github.com/rcoup/yachter) Yachter is designed to be a suite of web-based tool...
rcoup/yachter
b36fcd616be088e1ae9140fe375c272286f38471
Remove console.log straggler
diff --git a/yachter/courses/templates/courses/static_finder.html b/yachter/courses/templates/courses/static_finder.html index 4044a04..bc48d28 100644 --- a/yachter/courses/templates/courses/static_finder.html +++ b/yachter/courses/templates/courses/static_finder.html @@ -1,93 +1,92 @@ <!DOCTYPE HTML PUBLIC "-//W3C//D...
rcoup/yachter
72d37359d8daef098c51618111b370bfb9a36a69
Expose Rankings CSV export
diff --git a/yachter/courses/models.py b/yachter/courses/models.py index 69895ed..c76ab6f 100644 --- a/yachter/courses/models.py +++ b/yachter/courses/models.py @@ -1,382 +1,382 @@ import csv import math import operator import django.db.models import django.contrib.gis.db.models from django.contrib.gis.db impor...
rcoup/yachter
ff44adeef2f77f44d7024f82d73919991753ff1e
Don't die if Find is clicked with no wind entered
diff --git a/yachter/courses/templates/courses/static_finder.html b/yachter/courses/templates/courses/static_finder.html index 4b8e5fd..4044a04 100644 --- a/yachter/courses/templates/courses/static_finder.html +++ b/yachter/courses/templates/courses/static_finder.html @@ -1,89 +1,93 @@ <!DOCTYPE HTML PUBLIC "-//W3C//D...
rcoup/yachter
a356420069b41a4e32e1d8ae13c443c59d2ff00a
Add static HTML for wind-finder as well, happens as part of normal static export
diff --git a/yachter/courses/models.py b/yachter/courses/models.py index dea8796..69895ed 100644 --- a/yachter/courses/models.py +++ b/yachter/courses/models.py @@ -1,346 +1,382 @@ import csv import math +import operator import django.db.models import django.contrib.gis.db.models from django.contrib.gis.db impor...
rcoup/yachter
bcde10ca1f59409e4a3e211ae05b32de8e5d5c1c
Add Shortened Length to lots of places
diff --git a/yachter/courses/models.py b/yachter/courses/models.py index 3e4699e..dea8796 100644 --- a/yachter/courses/models.py +++ b/yachter/courses/models.py @@ -1,343 +1,346 @@ import csv import math import django.db.models import django.contrib.gis.db.models from django.contrib.gis.db import models from dj...
rcoup/yachter
69f806e0e524233e69c598bbfc07a6fd8eb2479f
Add Shortened Length to lots of places
diff --git a/media/course_list.js b/media/course_list.js index 04226f9..dbc8afa 100644 --- a/media/course_list.js +++ b/media/course_list.js @@ -1,116 +1,119 @@ var map; $(function() { map = new OpenLayers.Map('map', { units: "m", maxResolution: 156543.0339, numZoomLevels: 20, ...