repo
string
commit
string
message
string
diff
string
robertbrook/findyourmp
2816a60313b5ed4108e3beca08cf78827ad02727
fixing version of cap in gemfile
diff --git a/Capfile b/Capfile index a80b79d..00f53d7 100644 --- a/Capfile +++ b/Capfile @@ -1,6 +1,6 @@ -load 'deploy' if respond_to?(:namespace) # cap2 differentiator +load './deploy' if respond_to?(:namespace) # cap2 differentiator Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } -load 'config/de...
robertbrook/findyourmp
5511302d4042b8f4ad78351f22e87b5c97c6b649
adding new_relic to Gemfile
diff --git a/Gemfile b/Gemfile index c232124..7be03ee 100644 --- a/Gemfile +++ b/Gemfile @@ -1,28 +1,29 @@ source "http://rubygems.org" gem 'rake' gem 'rails', '2.3.17' gem 'rdoc' gem 'haml', '3.1.8' gem 'authlogic', '2.1.9' gem 'friendly_id', '2.3.4', :require => "friendly_id" gem 'xss_terminate' gem 'hpric...
robertbrook/findyourmp
f14cdfab8f8fc40fe62ff834955b82a2490b8a65
added button to pull member data from data.parliament.uk
diff --git a/Gemfile b/Gemfile index 9547754..c232124 100644 --- a/Gemfile +++ b/Gemfile @@ -1,27 +1,28 @@ source "http://rubygems.org" gem 'rake' gem 'rails', '2.3.17' gem 'rdoc' gem 'haml', '3.1.8' gem 'authlogic', '2.1.9' gem 'friendly_id', '2.3.4', :require => "friendly_id" gem 'xss_terminate' gem 'hpric...
robertbrook/findyourmp
336244287ca3afd924bbe825a7872fdc1bdca486
fixed cucumber features
diff --git a/Gemfile b/Gemfile index 4d7e1f6..9547754 100644 --- a/Gemfile +++ b/Gemfile @@ -1,23 +1,27 @@ source "http://rubygems.org" gem 'rake' gem 'rails', '2.3.17' gem 'rdoc' gem 'haml', '3.1.8' gem 'authlogic', '2.1.9' gem 'friendly_id', '2.3.4', :require => "friendly_id" gem 'xss_terminate' gem 'hpric...
robertbrook/findyourmp
67cbc476d0570163297bedca485b0b42451c2f70
dealing with new ONS data format
diff --git a/db/migrate/20130523144325_ons_id_longer.rb b/db/migrate/20130523144325_ons_id_longer.rb new file mode 100644 index 0000000..6e28e0e --- /dev/null +++ b/db/migrate/20130523144325_ons_id_longer.rb @@ -0,0 +1,15 @@ +class OnsIdLonger < ActiveRecord::Migration + def self.up + change_column :blacklisted_pos...
robertbrook/findyourmp
ade581f6b2e59478ad942453fd808677de549b76
skip not ski
diff --git a/lib/s3uploader.rb b/lib/s3uploader.rb index ca3a72c..474af2d 100644 --- a/lib/s3uploader.rb +++ b/lib/s3uploader.rb @@ -1,174 +1,174 @@ require File.expand_path(File.dirname(__FILE__) + '/encryption') require 'aws/s3' module FindYourMP; end module FindYourMP::S3Uploader include FindYourMP::E...
robertbrook/findyourmp
2c6c3e0620894689f3b6ab60d58454d68b5c838b
using utf8-safe version of mysqldump command
diff --git a/lib/s3uploader.rb b/lib/s3uploader.rb index c4087c6..ca3a72c 100644 --- a/lib/s3uploader.rb +++ b/lib/s3uploader.rb @@ -1,174 +1,174 @@ require File.expand_path(File.dirname(__FILE__) + '/encryption') require 'aws/s3' module FindYourMP; end module FindYourMP::S3Uploader include FindYourMP::E...
robertbrook/findyourmp
048d4d7b764c839378ff00373fc6063b34484f59
adding database.example.yml file
diff --git a/config/database.example.yml b/config/database.example.yml new file mode 100644 index 0000000..b42d2f9 --- /dev/null +++ b/config/database.example.yml @@ -0,0 +1,21 @@ +development: + adapter: mysql + database: findyourmp_development + username: root + password: + socket: /tmp/mysql.sock + +test: + a...
robertbrook/findyourmp
da28a489550c970957570daf40928899307cda76
fix for member website displaying as NULL issue
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 81dc6f3..a986c53 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,25 +1,25 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
9257cb34dfebb32b574b6235220f00a4fb769725
moved to Bundler/Gemfile rather than vendor/plugins and git submodule; unfrozen Rails
diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index a9a4869..0000000 --- a/.gitmodules +++ /dev/null @@ -1,30 +0,0 @@ -[submodule "vendor/rails"] - path = vendor/rails - url = git://github.com/rails/rails.git -[submodule "vendor/plugins/haml"] - path = vendor/plugins/haml - url = git://g...
robertbrook/findyourmp
fd82261eb2334efbedb9fb4eb79e998ef4c318f3
new url for cucumber repo
diff --git a/.gitmodules b/.gitmodules index 1b449b7..a9a4869 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,30 +1,30 @@ [submodule "vendor/rails"] path = vendor/rails url = git://github.com/rails/rails.git [submodule "vendor/plugins/haml"] path = vendor/plugins/haml url = git://github.com/nex...
robertbrook/findyourmp
5df78c798641be3a20ea6914100d037a06c7740c
fixing api screen bug caused by "new" html wrapper
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index ee7e336..7924811 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -1,219 +1,220 @@ class ApiController < ApplicationController def index @host = request.host unless request.p...
robertbrook/findyourmp
904dc4789d3da957ad6c2b934943494703265373
gah, missed a bit
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e357008..c47a8c9 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,48 +1,49 @@ # This file is copied to ~/spec when you run 'ruby script/generate rspec' # from the project root directory. ENV["RAILS_ENV"] = "test" require File.expand_path(F...
robertbrook/findyourmp
0925d2c2638864b81040a89e4ffa10e2a0271959
fixing the spec shared_examples loading order bug
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb index d64c2d1..0beff19 100644 --- a/spec/controllers/application_controller_spec.rb +++ b/spec/controllers/application_controller_spec.rb @@ -1,51 +1,22 @@ require File.dirname(__FILE__) + '/../spec_helper' ...
robertbrook/findyourmp
3e57284ea1e102c8934746cf550a28a46e7b7e79
modified search_api feature to reflect changes
diff --git a/features/search_api.feature b/features/search_api.feature index 9589b4a..7e1c569 100644 --- a/features/search_api.feature +++ b/features/search_api.feature @@ -1,89 +1,89 @@ Feature: Search API In order to search using the API as a constituent I want to get data via the search API Scenario: ...
robertbrook/findyourmp
0a5e10ca6dadfae61f9b8427f86450672636f516
fixed bug in JSON output of multiple constituencies and members
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 569d25c..656669c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,161 +1,161 @@ # Filters added to this controller apply to all controllers in the applica...
robertbrook/findyourmp
9e05e8f88485f11fb14a190426c2598904bcb04d
the constituency cache sweeper now clears partial postcode pages
diff --git a/app/sweepers/constituency_sweeper.rb b/app/sweepers/constituency_sweeper.rb index 42cc55c..791b0da 100644 --- a/app/sweepers/constituency_sweeper.rb +++ b/app/sweepers/constituency_sweeper.rb @@ -1,28 +1,34 @@ class ConstituencySweeper < ActionController::Caching::Sweeper observe Constituency def ...
robertbrook/findyourmp
1e135b251e9f6a0a6fb2cbcd9de8cefcf7c76d88
restoring the Website information to the Member info screen
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 6797771..81dc6f3 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,20 +1,25 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
f733324a27b73e465bd6f419f442b30698ed2dd4
bug fix - no longer crashes when passed a blank search term
diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index 9d26bd5..a20e8c2 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -1,107 +1,107 @@ class SearchController < ApplicationController def index params[:search_term] = para...
robertbrook/findyourmp
b586a9ff9fb52487ed1a9e3c6a9a3df78910b0ea
better handling of blank search terms
diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index 9d26bd5..a20e8c2 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -1,107 +1,107 @@ class SearchController < ApplicationController def index params[:search_term] = para...
robertbrook/findyourmp
3f000e6116a91aa3348ab045f1846f1150d53765
bug fix for patch_postcodes task
diff --git a/lib/data_loader.rb b/lib/data_loader.rb index ec5938e..1f0f3fa 100644 --- a/lib/data_loader.rb +++ b/lib/data_loader.rb @@ -1,495 +1,495 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::DataLoader include FindYourMP::Timer DATA_DIR = Fi...
robertbrook/findyourmp
02dc0445e65b7466fe215c28c2147bb92bbd8849
improved handling of new-format codes and blacklists during update; task to deal with changes to ONS codes; fix for "the Aldershot problem"
diff --git a/lib/data_loader.rb b/lib/data_loader.rb index bace783..ec5938e 100644 --- a/lib/data_loader.rb +++ b/lib/data_loader.rb @@ -1,420 +1,495 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::DataLoader include FindYourMP::Timer DATA_DIR = Fi...
robertbrook/findyourmp
343898ee041078ac98918c7dabe7684802e8a42a
early stages of rake tasks to deal with ONS code changes
diff --git a/lib/data_loader.rb b/lib/data_loader.rb index 66716e8..bace783 100644 --- a/lib/data_loader.rb +++ b/lib/data_loader.rb @@ -1,356 +1,420 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::DataLoader include FindYourMP::Timer DATA_DIR = Fi...
robertbrook/findyourmp
55477900f6150ed158161338a31b8d0273b19cc1
more prominent link to member biography pages
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 7903e72..6797771 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,15 +1,20 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
4fd2aab8670ba571a48513194450cd8e4ceccc28
fixed failing features
diff --git a/app/views/layouts/_search_form.haml b/app/views/layouts/_search_form.haml index fc9c04c..6958d89 100644 --- a/app/views/layouts/_search_form.haml +++ b/app/views/layouts/_search_form.haml @@ -1,10 +1,10 @@ -- form_tag(search_url, :method => :get) do +- form_tag(search_url, :method => :get, :class => "searc...
robertbrook/findyourmp
2bfedad9536a3fb6c2e8b489afd557acc78f34ad
removed website link; closes gh-11
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 419abc6..7903e72 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,20 +1,15 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
3d64b4149f0e25efc430da1c3648f3a6f71ffd6c
removed postal address; closes gh-11
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 1a85608..419abc6 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,23 +1,20 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
015664e69527a203f998ac67d699ac2f12096ea5
changed the "show" link to read "View page" in the edit screen; closes gh-8
diff --git a/app/views/constituencies/index.haml b/app/views/constituencies/index.haml index eae6986..1ee3ea4 100644 --- a/app/views/constituencies/index.haml +++ b/app/views/constituencies/index.haml @@ -1,25 +1,25 @@ - @crumbtrail = link_to_admin_home - @title = 'Constituencies' = button_to("Hide all members", :...
robertbrook/findyourmp
da326be02600def1585d239c623587939e733264
blacklist handling postcodes with a space correctly; blacklist add button no longer says "search"
diff --git a/app/controllers/blacklisted_postcodes_controller.rb b/app/controllers/blacklisted_postcodes_controller.rb index bdd60c3..23c4429 100644 --- a/app/controllers/blacklisted_postcodes_controller.rb +++ b/app/controllers/blacklisted_postcodes_controller.rb @@ -1,40 +1,40 @@ class BlacklistedPostcodesController...
robertbrook/findyourmp
f0acf2b2ea550e9c3ba789ba2e5a746030d53f33
restoring the prototype.js file
diff --git a/public/javascripts/prototype.js b/public/javascripts/prototype.js new file mode 100644 index 0000000..dfe8ab4 --- /dev/null +++ b/public/javascripts/prototype.js @@ -0,0 +1,4320 @@ +/* Prototype JavaScript framework, version 1.6.0.3 + * (c) 2005-2008 Sam Stephenson + * + * Prototype is freely distributa...
robertbrook/findyourmp
3a3e16962b6ff620c6dd46eeb8fb43669144a7c4
fixed broken links
diff --git a/app/views/layouts/application.rhtml b/app/views/layouts/application.rhtml index c441437..8ff88db 100644 --- a/app/views/layouts/application.rhtml +++ b/app/views/layouts/application.rhtml @@ -1,248 +1,248 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-s...
robertbrook/findyourmp
f4c43bfb5ea90a195087fa223d7cce5279c1f418
fixed failing features
diff --git a/features/contact_mp.feature b/features/contact_mp.feature deleted file mode 100644 index c4fc4c6..0000000 --- a/features/contact_mp.feature +++ /dev/null @@ -1,79 +0,0 @@ -Feature: Contact MP - In order to contact my MP - as a constituent - want to send message via Web form - - Scenario: Follow the "se...
robertbrook/findyourmp
b2d69fd0fa988dc6152f5d250f32b43b2d6b09d7
restored mapping for constituencies
diff --git a/config/routes.rb b/config/routes.rb index fa0f6d8..d181b7a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,53 +1,55 @@ ActionController::Routing::Routes.draw do |map| + map.resources :constituencies + map.resource :account, :controller => "users" map.resources :users map.resource :u...
robertbrook/findyourmp
9e0f497fd0c1ff6611bf8b83b7e16633489c489b
removed message routes
diff --git a/config/routes.rb b/config/routes.rb index 07a876a..fa0f6d8 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,58 +1,53 @@ ActionController::Routing::Routes.draw do |map| - map.resources :constituencies do |constituency| - constituency.resources :messages, :only => [:new, :create, :index] - ...
robertbrook/findyourmp
19cea3a3eb23d336238953e15057037df127ce40
fixed failing specs
diff --git a/app/models/constituency.rb b/app/models/constituency.rb index 23b37ed..68cd8be 100755 --- a/app/models/constituency.rb +++ b/app/models/constituency.rb @@ -1,213 +1,213 @@ class Constituency < ActiveRecord::Base include ActionController::UrlWriter has_friendly_id :name, :use_slug => true, :strip_d...
robertbrook/findyourmp
337552a1f1e46708c3a72afa1ae1cee3fa9908e5
fixed shared example problem that stopped specs from running
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb index 31728f2..d64c2d1 100644 --- a/spec/controllers/application_controller_spec.rb +++ b/spec/controllers/application_controller_spec.rb @@ -1,51 +1,51 @@ require File.dirname(__FILE__) + '/../spec_helper' ...
robertbrook/findyourmp
34455ccd49d42502891f24070b22c18eaeb5ee35
footer text added
diff --git a/app/views/layouts/_search_hints.haml b/app/views/layouts/_search_hints.haml index 967e172..9bad49a 100644 --- a/app/views/layouts/_search_hints.haml +++ b/app/views/layouts/_search_hints.haml @@ -1 +1,3 @@ -%p.text This service will recognise postcodes and names of MPs or constituencies, or fragments of th...
robertbrook/findyourmp
d80de1b9d8b10b30f3cd6e6eeee560e50e3afdb8
removed telephone and email info/link from html view; changed "Letter" to "Address"
diff --git a/app/views/constituencies/_member.haml b/app/views/constituencies/_member.haml index 57e7cee..1a85608 100644 --- a/app/views/constituencies/_member.haml +++ b/app/views/constituencies/_member.haml @@ -1,37 +1,23 @@ .text - if @constituency.no_sitting_member? %p There is no sitting Member of Parliam...
robertbrook/findyourmp
035f3b8d2c86ac97410d06bd5890d279026cd8a2
fixed bug where constituency containing St was not found by bulk update
diff --git a/app/models/constituency.rb b/app/models/constituency.rb index a2eb45c..23b37ed 100755 --- a/app/models/constituency.rb +++ b/app/models/constituency.rb @@ -1,209 +1,213 @@ class Constituency < ActiveRecord::Base include ActionController::UrlWriter has_friendly_id :name, :use_slug => true, :strip_d...
robertbrook/findyourmp
c7ab59b9bd43c06b4e5bf8643df2550c53a404a8
allow null fields to be read from a tsv
diff --git a/app/models/constituency.rb b/app/models/constituency.rb index b351b54..a2eb45c 100755 --- a/app/models/constituency.rb +++ b/app/models/constituency.rb @@ -1,206 +1,209 @@ class Constituency < ActiveRecord::Base include ActionController::UrlWriter has_friendly_id :name, :use_slug => true, :strip_d...
robertbrook/findyourmp
a740e38b754c4dc16710c91598f00e85ebc8e380
fixing constituency model bug that tried to treat ons_id as a numeric value
diff --git a/app/models/constituency.rb b/app/models/constituency.rb index 8ed63a8..b351b54 100755 --- a/app/models/constituency.rb +++ b/app/models/constituency.rb @@ -1,206 +1,206 @@ class Constituency < ActiveRecord::Base include ActionController::UrlWriter has_friendly_id :name, :use_slug => true, :strip_d...
robertbrook/findyourmp
1770da4f9e0e6b9360195fde99ca8d45a9bfc468
fixing for latest constituency file
diff --git a/lib/boundary_changes.rb b/lib/boundary_changes.rb index e845dcb..a77e35d 100644 --- a/lib/boundary_changes.rb +++ b/lib/boundary_changes.rb @@ -1,56 +1,57 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::BoundaryChanges include FindYourMP:...
robertbrook/findyourmp
f5e5e684e7ce9e3235f57bd6da83482f4411bc14
detangling rake tasks
diff --git a/lib/boundary_changes.rb b/lib/boundary_changes.rb index e845dcb..bc2cf82 100644 --- a/lib/boundary_changes.rb +++ b/lib/boundary_changes.rb @@ -1,56 +1,97 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::BoundaryChanges include FindYourMP:...
robertbrook/findyourmp
09a32c547a96b13f85ab97b672d0ea795c0a5a07
data migration and rake tasks for 2010 constituency data
diff --git a/db/migrate/20100412150417_ons_id_to_string.rb b/db/migrate/20100412150417_ons_id_to_string.rb new file mode 100644 index 0000000..f4e1ec3 --- /dev/null +++ b/db/migrate/20100412150417_ons_id_to_string.rb @@ -0,0 +1,15 @@ +class OnsIdToString < ActiveRecord::Migration + def self.up + change_column :blac...
robertbrook/findyourmp
c353e737e3151de1d0ceccfd9d9aff86b1cd5655
added rake task for producing list of new constituencies from the boundary changes file
diff --git a/lib/boundary_changes.rb b/lib/boundary_changes.rb new file mode 100644 index 0000000..e845dcb --- /dev/null +++ b/lib/boundary_changes.rb @@ -0,0 +1,56 @@ +require File.expand_path(File.dirname(__FILE__) + '/timer') + +module FindYourMP; end +module FindYourMP::BoundaryChanges + + include FindYourMP::Ti...
robertbrook/findyourmp
8618e161f40886996afd084a3b55affd12356e50
diff_data task checks input files exist
diff --git a/lib/data_loader.rb b/lib/data_loader.rb index 309e621..f9bea11 100644 --- a/lib/data_loader.rb +++ b/lib/data_loader.rb @@ -1,348 +1,356 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::DataLoader include FindYourMP::Timer DATA_DIR = Fi...
robertbrook/findyourmp
0957fbd1ca4ee27c279c1e803f47cf39f83e4a38
added Google Analytics code
diff --git a/app/views/layouts/application.rhtml b/app/views/layouts/application.rhtml index a248739..d53f4fc 100644 --- a/app/views/layouts/application.rhtml +++ b/app/views/layouts/application.rhtml @@ -1,236 +1,245 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh...
robertbrook/findyourmp
e00577eb551a895e453acba8c38b28ff64783bfe
attempting to fix Vista/IE display bug that causes the text in the Telephone field to overlap the Letter field on the constituency page
diff --git a/public/stylesheets/fymp.css b/public/stylesheets/fymp.css index bf3f05f..a45a726 100644 --- a/public/stylesheets/fymp.css +++ b/public/stylesheets/fymp.css @@ -1,107 +1,107 @@ #secondary_breadcrumb { float: left; width: 460px; clear: both; font-size: 0.7em; padding-bottom: 10px; border: ...
robertbrook/findyourmp
7e27d732b584a4da23ea5825a10ddbd90c7b72e1
fixed failing features
diff --git a/features/search_api.feature b/features/search_api.feature index 0211e01..9589b4a 100644 --- a/features/search_api.feature +++ b/features/search_api.feature @@ -1,96 +1,89 @@ Feature: Search API In order to search using the API as a constituent I want to get data via the search API Scenario: ...
robertbrook/findyourmp
f0a4633ebed209fe257c1b8183eebdc095427bf3
fixing bug with manual postcode logic
diff --git a/app/models/manual_postcode.rb b/app/models/manual_postcode.rb index aebd4b5..a910978 100644 --- a/app/models/manual_postcode.rb +++ b/app/models/manual_postcode.rb @@ -1,39 +1,40 @@ class ManualPostcode < ActiveRecord::Base validates_uniqueness_of :code validates_presence_of :ons_id belongs_t...
robertbrook/findyourmp
68a897be05a5db2c7d4cdf2afcf2b7cb0033d1a7
(re-)adding Blacklisted and Manual postcode logic to data update tasks
diff --git a/lib/data_loader.rb b/lib/data_loader.rb index 63162f2..309e621 100644 --- a/lib/data_loader.rb +++ b/lib/data_loader.rb @@ -1,344 +1,348 @@ require File.expand_path(File.dirname(__FILE__) + '/timer') module FindYourMP; end module FindYourMP::DataLoader include FindYourMP::Timer DATA_DIR = Fi...
robertbrook/findyourmp
05c2f6c0ff89ff427899963e6eaf995e1cc76f20
removing emergency shutdown view code
diff --git a/app/views/admin/index.haml b/app/views/admin/index.haml index 8eed09a..71d4211 100644 --- a/app/views/admin/index.haml +++ b/app/views/admin/index.haml @@ -1,61 +1,54 @@ - @crumbtrail = 'Admin' - @title = 'Admin' %h3.padded_subheading Messages %p.text = link_to("Messages sent", url_for(:controll...
robertbrook/findyourmp
2973dd4b25da43cf4c3ed76dd77e0004aba77892
when creating postcode diff, move old diff file out the way; added analyze_postcode_update rake and cap task
diff --git a/config/deploy.rb b/config/deploy.rb index f756076..0f6a1ff 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,371 +1,384 @@ load File.expand_path(File.dirname(__FILE__) + '/virtualserver/deploy_secrets.rb') default_run_options[:pty] = true set :repository, "git://github.com/robertbrook/findyo...
robertbrook/findyourmp
3bf80e49d8f1c76ac21f12654ffb14d5c546826b
tidier uri value when host is on port 80
diff --git a/app/models/constituency.rb b/app/models/constituency.rb index 2937166..8ed63a8 100755 --- a/app/models/constituency.rb +++ b/app/models/constituency.rb @@ -1,202 +1,206 @@ class Constituency < ActiveRecord::Base include ActionController::UrlWriter has_friendly_id :name, :use_slug => true, :strip_d...
robertbrook/findyourmp
c32befaf6999d26686cd88df0516971c43a32dc3
fixed bug where non-html and xml views returned the hostname and port values in the uri field
diff --git a/app/controllers/api_controller.rb b/app/controllers/api_controller.rb index f9dc03e..ee7e336 100644 --- a/app/controllers/api_controller.rb +++ b/app/controllers/api_controller.rb @@ -1,214 +1,219 @@ class ApiController < ApplicationController def index @host = request.host unless request.p...
robertbrook/findyourmp
2a7140dc9df0609c7a31c9f15c4e6438fcd9f37e
added manual postcode management function to admin screen
diff --git a/app/controllers/manual_postcodes_controller.rb b/app/controllers/manual_postcodes_controller.rb new file mode 100644 index 0000000..e3f5d6f --- /dev/null +++ b/app/controllers/manual_postcodes_controller.rb @@ -0,0 +1,43 @@ +class ManualPostcodesController < ApplicationController + + before_filter :requ...
robertbrook/findyourmp
3f1ec52b69a751ee5d6daa937a8eb92a5020fc9f
added blacklist management function to admin screen
diff --git a/app/controllers/blacklisted_postcodes_controller.rb b/app/controllers/blacklisted_postcodes_controller.rb new file mode 100644 index 0000000..bdd60c3 --- /dev/null +++ b/app/controllers/blacklisted_postcodes_controller.rb @@ -0,0 +1,40 @@ +class BlacklistedPostcodesController < ApplicationController + + ...
robertbrook/findyourmp
6cb97dfbaba4bd138dccaf6809bbad61e783d285
added remove method to ManualPostcode
diff --git a/app/models/manual_postcode.rb b/app/models/manual_postcode.rb index 055a07f..40ebdf7 100644 --- a/app/models/manual_postcode.rb +++ b/app/models/manual_postcode.rb @@ -1,28 +1,36 @@ class ManualPostcode < ActiveRecord::Base validates_uniqueness_of :code validates_presence_of :ons_id class...
robertbrook/findyourmp
1477c4d035ad1cc367af079760bd96f5253eb819
added restore method to BlacklistedPostcode
diff --git a/app/models/blacklisted_postcode.rb b/app/models/blacklisted_postcode.rb index 54f3e39..4d4abaa 100644 --- a/app/models/blacklisted_postcode.rb +++ b/app/models/blacklisted_postcode.rb @@ -1,4 +1,12 @@ class BlacklistedPostcode < ActiveRecord::Base validates_uniqueness_of :code validates_presence_of ...
robertbrook/findyourmp
81274574ebbed28719c3b19648a75dbd1a0f8b35
moved admin-only mail server status link to the messages section on the Amdin page
diff --git a/app/views/admin/index.haml b/app/views/admin/index.haml index ffb59f9..cf31fd1 100644 --- a/app/views/admin/index.haml +++ b/app/views/admin/index.haml @@ -1,54 +1,53 @@ - @crumbtrail = 'Admin' - @title = 'Admin' %h3.padded_subheading Messages %p.text = link_to("Messages sent", url_for(:controll...
robertbrook/findyourmp
11be2066cc77abaa56f71040af0ddd0692c761fb
added Manual (non-ONS) Postcode functionality
diff --git a/app/models/manual_postcode.rb b/app/models/manual_postcode.rb new file mode 100644 index 0000000..055a07f --- /dev/null +++ b/app/models/manual_postcode.rb @@ -0,0 +1,28 @@ +class ManualPostcode < ActiveRecord::Base + + validates_uniqueness_of :code + validates_presence_of :ons_id + + class << self ...
nlehuen/pytst
fc62cc67dd634759b45ecf4f79fef0ac9c683b4a
MIT License
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..75d312c --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (C) 2004-2012 Nicolas Lehuen <nicolas@lehuen.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documenta...
nlehuen/pytst
e7b42350bc0ae1b74d75ce63f139ba611bc11216
Small change in the algorithm to factor the exit code.
diff --git a/include/tst.h b/include/tst.h index 2b92538..b239b5d 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,552 +1,552 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
f876f38544f3c326f8fd26a7fbf6b1337c4d48ff
Fix a small glitch in the algorithm graph.
diff --git a/scan algorithm.graphml b/scan algorithm.graphml index a03fad3..c37ed3d 100644 --- a/scan algorithm.graphml +++ b/scan algorithm.graphml @@ -1,553 +1,540 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XM...
nlehuen/pytst
7ffe4bcea820124f77a3bb519d2c418ea15bc727
Increased version number to 1.18.
diff --git a/include/tst.h b/include/tst.h index c717785..2b92538 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,534 +1,534 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
931341eb5efbad0f463f2d0dbde2453b7b4fc1a2
No more need for backtracking information, this saves memory.
diff --git a/include/fundamentals.h b/include/fundamentals.h index 4f4bddc..a4f6a8e 100644 --- a/include/fundamentals.h +++ b/include/fundamentals.h @@ -1,139 +1,133 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or #...
nlehuen/pytst
f9d379644e2a96fa1b2f697c533a8dcb6a002525
New, improved scan algorithm. This solves the bug reported by Keith Davidson. It's not optimal yet (see the "TODO : prevent backtrack using tree analysis" comment) but it works correctly which is most important for now.
diff --git a/include/memory_storage.h b/include/memory_storage.h index 7c31723..212833c 100644 --- a/include/memory_storage.h +++ b/include/memory_storage.h @@ -1,166 +1,166 @@ -/* - # $Id$ - # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> - # - # This library is free software; you can redistribute it an...
nlehuen/pytst
b7ab4a4ea15a4673bc2412752212a7c319d8f4ec
Little nudge on the graph of the scan algorithm.
diff --git a/scan algorithm.graphml b/scan algorithm.graphml index 45f3539..6c963cf 100644 --- a/scan algorithm.graphml +++ b/scan algorithm.graphml @@ -1,571 +1,571 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XM...
nlehuen/pytst
8dc3ac2aacd3820f41222e3cd82347259fb7dd56
Added a diagram for the new scan algorithm.
diff --git a/scan algorithm.graphml b/scan algorithm.graphml new file mode 100644 index 0000000..45f3539 --- /dev/null +++ b/scan algorithm.graphml @@ -0,0 +1,571 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSch...
nlehuen/pytst
24cdeb7eea97587b31db1aa894e8a470394b2284
- reactivated scanner - migrated project files to Visual Studio 2008. - changed version number to 1.18RC
diff --git a/include/tst.h b/include/tst.h index 7ec107b..9b0fef3 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,546 +1,546 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
e8e72651cc89ef46824137161530c5db12120c56
Inline PythonReference methods.
diff --git a/python/PythonReference.h b/python/PythonReference.h index 1ff7d37..f1f250f 100644 --- a/python/PythonReference.h +++ b/python/PythonReference.h @@ -1,78 +1,78 @@ -#ifndef __PYTHONREFERENCE_H__ -#define __PYTHONREFERENCE_H__ - -#include "Python.h" - -class PythonException : public std::exception { -public: ...
nlehuen/pytst
6aff3994740d9f52bce5241c1126f4aa1ba917ed
Move & update .gitignore
diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3076e6d..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.pyc -python/dist -python/test/test.tst diff --git a/python/.gitignore b/python/.gitignore new file mode 100644 index 0000000..9184d7e --- /dev/null +++ b/python/.gitignore @@ -0,0 +1,8 ...
nlehuen/pytst
b977066fe25db8a307fbac572c2706eac45378e2
New series of unit tests for a bug reported by Keith Davidson. No fix for it yet.
diff --git a/python/test/test.py b/python/test/test.py index dacbd5e..6c9bdeb 100644 --- a/python/test/test.py +++ b/python/test/test.py @@ -1,731 +1,777 @@ -# -*- coding: iso-8859-1 -*- - -import sys -# sys.path.insert(0,r"D:\projets\tst\python\Debug") - -import unittest -import os -import random -import string -impor...
nlehuen/pytst
f1f99e50aac002d185272a80bd181ef050689fbe
Changed URLs for PyPI
diff --git a/python/setup.py b/python/setup.py index eafc9bd..fa07548 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,49 +1,49 @@ # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the G...
nlehuen/pytst
b18614340cad1de02eef89b3d5e53f9e02e6855b
Upgrade to SWIG version 1.3.39.
diff --git a/python/tst.py b/python/tst.py index 6670819..1394e0a 100644 --- a/python/tst.py +++ b/python/tst.py @@ -1,509 +1,515 @@ # This file was automatically generated by SWIG (http://www.swig.org). -# Version 1.3.38 +# Version 1.3.39 # # Do not make changes to this file unless you know what you are doing--modi...
nlehuen/pytst
cfc9059d408118e20d26869743cc09f97affd30c
Release 1.17
diff --git a/include/tst.h b/include/tst.h index a795499..7ec107b 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,534 +1,534 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
eb62863662789676547e2be0abb91fa2210f5e20
Removed dependencies to the 'tcc' module.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3076e6d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.pyc +python/dist +python/test/test.tst diff --git a/python/test/distance.py b/python/test/distance.py new file mode 100644 index 0000000..6389558 --- /dev/null +++ b/python/test/distance.py...
nlehuen/pytst
3996cafd73fbb4387e89531733511e1ddb2429ab
64-bit fix fromThomas Brox Røst.
diff --git a/include/tst.h b/include/tst.h index 478138a..a795499 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,534 +1,534 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
00b63dc1aa109948fc3274f6607427c06fae7714
This is a test commit to help figure out if I am using git correctly. As it happens, I am actually interested in finding out where this tcc module lives so that I can run the tests.
diff --git a/python/test/test.py b/python/test/test.py index 03d3022..fd6dcc2 100644 --- a/python/test/test.py +++ b/python/test/test.py @@ -1,532 +1,533 @@ # -*- coding: iso-8859-1 -*- import sys # sys.path.insert(0,r"D:\projets\tst\python\Debug") import unittest import os import random import string impor...
nlehuen/pytst
5829a4f19d07b18d74794a5f4963d4848e4d8159
Removed the gymnastic about include copying etc.
diff --git a/python/build-all-versions.bat b/python/build-all-versions.bat index 3be608e..cf0a612 100644 --- a/python/build-all-versions.bat +++ b/python/build-all-versions.bat @@ -1,10 +1,5 @@ -rmdir /s /q build include -mkdir include & xcopy ..\include include -copy ..\include\LICENSE . -swig -O -Iinclude -DSCANNER -...
nlehuen/pytst
48345b62fb1665817302d15f5060472d91dc1f87
Line endings conversion
diff --git a/python/build-python-libs.bat b/python/build-python-libs.bat index ba9abc4..6e335de 100644 --- a/python/build-python-libs.bat +++ b/python/build-python-libs.bat @@ -1,7 +1,7 @@ -rem See http://www.redmountainsw.com/wordpress/archives/building-python-extensions-with-activepython-25-and-visual-studio-2005 -f...
nlehuen/pytst
3f0d5923fe8cfaf4cb895fc9e6ebd4e0926a4afc
Release 1.16
diff --git a/include/tst.h b/include/tst.h index ad8bab2..478138a 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,534 +1,534 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
b80b1543cd4ac6801ce6c5286df3839d053b6825
Fix for bug reported by Keith Davidson
diff --git a/python/pythonTST.h b/python/pythonTST.h index 4f618f8..0f66751 100644 --- a/python/pythonTST.h +++ b/python/pythonTST.h @@ -1,323 +1,332 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under...
nlehuen/pytst
c61db0a85bd5dfce99975ed4b73c645a130dfbf1
Version 1.15.
diff --git a/include/tst.h b/include/tst.h index 3b2b53c..9e819c0 100644 --- a/include/tst.h +++ b/include/tst.h @@ -1,534 +1,534 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GN...
nlehuen/pytst
2308eb44ca83f15b4bebf27a6cd8ced53f64f6dc
Correction from Thomas Brox Rost (thomas@broxrost.com).
diff --git a/python/pythonTST.h b/python/pythonTST.h index 1cbf11d..77bccae 100644 --- a/python/pythonTST.h +++ b/python/pythonTST.h @@ -1,323 +1,323 @@ /* # $Id$ # Copyright (C) 2004-2005 Nicolas Lehuen <nicolas@lehuen.com> # # This library is free software; you can redistribute it and/or # modify it under...
nlehuen/pytst
b092e109d5b2e5a3cade2cb2cbd99cdff84472f3
Modification pour que ça compile sous Python 2.5.
diff --git a/python/build.bat b/python/build.bat index acb8dbb..cca605b 100644 --- a/python/build.bat +++ b/python/build.bat @@ -1,7 +1,7 @@ rmdir /s /q build include mkdir include & xcopy ..\include include copy ..\include\LICENSE . -swig -O -Iinclude -DSCANNER -c++ -python tst.i +rem swig -O -Iinclude -DSCANNER -c...
nlehuen/pytst
1a1493e1269799076d540d29c78395e84a95d656
Mise à jour de textindex suite aux changements d'API de TST (passage à string partout).
diff --git a/com/tstlib/_tstlib.h b/com/tstlib/_tstlib.h index 12498d0..1939828 100644 --- a/com/tstlib/_tstlib.h +++ b/com/tstlib/_tstlib.h @@ -1,519 +1,519 @@ /* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 6.00.0361 */ -/* at Sat Apr 01...
nlehuen/pytst
dc1b3b95361241b6643497d6a5f683cb29dc8224
Version finale de remove()
diff --git a/python/compacttst.py b/python/compacttst.py index 43e9af1..274fcec 100644 --- a/python/compacttst.py +++ b/python/compacttst.py @@ -1,718 +1,769 @@ # -*- coding: iso-8859-1 -*- from array import array import sys # Tant qu'à faire vu qu'ici le nombre de caractères par noeud est complètement # dy...
nlehuen/pytst
88844ad3c27a38862137596951b7705ed29304d1
Mise en place du critère AVL.
diff --git a/python/compacttst.py b/python/compacttst.py index 0e94b97..ea2bb70 100644 --- a/python/compacttst.py +++ b/python/compacttst.py @@ -1,259 +1,407 @@ # -*- coding: iso-8859-1 -*- from array import array import sys # Tant qu'à faire vu qu'ici le nombre de caractères par noeud est complètement # dy...
jumanjiman/policy-based-routing
dd4c4570513b2d31f0acff6a316e94f44b89634f
add scenario to deal with public ip space hijacking
diff --git a/ip-space-hijacking/README.asciidoc b/ip-space-hijacking/README.asciidoc new file mode 100644 index 0000000..7d72b62 --- /dev/null +++ b/ip-space-hijacking/README.asciidoc @@ -0,0 +1,103 @@ +== IP number-space hijacking == + +=== Challenge === + +In this scenario, a network hijacked public IP +space for its...
jumanjiman/policy-based-routing
18f8e06fecc4fe51f9ae00597ef16d25e58eb9ef
disclaimer
diff --git a/README.asciidoc b/README.asciidoc index 8d07749..f7f6291 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -1,169 +1,171 @@ == Policy-Based Routing in Linux == === Goals === These examples use advanced routing techniques to solve real-world routing challenges in Linux. Each scenario is in a se...
jumanjiman/policy-based-routing
d8738526052d37dfb409609f7a2d8671f2fbd841
quick tutorial steps
diff --git a/README.asciidoc b/README.asciidoc index 53a368e..8d07749 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -1,66 +1,169 @@ == Policy-Based Routing in Linux == === Goals === These examples use advanced routing techniques to solve real-world routing challenges in Linux. Each scenario is in a sep...
jumanjiman/policy-based-routing
cdbd0d34085eb2f52fbf8cf69d679d16d7207f4d
tips and references
diff --git a/README.asciidoc b/README.asciidoc index e17f860..53a368e 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -1,9 +1,66 @@ == Policy-Based Routing in Linux == +=== Goals === + These examples use advanced routing techniques to solve real-world routing challenges in Linux. Each scenario is in a separ...
jumanjiman/policy-based-routing
7757b1f96c4567dfb05728da3d7470f74a5861c9
github does not allow includes in asciidoc
diff --git a/ntp-special/README.asciidoc b/ntp-special/README.asciidoc index 1fc2fe5..2112a07 100644 --- a/ntp-special/README.asciidoc +++ b/ntp-special/README.asciidoc @@ -1,32 +1,20 @@ == Special NTP Route == For whatever reason, a host needs a special route to reach its upstream NTP server. Perhaps this confl...
jumanjiman/policy-based-routing
8a2bc6801b8b974a1357711e0acf76f338fad8d9
new scenario
diff --git a/ntp-special/README.asciidoc b/ntp-special/README.asciidoc new file mode 100644 index 0000000..1fc2fe5 --- /dev/null +++ b/ntp-special/README.asciidoc @@ -0,0 +1,32 @@ + +== Special NTP Route == + +For whatever reason, a host needs a special route +to reach its upstream NTP server. Perhaps this conflicts +w...
jumanjiman/policy-based-routing
c03002f2ca3c2af91f6d5ba81a383262558fda7d
changed READMEs to asciidoc format for github viewing
diff --git a/frontend-same-as-backend/README b/frontend-same-as-backend/README deleted file mode 100755 index 1896da5..0000000 --- a/frontend-same-as-backend/README +++ /dev/null @@ -1,29 +0,0 @@ -scenario -Ensure that all traffic coming in on INTERNAL interface -is answered on INTERNAL interface. This is needed for -...
jumanjiman/policy-based-routing
c01b70992d1aba01616272155fb2a2e8a589006b
better ascii art
diff --git a/frontend-same-as-backend/README b/frontend-same-as-backend/README index 20738b3..1896da5 100755 --- a/frontend-same-as-backend/README +++ b/frontend-same-as-backend/README @@ -1,25 +1,29 @@ scenario Ensure that all traffic coming in on INTERNAL interface is answered on INTERNAL interface. This is needed...
jumanjiman/policy-based-routing
6829a422135a7f161521b9c56081cea44ed32a14
initial import
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b72f9be --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*~ +*.swp diff --git a/README.asciidoc b/README.asciidoc new file mode 100644 index 0000000..e17f860 --- /dev/null +++ b/README.asciidoc @@ -0,0 +1,9 @@ +== Policy-Based Routing in Linux == +...
jjpp/plamk
c3189963960995d5f72d665404dc14a9ec8892ec
more weird nuances
diff --git a/Makefile.hfst b/Makefile.hfst index 0e9151d..92f276c 100644 --- a/Makefile.hfst +++ b/Makefile.hfst @@ -1,175 +1,177 @@ XFST=hfst-xfst TWOLC=hfst-twolc ICONV=iconv # testimiseks ESTMORF=wine ~/estmorf/ESTMORF.EXE EKI_DATA=~/eki/data EKI_ANA=wine ~/eki/demo_ana.exe # latin1 to utf-8 TO_UTF8=$(ICO...
jjpp/plamk
3703581a1a89f4f6745e94d3c3787149c3562685
Minor fixes
diff --git a/Makefile.hfst b/Makefile.hfst index 469d2b9..0e9151d 100644 --- a/Makefile.hfst +++ b/Makefile.hfst @@ -1,175 +1,175 @@ XFST=hfst-xfst TWOLC=hfst-twolc ICONV=iconv # testimiseks ESTMORF=wine ~/estmorf/ESTMORF.EXE EKI_DATA=~/eki/data EKI_ANA=wine ~/eki/demo_ana.exe # latin1 to utf-8 TO_UTF8=$(ICO...