code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
#include "LoadFrisbeeCommand.h" #include "FeedUntilPressStateCommand.h" LoadFrisbeeCommand::LoadFrisbeeCommand() { AddSequential(new FeedUntilPressStateCommand(false, 1.5)); AddSequential(new FeedUntilPressStateCommand(true, 1.5)); }
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/LoadFrisbeeCommand.cpp
C++
gpl3
247
#include "UnjamLoaderCommand.h" UnjamLoaderCommand::UnjamLoaderCommand() { Requires(loader); SetTimeout(0.6); } // Called just before this Command runs the first time void UnjamLoaderCommand::Initialize() { loader->SetFeederMotor(-1.0); } // Called repeatedly when this Command is scheduled to run v...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/UnjamLoaderCommand.cpp
C++
gpl3
808
#include "FireShotCommand.h" #include "FeedUntilPressStateCommand.h" #include "LoadFrisbeeCommand.h" class FireShotEngageCommand: public CommandBase { private: bool _on; public: FireShotEngageCommand(double timeout, bool on) { this->SetTimeout(timeout); this->_on = on; Requires(loader); } /...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/FireShotCommand.cpp
C++
gpl3
962
#ifndef UNJAMLOADERCOMMAND_H #define UNJAMLOADERCOMMAND_H #include "../../CommandBase.h" /** * * * @author Matthew */ class UnjamLoaderCommand: public CommandBase { public: UnjamLoaderCommand(); virtual void Initialize(); virtual void Execute(); virtual bool IsFinished(); virtual void End();...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/UnjamLoaderCommand.h
C++
gpl3
366
#include "FeedUntilPressStateCommand.h" FeedUntilPressStateCommand::FeedUntilPressStateCommand(bool waitState, double timeout) { this->_waitState = waitState; this->SetTimeout(timeout); Requires(loader); } void FeedUntilPressStateCommand::Initialize() { loader->SetFeederMotor(1.0); } void FeedUn...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/FeedUntilPressStateCommand.cpp
C++
gpl3
678
#ifndef STARTLAUNCHERCOMMAND_H #define STARTLAUNCHERCOMMAND_H #include "../../../CommandBase.h" /** * * * @author Matthew */ class StartLauncherCommand: public CommandBase { public: StartLauncherCommand(); virtual void Initialize(); virtual void Execute(); virtual bool IsFinished(); virtual ...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/LauncherMotors/StartLauncherCommand.h
C++
gpl3
377
#include "StopLauncherCommand.h" StopLauncherCommand::StopLauncherCommand() { Requires(launcher); } // Called just before this Command runs the first time void StopLauncherCommand::Initialize() { launcher->SetLauncherSpeed(0); } // Called repeatedly when this Command is scheduled to run void StopLaun...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/LauncherMotors/StopLauncherCommand.cpp
C++
gpl3
737
#ifndef STOPLAUNCHERCOMMAND_H #define STOPLAUNCHERCOMMAND_H #include "../../../CommandBase.h" /** * * * @author Matthew */ class StopLauncherCommand: public CommandBase { public: StopLauncherCommand(); virtual void Initialize(); virtual void Execute(); virtual bool IsFinished(); virtual void...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/LauncherMotors/StopLauncherCommand.h
C++
gpl3
373
#include "StartLauncherCommand.h" StartLauncherCommand::StartLauncherCommand() { Requires(launcher); } // Called just before this Command runs the first time void StartLauncherCommand::Initialize() { launcher->SetLauncherSpeed(LAUNCHER_SPEED); } // Called repeatedly when this Command is scheduled to r...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/LauncherMotors/StartLauncherCommand.cpp
C++
gpl3
757
#ifndef FIRESHOTCOMMAND_H #define FIRESHOTCOMMAND_H #include "Commands/CommandGroup.h" #include "../../CommandBase.h" /** * * * @author Matthew */ class FireShotCommand: public CommandGroup { public: FireShotCommand(); }; #endif
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Launcher/FireShotCommand.h
C++
gpl3
255
#include "SetCoastBrakeCommand.h" SetCoastBrakeCommand::SetCoastBrakeCommand(CANJaguar::NeutralMode mode) { this->m_mode = mode; isdone = false; } // Called just before this Command runs the first time void SetCoastBrakeCommand::Initialize() { drive->SetCoastBrakeMode(this->m_mode); } void SetCoastB...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/SetCoastBrakeCommand.cpp
C++
gpl3
798
#ifndef TANKDRIVECOMMAND_H #define TANKDRIVECOMMAND_H #include "../../CommandBase.h" /** * * * @author Matthew */ class TankDriveCommand: public CommandBase { public: TankDriveCommand(); virtual void Execute(); virtual void Initialize(); virtual bool IsFinished(); virtual void End(); virtu...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/TankDriveCommand.h
C++
gpl3
358
#include "TankDriveCommand.h" TankDriveCommand::TankDriveCommand() { Requires(drive); } void TankDriveCommand::Initialize() { } // Called repeatedly when this Command is scheduled to run void TankDriveCommand::Execute() { float l = oi->GetStickLeftY(); float r = oi->GetStickRightY(); drive->...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/TankDriveCommand.cpp
C++
gpl3
767
#ifndef SETCOASTBRAKECOMMAND_H #define SETCOASTBRAKECOMMAND_H #include "../../CommandBase.h" /** * * * @author Matthew */ class SetCoastBrakeCommand: public CommandBase { private: CANJaguar::NeutralMode m_mode; bool isdone; public: SetCoastBrakeCommand(CANJaguar::NeutralMode m_mode); virtual ...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/SetCoastBrakeCommand.h
C++
gpl3
461
#include "ShiftHighCommand.h" ShiftHighCommand::ShiftHighCommand() { // Use requires() here to declare subsystem dependencies // eg. requires(chassis); } // Called just before this Command runs the first time void ShiftHighCommand::Initialize() { drive->ShiftHigh(); } bool ShiftHighCommand::IsFinish...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ShiftHighCommand.cpp
C++
gpl3
463
#ifndef SHIFTLOWCOMMAND_H #define SHIFTLOWCOMMAND_H #include "../../CommandBase.h" /** * * * @author Matthew */ class ShiftLowCommand: public CommandBase { public: ShiftLowCommand(); virtual void Initialize(); virtual bool IsFinished(); virtual void Execute(); virtual void End(); virtual...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ShiftLowCommand.h
C++
gpl3
356
#include "ShiftLowCommand.h" ShiftLowCommand::ShiftLowCommand() { // Use requires() here to declare subsystem dependencies // eg. requires(chassis); } void ShiftLowCommand::Initialize() { drive->ShiftLow(); } bool ShiftLowCommand::IsFinished() { return true; } void ShiftLowCommand::Execute() {...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ShiftLowCommand.cpp
C++
gpl3
398
#ifndef SHIFTHIGHCOMMAND_H #define SHIFTHIGHCOMMAND_H #include "../../CommandBase.h" /** * * * @author Matthew */ class ShiftHighCommand: public CommandBase { public: ShiftHighCommand(); virtual void Initialize(); virtual bool IsFinished(); virtual void Execute(); virtual void End(); vi...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ShiftHighCommand.h
C++
gpl3
361
#ifndef GYROROTATECOMMAND_H #define GYROROTATECOMMAND_H #include "../../../CommandBase.h" #include "WPILib.h" /** * * * @author Matthew */ class GyroRotateCommand: public CommandBase, public PIDOutput, public PIDSource { private: PIDController* pid; float headingGoal; public: GyroRotateCommand...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ClosedLoop/GyroRotateCommand.h
C++
gpl3
657
#include "GyroRotateCommand.h" #include "../../../logging.h" GyroRotateCommand::GyroRotateCommand() { //Requires(drive); // We require the drivetrain } void GyroRotateCommand::SetParams(double headingDiff, double timeout) { this->gyro->ResetYaw(); this->SetTimeout(timeout); this->headingGoal = headi...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/Commands/Drive/ClosedLoop/GyroRotateCommand.cpp
C++
gpl3
1,661
#include "CommandBase.h" CommandBase::CommandBase(const char *name) : Command(name) { } CommandBase::CommandBase() : Command() { } // Initialize a single static instance of all of your subsystems to NULL FrisbeeLauncher* CommandBase::launcher = NULL; FrisbeeLoader* CommandBase::loader = NULL; DriveS...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/CommandBase.cpp
C++
gpl3
840
#include "OI.h" #include "Commands/Climber/ClimbCommand.h" #include "Commands/Drive/SetCoastBrakeCommand.h" #include "Commands/Drive/ShiftHighCommand.h" #include "Commands/Drive/ShiftLowCommand.h" #include "Commands/Drive/TankDriveCommand.h" #include "Commands/Launcher/LauncherMotors/StartLauncherCommand.h" #i...
1294-top-gun-frc-2013
trunk/workspace/FRC2013CommandBased/OI.cpp
C++
gpl3
3,236
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.utils; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.logging.Level; import java.util.logging.Logge...
05l-mysweethome
trunk/MySweetHomes/src/java/app/utils/HashMD5.java
Java
gpl3
1,182
package app.controller; import app.entity.Property; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.PropertyFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.bean.Sessi...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/PropertyController.java
Java
gpl3
7,078
package app.controller; import app.entity.Function; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.FunctionFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.bean.Sessi...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/FunctionController.java
Java
gpl3
7,078
package app.controller; import app.entity.Functionrole; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.FunctionroleFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.be...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/FunctionroleController.java
Java
gpl3
7,186
package app.controller; import app.entity.UserInformation; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.UserInformationFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.fa...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/UserInformationController.java
Java
gpl3
7,238
package app.controller; import app.entity.Faq; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.FaqFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/FaqController.java
Java
gpl3
6,943
package app.controller; import app.entity.Role; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.RoleFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/RoleController.java
Java
gpl3
6,970
package app.controller; import app.entity.PropertyType; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.PropertyTypeFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.be...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/PropertyTypeController.java
Java
gpl3
7,178
package app.controller; import app.entity.Feedback; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.session.FeedbackFacade; import java.io.Serializable; import java.util.ResourceBundle; import javax.ejb.EJB; import javax.faces.bean.ManagedBean; import javax.faces.bean.Sessi...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/FeedbackController.java
Java
gpl3
7,078
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.controller.util; import app.entity.Mail; import javax.mail.*; import javax.mail.internet.*; import java.util.*; /** * * @author Song Lam */ public class SendMail { public in...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/util/SendMail.java
Java
gpl3
2,464
package app.controller.util; import app.entity.Role; import java.util.List; import javax.faces.application.FacesMessage; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import javax.faces.convert.Converter; import javax.faces.model.SelectItem; public class JsfUtil { public stat...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/util/JsfUtil.java
Java
gpl3
2,318
package app.controller.util; import javax.faces.model.DataModel; public abstract class PaginationHelper { private int pageSize; private int page; public PaginationHelper(int pageSize) { this.pageSize = pageSize; } public abstract int getItemsCount(); public abstract DataModel creat...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/util/PaginationHelper.java
Java
gpl3
1,118
package app.controller; import app.entity.Account; import app.controller.util.JsfUtil; import app.controller.util.PaginationHelper; import app.entity.Role; import app.entity.UserInformation; import app.session.AccountFacade; import app.session.UserInformationFacade; import com.sun.xml.ws.security.trust.elements.Encryp...
05l-mysweethome
trunk/MySweetHomes/src/java/app/controller/AccountController.java
Java
gpl3
11,275
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinCol...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Functionrole.java
Java
gpl3
3,488
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Lob; i...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Faq.java
Java
gpl3
3,432
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; /** * * @author Jerry */ public class Mail { String to; String from; String message; String subject; String smtpServ; public Mail(){ } ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Mail.java
Java
gpl3
1,154
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Lob; i...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Sysdiagrams.java
Java
gpl3
4,022
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Collection; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.En...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Account.java
Java
gpl3
4,534
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Date; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import j...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/UserInformation.java
Java
gpl3
6,584
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Collection; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.En...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Function.java
Java
gpl3
3,549
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Date; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import j...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Property.java
Java
gpl3
10,425
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinCol...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Feedback.java
Java
gpl3
3,846
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Collection; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.En...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/Role.java
Java
gpl3
4,008
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.entity; import java.io.Serializable; import java.util.Collection; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.En...
05l-mysweethome
trunk/MySweetHomes/src/java/app/entity/PropertyType.java
Java
gpl3
3,672
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Property; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Stateless ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/PropertyFacade.java
Java
gpl3
645
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Functionrole; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Statel...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/FunctionroleFacade.java
Java
gpl3
665
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Role; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Stateless pub...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/RoleFacade.java
Java
gpl3
625
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import java.util.List; import javax.persistence.EntityManager; /** * * @author RubiLam */ public abstract class AbstractFacade<T> { private Class<T> entityClass; public ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/AbstractFacade.java
Java
gpl3
1,943
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Feedback; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Stateless ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/FeedbackFacade.java
Java
gpl3
645
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Faq; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Stateless publ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/FaqFacade.java
Java
gpl3
620
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Account; import app.entity.UserInformation; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/UserInformationFacade.java
Java
gpl3
752
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.PropertyType; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Statel...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/PropertyTypeFacade.java
Java
gpl3
665
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Account; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; /** * * @...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/AccountFacade.java
Java
gpl3
2,822
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package app.session; import app.entity.Function; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; /** * * @author RubiLam */ @Stateless ...
05l-mysweethome
trunk/MySweetHomes/src/java/app/session/FunctionFacade.java
Java
gpl3
645
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package controller.util; /** * * @author Jerry */ import java.io.*; import javax.faces.application.FacesMessage; import javax.faces.context.ExternalContext; import javax.faces.context.FacesContext; im...
05l-mysweethome
trunk/MySweetHomes/src/java/controller/util/FileUpload.java
Java
gpl3
2,188
<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http...
05l-mysweethome
trunk/MySweetHomes/web/login.xhtml
HTML
gpl3
2,460
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ function test(){ alert("hello"); }
05l-mysweethome
trunk/MySweetHomes/web/resources/javascript/newjavascript.js
JavaScript
gpl3
141
/********************************************************************************** Project Name: SimpleAdmin CMS Theme Project Description: A clean admin theme File Name: script.js Author: Adi Purdila Author URI: http://www.adipurdila.com Version: 1.0.0 ********************************************************...
05l-mysweethome
trunk/MySweetHomes/web/resources/javascript/script.js
JavaScript
gpl3
619
// 1 - START DROPDOWN SLIDER SCRIPTS ------------------------------------------------------------------------ $(document).ready(function () { $(".showhide-account").click(function () { $(".account-content").slideToggle("fast"); $(this).toggleClass("active"); return false; }); })...
05l-mysweethome
trunk/MySweetHomes/web/resources/javascript/custom_jquery.js
JavaScript
gpl3
2,661
jQuery(document).ready(function(){ //global vars var enquiryfrm = jQuery("#agt_mail_agent"); var yourname = jQuery("#agt_mail_name"); var yournameInfo = jQuery("#span_agt_mail_name"); var youremail = jQuery("#agt_mail_email"); var youremailInfo = jQuery("#span_agt_mail_email"); var frnd_comme...
05l-mysweethome
trunk/MySweetHomes/web/resources/javascript/inquiry_validation.js
JavaScript
gpl3
3,134
/* -- Table Styles ------------------------------- */ td { font: 10pt Helvetica, Arial, sans-serif; vertical-align: top; } .progressWrapper { width: 357px; overflow: hidden; } .progressContainer { margin: 5px; padding: 4px; border: solid 1px #E8E8E8; background-color: #F7F7F7; overflow: hidde...
05l-mysweethome
trunk/MySweetHomes/web/resources/css/default.css
CSS
gpl3
1,750
/********************************************************************************** Project Name: SimpleAdmin CMS Theme Project Description: A clean admin theme File Name: style.css Author: Adi Purdila Author URI: http://www.adipurdila.com Version: 1.0.0 ********************************************************...
05l-mysweethome
trunk/MySweetHomes/web/resources/css/style1.css
CSS
gpl3
15,090
/* Import RESET styling for grid framework*/ @import url('library/css/reset.css'); /* Import GRID styling for grid framework*/ @import url('skins/1-default.css'); /* -------------------------------------------------- Global Reset - Resets all browser defaults to 0 -------------------------------------...
05l-mysweethome
trunk/MySweetHomes/web/resources/css/style.css
CSS
gpl3
78,049
/* -------------------------------------------------- Global Reset - Resets all browser defaults to 0 -------------------------------------------------- */ body { color:#333; background:#f0ebd9 top repeat-x; } a { color:#850e11; } a:hover { color:#333; } hr { color:#fffdea; border:none; border-top:1px dotted ...
05l-mysweethome
trunk/MySweetHomes/web/resources/css/1-default.css
CSS
gpl3
32,190
.menu ul, .menu ul li, .menu ul ul { list-style: none; margin: 0; padding: 0; } .menu ul { position: relative; z-index: 597; float: left; } .menu ul li { float: left; line-height: 1.8em; vertical-align: middle; zoom: 1; } .menu ul li.hover, .menu ul li:hover { position: relative; z-index: 599; cursor: default; } .menu ...
05l-mysweethome
trunk/MySweetHomes/web/resources/css/dropdownmenu.css
CSS
gpl3
987
#test{ background-image: url("#{resource[Images:'i-mainbg.jpg']}"); width:500px ; height:500px; color:#333; background-color: #333; }
05l-mysweethome
trunk/MySweetHomes/web/resources/css/d85fa1.css
CSS
gpl3
161
<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets"> <h:head> ...
05l-mysweethome
trunk/MySweetHomes/web/contact.xhtml
HTML
gpl3
585
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/feedback/View.xhtml
HTML
gpl3
3,414
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/feedback/List.xhtml
HTML
gpl3
4,358
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/feedback/Edit.xhtml
HTML
gpl3
7,215
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/feedback/Create.xhtml
HTML
gpl3
7,125
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/role/View.xhtml
HTML
gpl3
3,203
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/role/List.xhtml
HTML
gpl3
3,952
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/role/Edit.xhtml
HTML
gpl3
3,956
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/role/Create.xhtml
HTML
gpl3
4,019
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/propertyType/View.xhtml
HTML
gpl3
3,047
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/propertyType/List.xhtml
HTML
gpl3
4,329
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/propertyType/Edit.xhtml
HTML
gpl3
4,980
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/propertyType/Create.xhtml
HTML
gpl3
4,867
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/account/View.xhtml
HTML
gpl3
4,081
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/account/List.xhtml
HTML
gpl3
5,904
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/account/Edit.xhtml
HTML
gpl3
11,410
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/account/Create.xhtml
HTML
gpl3
11,436
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/userInformation/View.xhtml
HTML
gpl3
4,553
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/userInformation/List.xhtml
HTML
gpl3
4,557
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/userInformation/Edit.xhtml
HTML
gpl3
11,677
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/userInformation/Create.xhtml
HTML
gpl3
11,616
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/faq/View.xhtml
HTML
gpl3
3,117
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/faq/List.xhtml
HTML
gpl3
4,174
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/faq/Edit.xhtml
HTML
gpl3
6,133
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/faq/Create.xhtml
HTML
gpl3
6,071
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/post/View.xhtml
HTML
gpl3
3,854
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/post/List.xhtml
HTML
gpl3
3,958
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/post/Edit.xhtml
HTML
gpl3
9,452
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/post/Create.xhtml
HTML
gpl3
9,348
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/functionrole/View.xhtml
HTML
gpl3
2,544
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/functionrole/List.xhtml
HTML
gpl3
4,399
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http:...
05l-mysweethome
trunk/MySweetHomes/web/admin/functionrole/Edit.xhtml
HTML
gpl3
3,059