This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# my forum software is called kirin | |
# this is an example routes engine file | |
# to see what the routes look like, just run rake routes from your app | |
Rails.application.routes.draw do | |
mount_at = Kirin::Engine.config.mount_at | |
match mount_at => 'kirin/widgets#index' | |
# administrative forum control panel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create permissions to populate the permissions table with. | |
permissions = Forumpermission.create([ | |
{:name => 'view', :description => 'view index', :bitfield => 1}, | |
{:name => 'search', :description => 'search forum', :bitfield => 2}, | |
{:name => 'viewtopics', :description => 'view topics', :bitfield => 4}, | |
{:name => 'createtopics', :description => 'create topics', :bitfield => 8}, | |
{:name => 'edittopic', :description => 'edit own topic', :bitfield => 16}, | |
{:name => 'deletetopic', :description => 'delete own topic', :bitfield => 32}, | |
{:name => 'editothertopics', :description => 'edit other topics', :bitfield => 64}, | |
{:name => 'deleteothertopics', :description => 'delete other topics', :bitfield => 128}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# When requesting mobile you can set the request environment two ways | |
# @request.env['HTTP_ACCEPT'] = "mobile" | |
# OR | |
# @request.accept = "mobile" | |
require 'test_helper' | |
class HomeControllerTest < ActionController::TestCase | |
test "should get mobile index" do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ui-dialog --> | |
<div id="dialog-password-forget-form"> | |
<%= form_tag forgot_password_path, :id => "submit-forgot-password" do %> | |
<fieldset id="user-email"> | |
<p> | |
<label>Email address<span><%= email_field_tag :email, '', :id => "email" %></span></label> | |
</p> | |
</fieldset> | |
<% end %> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yourapp::Application.config.session_store :cookie_store | |
Yourapp::Application.config.session = { | |
:key => '_yourapp_session', # name of cookie that stores the data | |
:domain => nil, # you can share between subdomains here: '.subdomain.com' | |
:expire_after => 1.month, # expire cookie | |
:secure => false, # for https its true | |
:httponly => true, # a measure against XSS attacks, prevent client side scripts from accessing the cookie | |
:secret => 'YOUR SECRET GOES HERE' # RUN RAKE SECRET to generate secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
// You can see the example lookup here: | |
// https://pay01.zong.com/zongpay/lookup.html | |
function getAvailablePricePoints($countries) { | |
//Get Price Look Up table per country in $countries | |
foreach ($countries as $countryCode) { | |
$requestXML = "<?xml version='1.0' encoding='UTF-8'?> | |
<requestMobilePaymentProcessEntrypoints xmlns='http://pay01.zong.com/zongpay' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://pay01.zong.com/zongpay/zongpay.xsd'> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'net/https' | |
require 'uri' | |
class Zong | |
def initialize(customer_key = nil) | |
@xml_data = <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<requestMobilePaymentProcessEntrypoints xmlns="http://pay01.zong.com/zongpay" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pay01.zong.com/zongpay/zongpay.xsd"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load 'deploy' if respond_to?(:namespace) # cap2 differentiator | |
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } | |
load 'config/deploy' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
The following class below works with Ruby v. 1.9.2 and can be used as a libs class with Ruby on Rails 3.x. | |
=end | |
require 'net/https' | |
require 'uri' | |
class Zong |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
-<responseMobilePaymentProcessEntrypoints xmlns="http://pay01.zong.com/zongpay" xsi:schemaLocation="http://pay01.zong.com/zongpay/zongpay.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><countryCode>US</countryCode><localCurrency>USD</localCurrency><exchangeRate>1.0000</exchangeRate>-<providers><provider id="31008" name="Boost"/><provider id="31011" name="Boost Unlimited"/><provider id="310120" name="Sprint"/><provider id="31012001" name="Virgin"/><provider id="310260" name="T-Mobile"/><provider id="310410" name="ATT"/><provider id="310500" name="Alltel"/><provider id="310680" name="Dobson"/><provider id="311280" name="Verizon"/><provider id="311580" name="US Cellular Corp."/><provider id="316010" name="Nextel"/></providers>-<items>-<item zongPlusOnly="false" itemRef="0.5000_USD" requestCurrencyOutpayment="0.2100" outPayment="0.2100" workingPrice="0.5000" exactPrice="0.5000" priceMatched="true"><supportedProviders all="true"/><entrypointUrl>https://pay01.zong |