mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
Merge branch 'story/121580929-empty-nokogiri' into staging
# Conflicts: # lib/epp_constraint.rb
This commit is contained in:
commit
3c71c0a06d
2 changed files with 21 additions and 3 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,5 +1,23 @@
|
|||
20.05.2016
|
||||
15.06.2016
|
||||
* Portal for registrants
|
||||
* Notice on login screen on limited access to Estonian electronic IDs (#120182999)
|
||||
* Admin interface:
|
||||
* epp log view has now reference to the object name for better usability (#118912395)
|
||||
* BUG: dnssec data missing from domain history view (#115762063)
|
||||
* BUG: internal error in doamin history view in case some contact has been deleted (#118300251)
|
||||
* Registry:
|
||||
* all values sent over epp are now trimmed of beginning and trailing spaces (#117690107)
|
||||
* typo and form fixes for automated e-mail messages sent to domain contacts
|
||||
* EPP:
|
||||
* BUG: error 2005 on adding IDN nameservers (#114677695)
|
||||
* BUG: nameserver lable maximum 63 char length validation handled inproperly (#114677695) - support currently limited to Estonian IDN characters.
|
||||
* BUG: validation passes out of range ident_type values - now limited to org, priv and birthday (#111601356)
|
||||
* BUG: internal error on hello (#120828283)
|
||||
* BUG: internal error broken incoming frame (#121580929)
|
||||
* Deploy:
|
||||
* BUG: incorrect version in commit message on deploy - config/deploy-example.rb (#120259603)
|
||||
|
||||
20.05.2016
|
||||
* Portal for registrars
|
||||
* domain details view new displays contact name in addition to ID (#117226457)
|
||||
* added an option to set veryfied = "yes" parameter to GUI for registrant change and domain delete opertions (#116209751)
|
||||
|
|
|
@ -12,7 +12,7 @@ class EppConstraint
|
|||
def matches?(request)
|
||||
# TODO: Maybe move this to controller to keep params clean
|
||||
request.params[:raw_frame] = request.params[:raw_frame].gsub!(/(?<=>)(.*?)(?=<)/) { |s| s.strip} if request.params[:raw_frame]
|
||||
request.params[:nokogiri_frame] ||= Nokogiri::XML(request.params[:raw_frame])
|
||||
request.params[:nokogiri_frame] ||= Nokogiri::XML(request.params[:raw_frame] || request.params[:frame])
|
||||
request.params[:parsed_frame] ||= request.params[:nokogiri_frame].dup.remove_namespaces!
|
||||
|
||||
unless [:keyrelay, :poll, :session, :not_found].include?(@type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue